Upgrade packages
This commit is contained in:
parent
f86fdfd5b3
commit
470909a735
396 changed files with 232 additions and 191 deletions
|
@ -677,13 +677,13 @@
|
|||
("William Xu" . "william.xwl@gmail.com"))
|
||||
(:maintainer "William Xu" . "william.xwl@gmail.com"))])
|
||||
(elisp-benchmarks .
|
||||
[(1 0)
|
||||
nil "elisp benchamrks collection" single
|
||||
((:url . "http://elpa.gnu.org/packages/elisp-benchmarks.html")
|
||||
(:keywords "languages" "lisp")
|
||||
[(1 1)
|
||||
nil "elisp benchamrks collection" tar
|
||||
((:maintainer "Andrea Corallo" . "akrl@sdf.org")
|
||||
(:authors
|
||||
(nil . "akrl@sdf.org"))
|
||||
(:maintainer nil . "akrl@sdf.org"))])
|
||||
("Andrea Corallo" . "akrl@sdf.org"))
|
||||
(:keywords "languages" "lisp")
|
||||
(:url . "http://elpa.gnu.org/packages/elisp-benchmarks.html"))])
|
||||
(enwc .
|
||||
[(2 0)
|
||||
((emacs
|
||||
|
@ -1517,7 +1517,7 @@
|
|||
("Phillip Lord" . "phillip.lord@russet.org.uk"))
|
||||
(:url . "http://elpa.gnu.org/packages/persist.html"))])
|
||||
(phps-mode .
|
||||
[(0 3 26)
|
||||
[(0 3 27)
|
||||
((emacs
|
||||
(26)))
|
||||
"Major mode for PHP with Semantic integration" tar
|
||||
|
@ -1591,7 +1591,7 @@
|
|||
(:maintainer "Toby Cubitt" . "toby-predictive@dr-qubit.org")
|
||||
(:url . "http://www.dr-qubit.org/emacs.php"))])
|
||||
(rainbow-mode .
|
||||
[(1 0 2)
|
||||
[(1 0 3)
|
||||
nil "Colorize color names in buffers" single
|
||||
((:url . "http://elpa.gnu.org/packages/rainbow-mode.html")
|
||||
(:keywords "faces")
|
||||
|
@ -2313,7 +2313,7 @@
|
|||
("Mattias Engdegård" . "mattiase@acm.org"))
|
||||
(:keywords "lisp" "maint" "regexps"))])
|
||||
(yasnippet .
|
||||
[(0 13 0)
|
||||
[(0 14 0)
|
||||
((cl-lib
|
||||
(0 5)))
|
||||
"Yet another snippet extension for Emacs" tar
|
||||
|
|
|
@ -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"))
|
||||
:keywords
|
||||
'("abbrev" "convenience" "matching")
|
|
@ -27,7 +27,7 @@
|
|||
'((((background dark)) (:background "yellow" :foreground "black"))
|
||||
(((background light)) (:background "orange" :foreground "black")))
|
||||
"Face used for editable text in template fields."
|
||||
:group 'company)
|
||||
:group 'company-faces)
|
||||
|
||||
(defvar company-template-forward-field-item
|
||||
'(menu-item "" company-template-forward-field
|
Binary file not shown.
|
@ -79,11 +79,16 @@ attention to case differences."
|
|||
string start-pos nil ignore-case)))))))
|
||||
|
||||
(defgroup company nil
|
||||
"Extensible inline text completion mechanism"
|
||||
"Extensible inline text completion mechanism."
|
||||
:group 'abbrev
|
||||
:group 'convenience
|
||||
:group 'matching)
|
||||
|
||||
(defgroup company-faces nil
|
||||
"Faces used by Company."
|
||||
:group 'company
|
||||
:group 'faces)
|
||||
|
||||
(defface company-tooltip
|
||||
'((default :foreground "black")
|
||||
(((class color) (min-colors 88) (background light))
|
||||
|
@ -180,6 +185,10 @@ attention to case differences."
|
|||
(((background light)) (:background "firebrick4")))
|
||||
"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)
|
||||
;; Uniquify.
|
||||
(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)))
|
||||
(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
|
||||
'company-tooltip-mouse
|
||||
line)
|
||||
|
@ -2727,8 +2737,6 @@ If SHOW-VERSION is non-nil, show the version in the echo area."
|
|||
(let ((str (concat (when nl " \n")
|
||||
(mapconcat 'identity (nreverse new) "\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))
|
||||
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 'after-string disp)
|
||||
(overlay-put ov 'invisible t))
|
||||
(overlay-put ov 'face 'default)
|
||||
(overlay-put ov 'window (selected-window)))))
|
||||
|
||||
(defun company-pseudo-tooltip-guard ()
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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")
|
||||
(emacs "24.4")
|
||||
(highlight-indentation "0.5.0")
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -157,7 +157,7 @@ class JediBackend(object):
|
|||
call = None
|
||||
if not call:
|
||||
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
|
||||
params = [re.sub("^param ", '', param.description)
|
||||
for param in call.params]
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue