From: João Távora Date: Wed, 2 May 2018 11:05:47 +0000 (+0100) Subject: Start experimenting with python X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~683 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7d6547dfa4c2a66597c0ac2950c4f93875bec884;p=emacs.git Start experimenting with python * eglot.el (eglot-executables): Add pyls. --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 22ff0318ca6..ff71a2f782f 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -37,7 +37,8 @@ :prefix "eglot-" :group 'applications) -(defvar eglot-executables '((rust-mode . ("rls"))) +(defvar eglot-executables '((rust-mode . ("rls")) + (python-mode . ("pyls"))) "Alist mapping major modes to server executables.") (defvar eglot--processes-by-project (make-hash-table :test #'equal))