Upgrade packages

This commit is contained in:
Marcus Kammer 2019-12-24 11:03:38 +01:00
parent f86fdfd5b3
commit 470909a735
396 changed files with 232 additions and 191 deletions

View file

@ -677,13 +677,13 @@
("William Xu" . "william.xwl@gmail.com")) ("William Xu" . "william.xwl@gmail.com"))
(:maintainer "William Xu" . "william.xwl@gmail.com"))]) (:maintainer "William Xu" . "william.xwl@gmail.com"))])
(elisp-benchmarks . (elisp-benchmarks .
[(1 0) [(1 1)
nil "elisp benchamrks collection" single nil "elisp benchamrks collection" tar
((:url . "http://elpa.gnu.org/packages/elisp-benchmarks.html") ((:maintainer "Andrea Corallo" . "akrl@sdf.org")
(:keywords "languages" "lisp")
(:authors (:authors
(nil . "akrl@sdf.org")) ("Andrea Corallo" . "akrl@sdf.org"))
(:maintainer nil . "akrl@sdf.org"))]) (:keywords "languages" "lisp")
(:url . "http://elpa.gnu.org/packages/elisp-benchmarks.html"))])
(enwc . (enwc .
[(2 0) [(2 0)
((emacs ((emacs
@ -1517,7 +1517,7 @@
("Phillip Lord" . "phillip.lord@russet.org.uk")) ("Phillip Lord" . "phillip.lord@russet.org.uk"))
(:url . "http://elpa.gnu.org/packages/persist.html"))]) (:url . "http://elpa.gnu.org/packages/persist.html"))])
(phps-mode . (phps-mode .
[(0 3 26) [(0 3 27)
((emacs ((emacs
(26))) (26)))
"Major mode for PHP with Semantic integration" tar "Major mode for PHP with Semantic integration" tar
@ -1591,7 +1591,7 @@
(:maintainer "Toby Cubitt" . "toby-predictive@dr-qubit.org") (:maintainer "Toby Cubitt" . "toby-predictive@dr-qubit.org")
(:url . "http://www.dr-qubit.org/emacs.php"))]) (:url . "http://www.dr-qubit.org/emacs.php"))])
(rainbow-mode . (rainbow-mode .
[(1 0 2) [(1 0 3)
nil "Colorize color names in buffers" single nil "Colorize color names in buffers" single
((:url . "http://elpa.gnu.org/packages/rainbow-mode.html") ((:url . "http://elpa.gnu.org/packages/rainbow-mode.html")
(:keywords "faces") (:keywords "faces")
@ -2313,7 +2313,7 @@
("Mattias Engdegård" . "mattiase@acm.org")) ("Mattias Engdegård" . "mattiase@acm.org"))
(:keywords "lisp" "maint" "regexps"))]) (:keywords "lisp" "maint" "regexps"))])
(yasnippet . (yasnippet .
[(0 13 0) [(0 14 0)
((cl-lib ((cl-lib
(0 5))) (0 5)))
"Yet another snippet extension for Emacs" tar "Yet another snippet extension for Emacs" tar

View file

@ -1,4 +1,4 @@
(define-package "company" "20191219.2036" "Modular text completion framework" (define-package "company" "20191223.11" "Modular text completion framework"
'((emacs "24.3")) '((emacs "24.3"))
:keywords :keywords
'("abbrev" "convenience" "matching") '("abbrev" "convenience" "matching")

View file

@ -27,7 +27,7 @@
'((((background dark)) (:background "yellow" :foreground "black")) '((((background dark)) (:background "yellow" :foreground "black"))
(((background light)) (:background "orange" :foreground "black"))) (((background light)) (:background "orange" :foreground "black")))
"Face used for editable text in template fields." "Face used for editable text in template fields."
:group 'company) :group 'company-faces)
(defvar company-template-forward-field-item (defvar company-template-forward-field-item
'(menu-item "" company-template-forward-field '(menu-item "" company-template-forward-field

View file

@ -79,11 +79,16 @@ attention to case differences."
string start-pos nil ignore-case))))))) string start-pos nil ignore-case)))))))
(defgroup company nil (defgroup company nil
"Extensible inline text completion mechanism" "Extensible inline text completion mechanism."
:group 'abbrev :group 'abbrev
:group 'convenience :group 'convenience
:group 'matching) :group 'matching)
(defgroup company-faces nil
"Faces used by Company."
:group 'company
:group 'faces)
(defface company-tooltip (defface company-tooltip
'((default :foreground "black") '((default :foreground "black")
(((class color) (min-colors 88) (background light)) (((class color) (min-colors 88) (background light))
@ -180,6 +185,10 @@ attention to case differences."
(((background light)) (:background "firebrick4"))) (((background light)) (:background "firebrick4")))
"Face used for the common part of completions in the echo area.") "Face used for the common part of completions in the echo area.")
;; Too lazy to re-add :group to all defcustoms down below.
(setcdr (assoc load-file-name custom-current-group-alist)
'company)
(defun company-frontends-set (variable value) (defun company-frontends-set (variable value)
;; Uniquify. ;; Uniquify.
(let ((value (delete-dups (copy-sequence value)))) (let ((value (delete-dups (copy-sequence value))))
@ -2545,6 +2554,7 @@ If SHOW-VERSION is non-nil, show the version in the echo area."
right))) right)))
(setq width (+ width margin (length right))) (setq width (+ width margin (length right)))
;; TODO: Use add-face-text-property in Emacs 24.4
(font-lock-append-text-property 0 width 'mouse-face (font-lock-append-text-property 0 width 'mouse-face
'company-tooltip-mouse 'company-tooltip-mouse
line) line)
@ -2727,8 +2737,6 @@ If SHOW-VERSION is non-nil, show the version in the echo area."
(let ((str (concat (when nl " \n") (let ((str (concat (when nl " \n")
(mapconcat 'identity (nreverse new) "\n") (mapconcat 'identity (nreverse new) "\n")
"\n"))) "\n")))
;; Use add-face-text-property in Emacs 24.4
(font-lock-append-text-property 0 (length str) 'face 'default str)
(when nl (put-text-property 0 1 'cursor t str)) (when nl (put-text-property 0 1 'cursor t str))
str))) str)))
@ -2939,6 +2947,7 @@ Returns a negative number if the tooltip should be displayed above point."
(overlay-put ov 'display disp) (overlay-put ov 'display disp)
(overlay-put ov 'after-string disp) (overlay-put ov 'after-string disp)
(overlay-put ov 'invisible t)) (overlay-put ov 'invisible t))
(overlay-put ov 'face 'default)
(overlay-put ov 'window (selected-window))))) (overlay-put ov 'window (selected-window)))))
(defun company-pseudo-tooltip-guard () (defun company-pseudo-tooltip-guard ()

Binary file not shown.

View file

@ -1,4 +1,4 @@
(define-package "elpy" "20191127.2230" "Emacs Python Development Environment" (define-package "elpy" "20191222.2227" "Emacs Python Development Environment"
'((company "0.9.2") '((company "0.9.2")
(emacs "24.4") (emacs "24.4")
(highlight-indentation "0.5.0") (highlight-indentation "0.5.0")

View file

@ -157,7 +157,7 @@ class JediBackend(object):
call = None call = None
if not call: if not call:
return None return None
# Strip 'param' added by jedi at the beggining of # Strip 'param' added by jedi at the beginning of
# parameter names. Should be unecessary for jedi > 0.13.0 # parameter names. Should be unecessary for jedi > 0.13.0
params = [re.sub("^param ", '', param.description) params = [re.sub("^param ", '', param.description)
for param in call.params] for param in call.params]

Some files were not shown because too many files have changed in this diff Show more