Update Emacs packages
This is a massive diff that I had to do in a hurry - when leaving Urbint. I'm pretty sure that most of these are updating Emacs packages, but I'm not positive.
This commit is contained in:
parent
de97c7bcd0
commit
9da3ffee41
1361 changed files with 16539 additions and 16483 deletions
|
|
@ -0,0 +1,15 @@
|
|||
;;; lsp-python-autoloads.el --- automatically extracted autoloads
|
||||
;;
|
||||
;;; Code:
|
||||
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
|
||||
|
||||
;;;### (autoloads nil nil ("lsp-python.el") (23456 8298 738381 981000))
|
||||
|
||||
;;;***
|
||||
|
||||
;; Local Variables:
|
||||
;; version-control: never
|
||||
;; no-byte-compile: t
|
||||
;; no-update-autoloads: t
|
||||
;; End:
|
||||
;;; lsp-python-autoloads.el ends here
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
;;; -*- no-byte-compile: t -*-
|
||||
(define-package "lsp-python" "20180816.1314" "Python support for lsp-mode" '((lsp-mode "3.0")) :commit "b97688aa82b41828d3ffb5345c809d1fee88839d" :keywords '("python") :authors '(("Vibhav Pant" . "vibhavp@gmail.com")) :maintainer '("Vibhav Pant" . "vibhavp@gmail.com") :url "https://github.com/emacs-lsp/lsp-python")
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
;;; lsp-python.el --- Python support for lsp-mode -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2017 Vibhav Pant <vibhavp@gmail.com>
|
||||
|
||||
;; Author: Vibhav Pant <vibhavp@gmail.com>
|
||||
;; Version: 1.0
|
||||
;; Package-Version: 20180816.1314
|
||||
;; Package-Requires: ((lsp-mode "3.0"))
|
||||
;; Keywords: python
|
||||
;; URL: https://github.com/emacs-lsp/lsp-python
|
||||
|
||||
;;; Code:
|
||||
(require 'lsp-mode)
|
||||
(require 'lsp-common)
|
||||
|
||||
(defcustom lsp-python-server-args
|
||||
'()
|
||||
"Extra arguments for the python-stdio language server"
|
||||
:group 'lsp-python
|
||||
:risky t
|
||||
:type '(repeat string))
|
||||
|
||||
(defun lsp-python--ls-command ()
|
||||
"Generate the language server startup command."
|
||||
`("pyls" ,@lsp-python-server-args))
|
||||
|
||||
(lsp-define-stdio-client lsp-python "python"
|
||||
(lsp-make-traverser #'(lambda (dir)
|
||||
(directory-files
|
||||
dir
|
||||
nil
|
||||
"setup.py\\|Pipfile\\|setup.cfg\\|tox.ini")))
|
||||
nil
|
||||
:command-fn 'lsp-python--ls-command)
|
||||
|
||||
(provide 'lsp-python)
|
||||
;;; lsp-python.el ends here
|
||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue