update packages and add valign
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
;;; company-dabbrev-code.el --- dabbrev-like company-mode backend for code -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009-2011, 2013-2016, 2021-2024 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2016, 2021-2025 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -153,8 +153,8 @@ comments or strings."
|
||||
(pcase company-dabbrev-code-other-buffers
|
||||
(`t (list major-mode))
|
||||
(`code company-dabbrev-code-modes)
|
||||
((pred functionp) (funcall company-dabbrev-code-other-buffers (current-buffer)))
|
||||
(`all `all))
|
||||
(`all `all)
|
||||
((pred functionp) (funcall company-dabbrev-code-other-buffers (current-buffer))))
|
||||
(not company-dabbrev-code-everywhere)))
|
||||
:expire t
|
||||
:check-tag
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "company" "20251021.2211"
|
||||
(define-package "company" "20260331.245"
|
||||
"Modular text completion framework."
|
||||
'((emacs "26.1"))
|
||||
:url "http://company-mode.github.io/"
|
||||
:commit "4ff89f7369227fbb89fe721d1db707f1af74cd0f"
|
||||
:revdesc "4ff89f736922"
|
||||
:commit "59626254bbac187fc2b8d7a189aca90976ab36a8"
|
||||
:revdesc "59626254bbac"
|
||||
:keywords '("abbrev" "convenience" "matching")
|
||||
:maintainers '(("Dmitry Gutov" . "dmitry@gutov.dev")))
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
;; Author: Nikolaj Schumacher
|
||||
;; Maintainer: Dmitry Gutov <dmitry@gutov.dev>
|
||||
;; URL: http://company-mode.github.io/
|
||||
;; Package-Version: 20251021.2211
|
||||
;; Package-Revision: 4ff89f736922
|
||||
;; Package-Version: 20260331.245
|
||||
;; Package-Revision: 59626254bbac
|
||||
;; Keywords: abbrev, convenience, matching
|
||||
;; Package-Requires: ((emacs "26.1"))
|
||||
|
||||
@@ -80,7 +80,7 @@
|
||||
|
||||
(defface company-tooltip
|
||||
'((((class color) (min-colors 88) (background light))
|
||||
(:foreground "black" :background "cornsilk"))
|
||||
(:foreground "black" :background "ghostwhite"))
|
||||
(((class color) (min-colors 88) (background dark))
|
||||
(:background "gray26"))
|
||||
(t (:foreground "black" :background "yellow")))
|
||||
@@ -88,7 +88,7 @@
|
||||
|
||||
(defface company-tooltip-selection
|
||||
'((((class color) (min-colors 88) (background light))
|
||||
(:background "light blue"))
|
||||
(:background "lavender"))
|
||||
(((class color) (min-colors 88) (background dark))
|
||||
(:background "gray31"))
|
||||
(t (:background "green")))
|
||||
@@ -149,7 +149,7 @@
|
||||
|
||||
(defface company-tooltip-scrollbar-thumb
|
||||
'((((background light))
|
||||
:background "indian red")
|
||||
:background "lightpink3")
|
||||
(((background dark))
|
||||
:background "gray33"))
|
||||
"Face used for the tooltip scrollbar thumb (bar).")
|
||||
@@ -161,7 +161,7 @@
|
||||
|
||||
(defface company-tooltip-scrollbar-track
|
||||
'((((background light))
|
||||
:background "wheat")
|
||||
:background "thistle")
|
||||
(((background dark))
|
||||
:background "gray28"))
|
||||
"Face used for the tooltip scrollbar track (trough).")
|
||||
@@ -4163,7 +4163,7 @@ but adjust the expected values appropriately."
|
||||
left
|
||||
right)
|
||||
(when scrollbar-bounds
|
||||
(company--scrollbar i scrollbar-bounds)))
|
||||
(company--scrollbar i scrollbar-bounds selected)))
|
||||
new)))
|
||||
|
||||
(when remainder
|
||||
@@ -4180,7 +4180,7 @@ but adjust the expected values appropriately."
|
||||
(upper (+ lower size -1)))
|
||||
(cons lower upper))))
|
||||
|
||||
(defun company--scrollbar (i bounds)
|
||||
(defun company--scrollbar (i bounds selected)
|
||||
(let* ((scroll-width (ceiling (* (default-font-width)
|
||||
company-tooltip-scrollbar-width))))
|
||||
(propertize " "
|
||||
@@ -4188,7 +4188,9 @@ but adjust the expected values appropriately."
|
||||
'face
|
||||
(if (and (>= i (car bounds)) (<= i (cdr bounds)))
|
||||
'company-tooltip-scrollbar-thumb
|
||||
'company-tooltip-scrollbar-track))))
|
||||
(if selected
|
||||
'company-tooltip-selection
|
||||
'company-tooltip)))))
|
||||
|
||||
(defun company--right-margin (limit length)
|
||||
(if (or (not (eq company-tooltip-offset-display 'scrollbar))
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
This is company.info, produced by makeinfo version 7.2 from
|
||||
This is company.info, produced by makeinfo version 7.3 from
|
||||
company.texi.
|
||||
|
||||
This user manual is for Company version 1.0.3-snapshot
|
||||
@@ -352,11 +352,11 @@ core settings that influence its overall behavior.
|
||||
|
||||
-- User Option: company-minimum-prefix-length
|
||||
This is one of the values (together with ‘company-idle-delay’),
|
||||
based on which Company auto-stars looking up completion candidates.
|
||||
This option configures how many characters have to be typed in by a
|
||||
user before candidates start to be collected and displayed. An
|
||||
often choice nowadays is to configure this option to a lower number
|
||||
than the default value of ‘3’.
|
||||
based on which Company auto-starts looking up completion
|
||||
candidates. This option configures how many characters have to be
|
||||
typed in by a user before candidates start to be collected and
|
||||
displayed. An often choice nowadays is to configure this option to
|
||||
a lower number than the default value of ‘3’.
|
||||
|
||||
-- User Option: company-idle-delay
|
||||
This is the second of the options that configure Company's
|
||||
@@ -1786,32 +1786,32 @@ Ref: Commands-Footnote-110079
|
||||
Node: Customization10246
|
||||
Node: Customization Interface10718
|
||||
Node: Configuration File11251
|
||||
Ref: company-selection-wrap-around13563
|
||||
Node: Frontends16052
|
||||
Node: Tooltip Frontends17021
|
||||
Ref: Tooltip Frontends-Footnote-127717
|
||||
Node: Preview Frontends27954
|
||||
Ref: Preview Frontends-Footnote-129212
|
||||
Node: Echo Frontends29339
|
||||
Node: Candidates Search30868
|
||||
Node: Filter Candidates32200
|
||||
Node: Quick Access a Candidate32980
|
||||
Node: Backends34598
|
||||
Node: Backends Usage Basics35628
|
||||
Ref: Backends Usage Basics-Footnote-137060
|
||||
Node: Grouped Backends37144
|
||||
Node: Package Backends38655
|
||||
Node: Code Completion39582
|
||||
Node: Text Completion45099
|
||||
Node: File Name Completion49523
|
||||
Node: Template Expansion51069
|
||||
Node: Candidates Post-Processing51788
|
||||
Node: Troubleshooting54365
|
||||
Node: Index56036
|
||||
Node: Key Index56199
|
||||
Node: Variable Index57698
|
||||
Node: Function Index62551
|
||||
Node: Concept Index67251
|
||||
Ref: company-selection-wrap-around13565
|
||||
Node: Frontends16054
|
||||
Node: Tooltip Frontends17023
|
||||
Ref: Tooltip Frontends-Footnote-127719
|
||||
Node: Preview Frontends27956
|
||||
Ref: Preview Frontends-Footnote-129214
|
||||
Node: Echo Frontends29341
|
||||
Node: Candidates Search30870
|
||||
Node: Filter Candidates32202
|
||||
Node: Quick Access a Candidate32982
|
||||
Node: Backends34600
|
||||
Node: Backends Usage Basics35630
|
||||
Ref: Backends Usage Basics-Footnote-137062
|
||||
Node: Grouped Backends37146
|
||||
Node: Package Backends38657
|
||||
Node: Code Completion39584
|
||||
Node: Text Completion45101
|
||||
Node: File Name Completion49525
|
||||
Node: Template Expansion51071
|
||||
Node: Candidates Post-Processing51790
|
||||
Node: Troubleshooting54367
|
||||
Node: Index56038
|
||||
Node: Key Index56201
|
||||
Node: Variable Index57700
|
||||
Node: Function Index62553
|
||||
Node: Concept Index67253
|
||||
|
||||
End Tag Table
|
||||
|
||||
|
||||
Reference in New Issue
Block a user