pkg update and first config fix
org-brain not working, add org-roam
@@ -1,6 +1,6 @@
|
||||
;;; company-abbrev.el --- company-mode completion backend for abbrev
|
||||
|
||||
;; Copyright (C) 2009-2011, 2015, 2021 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2015, 2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-bbdb.el --- company-mode completion backend for BBDB in message-mode
|
||||
|
||||
;; Copyright (C) 2013-2014, 2016 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2013-2016, 2020 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Jan Tatarik <jan.tatarik@gmail.com>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-capf.el --- company-mode completion-at-point-functions backend -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2013-2019, 2021 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2013-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
@@ -57,19 +57,43 @@ so we can't just use the preceding variable instead.")
|
||||
(list (current-buffer) (point) (buffer-chars-modified-tick) data))
|
||||
data))))
|
||||
|
||||
(defun company--contains (elt lst)
|
||||
(when-let ((cur (car lst)))
|
||||
(cond
|
||||
((symbolp cur)
|
||||
(or (eq elt cur)
|
||||
(company--contains elt (cdr lst))))
|
||||
((listp cur)
|
||||
(or (company--contains elt cur)
|
||||
(company--contains elt (cdr lst)))))))
|
||||
|
||||
(defun company--capf-data-real ()
|
||||
(cl-letf* (((default-value 'completion-at-point-functions)
|
||||
;; Ignore tags-completion-at-point-function because it subverts
|
||||
;; company-etags in the default value of company-backends, where
|
||||
;; the latter comes later.
|
||||
(remove 'tags-completion-at-point-function
|
||||
(default-value 'completion-at-point-functions)))
|
||||
(if (company--contains 'company-etags company-backends)
|
||||
;; Ignore tags-completion-at-point-function because it subverts
|
||||
;; company-etags in the default value of company-backends, where
|
||||
;; the latter comes later.
|
||||
(remove 'tags-completion-at-point-function
|
||||
(default-value 'completion-at-point-functions))
|
||||
(default-value 'completion-at-point-functions)))
|
||||
(completion-at-point-functions (company--capf-workaround))
|
||||
(data (run-hook-wrapped 'completion-at-point-functions
|
||||
;; Ignore misbehaving functions.
|
||||
#'completion--capf-wrapper 'optimist)))
|
||||
#'company--capf-wrapper 'optimist)))
|
||||
(when (and (consp (cdr data)) (integer-or-marker-p (nth 1 data))) data)))
|
||||
|
||||
(defun company--capf-wrapper (fun which)
|
||||
(let ((buffer-read-only t)
|
||||
(inhibit-read-only nil)
|
||||
(completion-in-region-function
|
||||
(lambda (beg end coll pred)
|
||||
(throw 'company--illegal-completion-in-region
|
||||
(list fun beg end coll :predicate pred)))))
|
||||
(catch 'company--illegal-completion-in-region
|
||||
(condition-case nil
|
||||
(completion--capf-wrapper fun which)
|
||||
(buffer-read-only nil)))))
|
||||
|
||||
(declare-function python-shell-get-process "python")
|
||||
|
||||
(defun company--capf-workaround ()
|
||||
@@ -165,8 +189,16 @@ so we can't just use the preceding variable instead.")
|
||||
))
|
||||
|
||||
(defun company-capf--annotation (arg)
|
||||
(let* ((f (plist-get (nthcdr 4 company-capf--current-completion-data)
|
||||
:annotation-function))
|
||||
(let* ((f (or (plist-get (nthcdr 4 company-capf--current-completion-data)
|
||||
:annotation-function)
|
||||
;; FIXME: Add a test.
|
||||
(cdr (assq 'annotation-function
|
||||
(completion-metadata
|
||||
(buffer-substring (nth 1 company-capf--current-completion-data)
|
||||
(nth 2 company-capf--current-completion-data))
|
||||
(nth 3 company-capf--current-completion-data)
|
||||
(plist-get (nthcdr 4 company-capf--current-completion-data)
|
||||
:predicate))))))
|
||||
(annotation (when f (funcall f arg))))
|
||||
(if (and company-format-margin-function
|
||||
(equal annotation " <f>") ; elisp-completion-at-point, pre-icons
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-clang.el --- company-mode completion backend for Clang -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009, 2011, 2013-2019 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -357,7 +357,7 @@ or automatically through a custom `company-clang-prefix-guesser'."
|
||||
(string-to-number (match-string-no-properties 2)))
|
||||
0)))
|
||||
|
||||
(defun company-clang (command &optional arg &rest ignored)
|
||||
(defun company-clang (command &optional arg &rest _ignored)
|
||||
"`company-mode' completion backend for Clang.
|
||||
Clang is a parser for C and ObjC. Clang version 1.1 or newer is required.
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-cmake.el --- company-mode completion backend for CMake
|
||||
|
||||
;; Copyright (C) 2013-2014, 2017-2018 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2013-2015, 2017-2018, 2020 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Chen Bin <chenbin DOT sh AT gmail>
|
||||
;; Version: 0.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-css.el --- company-mode completion backend for css-mode -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009, 2011, 2014, 2018 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2015, 2018 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -414,7 +414,7 @@ Returns \"\" if no property found, but feasible at this position."
|
||||
"A regular expression matching CSS tags.")
|
||||
|
||||
;;;###autoload
|
||||
(defun company-css (command &optional arg &rest ignored)
|
||||
(defun company-css (command &optional arg &rest _ignored)
|
||||
"`company-mode' completion backend for `css-mode'."
|
||||
(interactive (list 'interactive))
|
||||
(cl-case command
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-dabbrev-code.el --- dabbrev-like company-mode backend for code -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009, 2011, 2014 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2016, 2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -76,7 +76,7 @@ also `company-dabbrev-code-time-limit'."
|
||||
"\\(\\sw\\|\\s_\\)*\\_>"))
|
||||
|
||||
;;;###autoload
|
||||
(defun company-dabbrev-code (command &optional arg &rest ignored)
|
||||
(defun company-dabbrev-code (command &optional arg &rest _ignored)
|
||||
"dabbrev-like `company-mode' backend for code.
|
||||
The backend looks for all symbols in the current buffer that aren't in
|
||||
comments or strings."
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-dabbrev.el --- dabbrev-like company-mode completion backend -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009, 2011, 2014, 2015, 2016 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2018, 2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -179,7 +179,7 @@ This variable affects both `company-dabbrev' and `company-dabbrev-code'."
|
||||
(all-completions prefix candidates)))
|
||||
|
||||
;;;###autoload
|
||||
(defun company-dabbrev (command &optional arg &rest ignored)
|
||||
(defun company-dabbrev (command &optional arg &rest _ignored)
|
||||
"dabbrev-like `company-mode' completion backend."
|
||||
(interactive (list 'interactive))
|
||||
(cl-case command
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-elisp.el --- company-mode completion backend for Emacs Lisp -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009, 2011-2013, 2017 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2015, 2017, 2020 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -193,7 +193,7 @@ first in the candidates list."
|
||||
(match-string 0 doc))))
|
||||
|
||||
;;;###autoload
|
||||
(defun company-elisp (command &optional arg &rest ignored)
|
||||
(defun company-elisp (command &optional arg &rest _ignored)
|
||||
"`company-mode' completion backend for Emacs Lisp."
|
||||
(interactive (list 'interactive))
|
||||
(cl-case command
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-etags.el --- company-mode completion backend for etags
|
||||
|
||||
;; Copyright (C) 2009-2011, 2014 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2015, 2018-2019 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-files.el --- company-mode completion backend for file names
|
||||
|
||||
;; Copyright (C) 2009-2011, 2014-2021 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-gtags.el --- company-mode completion backend for GNU Global
|
||||
|
||||
;; Copyright (C) 2009-2011, 2014-2020 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-ispell.el --- company-mode completion backend using Ispell
|
||||
|
||||
;; Copyright (C) 2009-2011, 2013-2016 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2016, 2018, 2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-keywords.el --- A company backend for programming language keywords
|
||||
|
||||
;; Copyright (C) 2009-2011, 2016 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2018, 2020-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -61,13 +61,23 @@
|
||||
"xor" "xor_eq")
|
||||
(c-mode
|
||||
;; from https://en.cppreference.com/w/c/keyword
|
||||
"_Alignas" "_Alignof" "_Atomic" "_Bool" "_Complex" "_Generic" "_Imaginary"
|
||||
"_Noreturn" "_Static_assert" "_Thread_local"
|
||||
"_Alignas" "_Alignof" "_Atomic" "_Bool" "_Complex"
|
||||
"_Decimal128" "_Decimal32" "_Decimal64" "_Generic" "_Imaginary"
|
||||
"_Noreturn" "_Static_assert" "_Thread_local" "__asm__" "asm"
|
||||
"auto" "break" "case" "char" "const" "continue" "default" "do"
|
||||
"double" "else" "enum" "extern" "float" "for" "goto" "if" "inline"
|
||||
"int" "long" "register" "restrict" "return" "short" "signed" "sizeof"
|
||||
"static" "struct" "switch" "typedef" "union" "unsigned" "void" "volatile"
|
||||
"while")
|
||||
(crystal-mode
|
||||
;; from https://github.com/crystal-lang/crystal-book/issues/124#issuecomment-1008311227
|
||||
"abstract" "alias" "annotation" "as" "as?" "asm" "begin" "break" "case" "class"
|
||||
"def" "do" "else" "elsif" "end" "ensure" "enum" "extend" "false" "for" "fun"
|
||||
"if" "in" "include" "instance_sizeof" "is_a?" "lib" "macro" "module" "next"
|
||||
"nil" "nil?" "of" "offsetof" "out" "pointerof" "private" "protected" "require"
|
||||
"rescue" "responds_to?" "return" "select" "self" "sizeof" "struct" "super"
|
||||
"then" "true" "type" "typeof" "uninitialized" "union" "unless" "until" "verbatim"
|
||||
"when" "while" "with" "yield")
|
||||
(csharp-mode
|
||||
"abstract" "add" "alias" "as" "base" "bool" "break" "byte" "case"
|
||||
"catch" "char" "checked" "class" "const" "continue" "decimal" "default"
|
||||
@@ -95,6 +105,29 @@
|
||||
"super" "switch" "synchronized" "template" "this" "throw" "true" "try"
|
||||
"typedef" "typeid" "typeof" "ubyte" "ucent" "uint" "ulong" "union"
|
||||
"unittest" "ushort" "version" "void" "volatile" "wchar" "while" "with")
|
||||
(elixir-mode
|
||||
;; from https://hexdocs.pm/elixir/Kernel.html
|
||||
"__CALLER__" "__DIR__" "__ENV__" "__MODULE__" "__STACKTRACE__"
|
||||
"__aliases__" "__block__" "abs" "alias" "alias!" "and" "apply"
|
||||
"binary_part" "binary_slice" "binding" "bit_size" "byte_size" "case" "ceil"
|
||||
"cond" "dbg" "def" "defdelegate" "defexception" "defguard" "defguardp"
|
||||
"defimpl" "defmacro" "defmacrop" "defmodule" "defoverridable" "defp"
|
||||
"defprotocol" "defstruct" "destructure" "div" "elem" "exit" "floor" "fn"
|
||||
"for" "function_exported?" "get_and_update_in" "get_in" "hd" "if" "import"
|
||||
"in" "inspect" "is_atom" "is_binary" "is_bitstring" "is_boolean"
|
||||
"is_exception" "is_float" "is_function" "is_integer" "is_list" "is_map"
|
||||
"is_map_key" "is_nil" "is_number" "is_pid" "is_port" "is_reference"
|
||||
"is_struct" "is_tuple" "length" "macro_exported?" "make_ref" "map_size"
|
||||
"match?" "max" "min" "node" "not" "or" "pop_in" "put_elem" "put_in" "quote"
|
||||
"raise" "receive" "rem" "require" "reraise" "round" "self" "send" "spawn"
|
||||
"spawn_link" "spawn_monitor" "struct" "struct!" "super" "tap" "then"
|
||||
"throw" "tl" "to_charlist" "to_string" "trunc" "try" "tuple_size" "unless"
|
||||
"unquote" "unquote_splicing" "update_in" "use" "var!" "with")
|
||||
(erlang-mode
|
||||
;; from https://www.erlang.org/docs/20/reference_manual/introduction.html#id63536
|
||||
"after" "and" "andalso" "band" "begin" "bnot" "bor" "bsl" "bsr" "bxor"
|
||||
"case" "catch" "cond" "div" "end" "fun" "if" "let" "not" "of" "or" "orelse"
|
||||
"receive" "rem" "try" "when" "xor")
|
||||
(f90-mode .
|
||||
;; from f90.el
|
||||
;; ".AND." ".GE." ".GT." ".LT." ".LE." ".NE." ".OR." ".TRUE." ".FALSE."
|
||||
@@ -193,6 +226,14 @@
|
||||
;; https://www.lua.org/manual/5.3/manual.html
|
||||
"and" "break" "do" "else" "elseif" "end" "false" "for" "function" "goto" "if"
|
||||
"in" "local" "nil" "not" "or" "repeat" "return" "then" "true" "until" "while")
|
||||
(nim-mode
|
||||
;; https://nim-lang.org/docs/manual.html#lexical-analysis-identifiers-amp-keywords
|
||||
"addr" "and" "as" "asm" "bind" "block" "break" "case" "cast" "concept" "const" "continue"
|
||||
"converter" "defer" "discard" "distinct" "div" "do" "elif" "else" "end" "enum" "except"
|
||||
"export" "finally" "for" "from" "func" "if" "import" "in" "include" "interface" "is" "isnot"
|
||||
"iterator" "let" "macro" "method" "mixin" "mod" "nil" "not" "notin" "object" "of" "or" "out"
|
||||
"proc" "ptr" "raise" "ref" "return" "shl" "shr" "static" "template" "try" "tuple" "type"
|
||||
"using" "var" "when" "while" "xor" "yield")
|
||||
(objc-mode
|
||||
"@catch" "@class" "@encode" "@end" "@finally" "@implementation"
|
||||
"@interface" "@private" "@protected" "@protocol" "@public"
|
||||
@@ -231,17 +272,24 @@
|
||||
"ucfirst" "umask" "undef" "unless" "unlink" "unpack" "unshift" "untie"
|
||||
"until" "use" "utime" "values" "vec" "wait" "waitpid"
|
||||
"wantarray" "warn" "while" "write" "x" "xor" "y")
|
||||
(php-mode
|
||||
(php-mode ;; https://www.php.net/manual/reserved.php
|
||||
"Closure" "Error" "Exception" "Generator" "Throwable"
|
||||
"__CLASS__" "__DIR__" "__FILE__" "__FUNCTION__" "__LINE__" "__METHOD__"
|
||||
"__NAMESPACE__" "_once" "abstract" "and" "array" "as" "break" "case"
|
||||
"catch" "cfunction" "class" "clone" "const" "continue" "declare"
|
||||
"default" "die" "do" "echo" "else" "elseif" "empty" "enddeclare"
|
||||
"endfor" "endforeach" "endif" "endswitch" "endwhile" "eval" "exception"
|
||||
"exit" "extends" "final" "for" "foreach" "function" "global"
|
||||
"goto" "if" "implements" "include" "instanceof" "interface"
|
||||
"isset" "list" "namespace" "new" "old_function" "or" "php_user_filter"
|
||||
"print" "private" "protected" "public" "require" "require_once" "return"
|
||||
"static" "switch" "this" "throw" "try" "unset" "use" "var" "while" "xor")
|
||||
"__NAMESPACE__" "__TRAIT__"
|
||||
"abstract" "and" "array" "as" "bool" "break" "callable" "case" "catch"
|
||||
"class" "clone" "const" "continue" "declare" "default" "die" "do" "echo"
|
||||
"else" "elseif" "empty" "enddeclare" "endfor" "endforeach" "endif"
|
||||
"endswitch" "endwhile" "enum" "eval" "exit" "extends" "false" "final" "finally"
|
||||
"float" "fn" "for" "foreach" "function" "global" "goto" "if"
|
||||
"implements" "include" "include_once" "instanceof" "insteadof" "interface"
|
||||
"isset" "iterable" "list" "match" "namespace" "new" "null" "object" "or"
|
||||
"print" "private" "protected" "public" "readonly" "require" "require_once"
|
||||
"return" "self" "static" "string" "switch" "this" "throw" "trait" "true"
|
||||
"try" "unset" "use" "var" "void" "while" "xor" "yield" "yield from")
|
||||
(purescript-mode ;; purescript-font-lock.el
|
||||
"ado" "case" "class" "data" "default" "deriving" "do" "else" "if" "import"
|
||||
"in" "infix" "infixl" "infixr" "instance" "let" "module" "newtype" "of"
|
||||
"then" "type" "where")
|
||||
(python-mode
|
||||
;; https://docs.python.org/3/reference/lexical_analysis.html#keywords
|
||||
"False" "None" "True" "and" "as" "assert" "break" "class" "continue" "def"
|
||||
@@ -261,6 +309,68 @@
|
||||
"false" "fn" "for" "if" "impl" "in" "let" "loop" "macro" "match" "mod"
|
||||
"move" "mut" "pub" "ref" "return" "self" "static" "struct" "super"
|
||||
"trait" "true" "type" "unsafe" "use" "where" "while")
|
||||
; Extract from R7RS-small Tex: https://small.r7rs.org/
|
||||
(scheme-mode
|
||||
"abs" "acos" "angle" "append" "apply" "asin" "assoc" "assq" "assv"
|
||||
"atan" "binary-port?" "body" "boolean=?" "boolean?" "bytevector"
|
||||
"bytevector-append" "bytevector-copy" "bytevector-copy!"
|
||||
"bytevector-length" "bytevector-u8-ref" "bytevector-u8-set!"
|
||||
"bytevector?" "caaaar" "caaadr" "caaar" "caadar" "caaddr" "caadr"
|
||||
"caar" "cadaar" "cadadr" "cadar" "caddar" "cadddr" "caddr" "cadr"
|
||||
"call-with-port" "call-with-values" "car" "car-internal" "cdaaar"
|
||||
"cdaadr" "cdaar" "cdadar" "cdaddr" "cdadr" "cdar" "cddaar" "cddadr"
|
||||
"cddar" "cdddar" "cddddr" "cdddr" "cddr" "cdr" "ceiling"
|
||||
"char->integer" "char-alphabetic?" "char-ci<=?" "char-ci<?"
|
||||
"char-ci=?" "char-ci>=?" "char-ci>?" "char-downcase" "char-foldcase"
|
||||
"char-lower-case?" "char-numeric?" "char-ready?" "char-upcase"
|
||||
"char-upper-case?" "char-whitespace?" "char<=?" "char<?" "char=?"
|
||||
"char>=?" "char>?" "char?" "close-input-port" "close-output-port"
|
||||
"close-port" "command-line" "complex?" "cons" "cos"
|
||||
"current-error-port" "current-input-port" "current-jiffy"
|
||||
"current-output-port" "current-second" "delete-file" "denominator"
|
||||
"digit-value" "display" "dynamic-wind" "emergency-exit" "environment"
|
||||
"eof-object" "eof-object?" "eq?" "equal?" "eqv?" "error"
|
||||
"error-object-irritants" "error-object-message" "error-object?" "eval"
|
||||
"even?" "exact" "exact-integer-sqrt" "exact-integer?" "exact?" "exit"
|
||||
"exp" "expt" "features" "file-error?" "file-exists?" "finite?" "floor"
|
||||
"floor-quotient" "floor-remainder" "floor/" "flush-output-port" "gcd"
|
||||
"get-environment-variable" "get-environment-variables"
|
||||
"get-output-bytevector" "get-output-string" "imag-part" "inexact"
|
||||
"inexact?" "infinite?" "input-port-open?" "input-port?"
|
||||
"integer->char" "integer?" "interaction-environment"
|
||||
"jiffies-per-second" "lcm" "length" "list" "list->string"
|
||||
"list->vector" "list-copy" "list-ref" "list-set!" "list-tail" "list?"
|
||||
"load" "log" "magnitude" "make-bytevector" "make-list"
|
||||
"make-parameter" "make-polar" "make-promise" "make-rectangular"
|
||||
"make-string" "make-vector" "max" "member" "memq" "memv" "min"
|
||||
"modulo" "nan?" "negative?" "newline" "nil" "not" "null-environment"
|
||||
"null?" "number->string" "number?" "numerator" "odd?"
|
||||
"open-binary-input-file" "open-binary-output-file"
|
||||
"open-input-bytevector" "open-input-file" "open-input-string"
|
||||
"open-output-bytevector" "open-output-file" "open-output-string"
|
||||
"output-port-open?" "output-port?" "pair?" "peek-char" "peek-u8"
|
||||
"port?" "positive?" "procedure?" "promise?" "quasiquote" "quote"
|
||||
"quotient" "raise" "raise-continuable" "rational?" "rationalize"
|
||||
"read" "read-bytevector" "read-bytevector!" "read-char" "read-error?"
|
||||
"read-line" "read-string" "read-u8" "real-part" "real?" "remainder"
|
||||
"reverse" "round" "scheme-report-environment" "set!" "set-car!"
|
||||
"set-cdr!" "setcar" "sin" "sqrt" "square" "string" "string->list"
|
||||
"string->number" "string->symbol" "string->utf" "string->vector"
|
||||
"string-append" "string-ci<=?" "string-ci<?" "string-ci=?"
|
||||
"string-ci>=?" "string-ci>?" "string-copy" "string-copy!"
|
||||
"string-downcase" "string-fill!" "string-foldcase" "string-for-each"
|
||||
"string-length" "string-map" "string-ref" "string-set!"
|
||||
"string-upcase" "string<=?" "string<?" "string=?" "string>=?"
|
||||
"string>?" "string?" "substring" "symbol->string" "symbol=?" "symbol?"
|
||||
"tan" "textual-port?" "truncate" "truncate-quotient"
|
||||
"truncate-remainder" "truncate/" "u8-ready?" "unquote"
|
||||
"unquote-splicing" "utf->string" "values" "vector" "vector->list"
|
||||
"vector->string" "vector-append" "vector-copy" "vector-copy!"
|
||||
"vector-fill!" "vector-for-each" "vector-length" "vector-map"
|
||||
"vector-ref" "vector-set!" "vector?" "with-exception-handler"
|
||||
"with-input-from-file" "with-output-to-file" "write"
|
||||
"write-bytevector" "write-char" "write-shared" "write-simple"
|
||||
"write-string" "write-u8" "zero?")
|
||||
(scala-mode
|
||||
"abstract" "case" "catch" "class" "def" "do" "else" "extends" "false"
|
||||
"final" "finally" "for" "forSome" "if" "implicit" "import" "lazy" "match"
|
||||
@@ -303,6 +413,7 @@
|
||||
(cperl-mode . perl-mode)
|
||||
(jde-mode . java-mode)
|
||||
(ess-julia-mode . julia-mode)
|
||||
(phps-mode . php-mode)
|
||||
(enh-ruby-mode . ruby-mode))
|
||||
"Alist mapping major-modes to sorted keywords for `company-keywords'.")
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-nxml.el --- company-mode completion backend for nxml-mode
|
||||
|
||||
;; Copyright (C) 2009-2011, 2013, 2018 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2015, 2017-2018 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-oddmuse.el --- company-mode completion backend for oddmuse-mode
|
||||
|
||||
;; Copyright (C) 2009-2011, 2014 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2016, 2022 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
(interactive (company-begin-backend 'company-oddmuse))
|
||||
(prefix (let ((case-fold-search nil))
|
||||
(and (memq major-mode '(oddmuse-mode yaoddmuse-mode))
|
||||
(looking-back company-oddmuse-link-regexp (point-at-bol))
|
||||
(looking-back company-oddmuse-link-regexp (line-beginning-position))
|
||||
(or (match-string 1)
|
||||
(match-string 2)))))
|
||||
(candidates (all-completions arg (company-oddmuse-get-page-table)))))
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
(define-package "company" "20220103.351" "Modular text completion framework"
|
||||
(define-package "company" "20221206.2122" "Modular text completion framework"
|
||||
'((emacs "25.1"))
|
||||
:commit "6eeaf46b869552b7cb70cab7d4590120c64cc175" :authors
|
||||
'(("Nikolaj Schumacher"))
|
||||
:maintainer
|
||||
:commit "6884e3ad717419b4a64a5fab08c8cb9bd20a0b27" :maintainer
|
||||
'("Dmitry Gutov" . "dgutov@yandex.ru")
|
||||
:keywords
|
||||
'("abbrev" "convenience" "matching")
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-semantic.el --- company-mode completion backend using Semantic
|
||||
|
||||
;; Copyright (C) 2009-2011, 2013-2016 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2018 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-template.el --- utility library for template expansion
|
||||
|
||||
;; Copyright (C) 2009, 2010, 2014-2017 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2010, 2013-2017, 2019 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-tempo.el --- company-mode completion backend for tempo
|
||||
|
||||
;; Copyright (C) 2009-2011, 2015 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2011, 2013-2016 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company-yasnippet.el --- company-mode completion backend for Yasnippet
|
||||
|
||||
;; Copyright (C) 2014, 2015, 2020 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2014-2015, 2020-2021 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Dmitry Gutov
|
||||
|
||||
@@ -116,9 +116,11 @@ It has to accept one argument: the snippet's name.")
|
||||
(let ((template (get-text-property 0 'yas-template arg))
|
||||
(mode major-mode)
|
||||
(file-name (buffer-file-name)))
|
||||
(defvar yas-prompt-functions)
|
||||
(with-current-buffer (company-doc-buffer)
|
||||
(let ((buffer-file-name file-name))
|
||||
(yas-minor-mode 1)
|
||||
(setq-local yas-prompt-functions '(yas-no-prompt))
|
||||
(condition-case error
|
||||
(yas-expand-snippet (yas--template-content template))
|
||||
(error
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
;;; company.el --- Modular text completion framework -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2009-2021 Free Software Foundation, Inc.
|
||||
;; Copyright (C) 2009-2022 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Nikolaj Schumacher
|
||||
;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
|
||||
@@ -513,7 +513,7 @@ without duplicates."
|
||||
(company-sort-by-backend-importance))
|
||||
(const :tag "Prefer case sensitive prefix"
|
||||
(company-sort-prefer-same-case-prefix))
|
||||
(repeat :tag "User defined" (function))))
|
||||
(repeat :tag "User defined" function)))
|
||||
|
||||
(defcustom company-completion-started-hook nil
|
||||
"Hook run when company starts completing.
|
||||
@@ -566,45 +566,61 @@ doesn't match anything or finish it manually, e.g. with RET."
|
||||
This can be a function do determine if a match is required.
|
||||
|
||||
This can be overridden by the backend, if it returns t or `never' to
|
||||
`require-match'. `company-auto-commit' also takes precedence over this."
|
||||
`require-match'. `company-insertion-on-trigger' also takes precedence over
|
||||
this."
|
||||
:type '(choice (const :tag "Off" nil)
|
||||
(function :tag "Predicate function")
|
||||
(const :tag "On, if user interaction took place"
|
||||
'company-explicit-action-p)
|
||||
company-explicit-action-p)
|
||||
(const :tag "On" t)))
|
||||
|
||||
(define-obsolete-variable-alias
|
||||
'company-auto-complete
|
||||
'company-auto-commit
|
||||
'company-insertion-on-trigger
|
||||
"0.9.14")
|
||||
|
||||
(defcustom company-auto-commit nil
|
||||
"Determines whether to auto-commit.
|
||||
If this is enabled, all characters from `company-auto-commit-chars'
|
||||
trigger insertion of the selected completion candidate.
|
||||
This can also be a function."
|
||||
(define-obsolete-variable-alias
|
||||
'company-auto-commit
|
||||
'company-insertion-on-trigger
|
||||
"0.9.14")
|
||||
|
||||
(defcustom company-insertion-on-trigger nil
|
||||
"If enabled, allow triggering insertion of the selected candidate.
|
||||
This can also be a predicate function, for example,
|
||||
`company-explicit-action-p'.
|
||||
|
||||
See `company-insertion-triggers' for more details on how to define
|
||||
triggers."
|
||||
:type '(choice (const :tag "Off" nil)
|
||||
(function :tag "Predicate function")
|
||||
(const :tag "On, if user interaction took place"
|
||||
'company-explicit-action-p)
|
||||
company-explicit-action-p)
|
||||
(const :tag "On" t))
|
||||
:package-version '(company . "0.9.14"))
|
||||
|
||||
(define-obsolete-variable-alias
|
||||
'company-auto-complete-chars
|
||||
'company-auto-commit-chars
|
||||
'company-insertion-triggers
|
||||
"0.9.14")
|
||||
|
||||
(defcustom company-auto-commit-chars '(?\ ?\) ?.)
|
||||
"Determines which characters trigger auto-commit.
|
||||
See `company-auto-commit'. If this is a string, each character in it
|
||||
triggers auto-commit. If it is a list of syntax description characters (see
|
||||
`modify-syntax-entry'), characters with any of those syntaxes do that.
|
||||
(define-obsolete-variable-alias
|
||||
'company-auto-commit-chars
|
||||
'company-insertion-triggers
|
||||
"0.9.14")
|
||||
|
||||
This can also be a function, which is called with the new input and should
|
||||
return non-nil if company should auto-commit.
|
||||
(defcustom company-insertion-triggers '(?\ ?\) ?.)
|
||||
"Determine triggers for `company-insertion-on-trigger'.
|
||||
|
||||
A character that is part of a valid completion never triggers auto-commit."
|
||||
If this is a string, then each character in it can trigger insertion of the
|
||||
selected candidate. If it is a list of syntax description characters (see
|
||||
`modify-syntax-entry'), then characters with any of those syntaxes can act
|
||||
as triggers.
|
||||
|
||||
This can also be a function, which is called with the new input. To
|
||||
trigger insertion, the function should return a non-nil value.
|
||||
|
||||
Note that a character that is part of a valid completion never triggers
|
||||
insertion."
|
||||
:type '(choice (string :tag "Characters")
|
||||
(set :tag "Syntax"
|
||||
(const :tag "Whitespace" ?\ )
|
||||
@@ -654,7 +670,7 @@ pre-defined list. See `company-idle-delay'.
|
||||
Alternatively, any command with a non-nil `company-begin' property is
|
||||
treated as if it was on this list."
|
||||
:type '(choice (const :tag "Any command" t)
|
||||
(const :tag "Self insert command" '(self-insert-command))
|
||||
(const :tag "Self insert command" (self-insert-command))
|
||||
(repeat :tag "Commands" function))
|
||||
:package-version '(company . "0.8.4"))
|
||||
|
||||
@@ -1059,7 +1075,7 @@ If EXPRESSION is non-nil, return the match string for the respective
|
||||
parenthesized expression in REGEXP.
|
||||
Matching is limited to the current line."
|
||||
(let ((inhibit-field-text-motion t))
|
||||
(company-grab regexp expression (point-at-bol))))
|
||||
(company-grab regexp expression (line-beginning-position))))
|
||||
|
||||
(defun company-grab-symbol ()
|
||||
"If point is at the end of a symbol, return it.
|
||||
@@ -1324,7 +1340,15 @@ can retrieve meta-data for them."
|
||||
(and (symbolp this-command)
|
||||
(string-match-p "\\`company-" (symbol-name this-command)))))))
|
||||
|
||||
(defvar company-auto-update-doc nil
|
||||
"If non-nil, update the documentation buffer on each selection change.
|
||||
To toggle the value of this variable, call `company-show-doc-buffer' with a
|
||||
prefix argument.")
|
||||
|
||||
(defun company-call-frontends (command)
|
||||
(when (and company-auto-update-doc
|
||||
(memq command '(update show)))
|
||||
(company-show-doc-buffer))
|
||||
(cl-loop for frontend in company-frontends collect
|
||||
(condition-case-unless-debug err
|
||||
(funcall frontend command)
|
||||
@@ -1673,14 +1697,14 @@ fields without issue.
|
||||
When BG is omitted and `company-text-icons-add-background' is non-nil, a BG
|
||||
color is generated using a gradient between the active tooltip color and
|
||||
the FG color."
|
||||
:type 'list)
|
||||
:type '(repeat sexp))
|
||||
|
||||
(defcustom company-text-face-extra-attributes '(:weight bold)
|
||||
"Additional attributes to add to text/dot icons faces.
|
||||
If non-nil, an anonymous face is generated.
|
||||
|
||||
Affects `company-text-icons-margin' and `company-dot-icons-margin'."
|
||||
:type 'list)
|
||||
:type '(plist :tag "Face property list"))
|
||||
|
||||
(defcustom company-text-icons-format " %s "
|
||||
"Format string for printing the text icons."
|
||||
@@ -1771,7 +1795,7 @@ PROPERTY return nil."
|
||||
(if (and (display-graphic-p)
|
||||
(image-type-available-p 'svg))
|
||||
(cl-case (frame-parameter nil 'background-mode)
|
||||
('light (company-vscode-light-icons-margin candidate selected))
|
||||
(light (company-vscode-light-icons-margin candidate selected))
|
||||
(t (company-vscode-dark-icons-margin candidate selected)))
|
||||
(company-text-icons-margin candidate selected)))
|
||||
|
||||
@@ -1954,18 +1978,20 @@ prefix match (same case) will be prioritized."
|
||||
(funcall company-require-match)
|
||||
(eq company-require-match t))))))
|
||||
|
||||
(defun company-auto-commit-p (input)
|
||||
"Return non-nil if INPUT should trigger auto-commit."
|
||||
(and (if (functionp company-auto-commit)
|
||||
(funcall company-auto-commit)
|
||||
company-auto-commit)
|
||||
(if (functionp company-auto-commit-chars)
|
||||
(funcall company-auto-commit-chars input)
|
||||
(if (consp company-auto-commit-chars)
|
||||
(defun company-insertion-on-trigger-p (input)
|
||||
"Return non-nil if INPUT should trigger insertion.
|
||||
For more details see `company-insertion-on-trigger' and
|
||||
`company-insertion-triggers'."
|
||||
(and (if (functionp company-insertion-on-trigger)
|
||||
(funcall company-insertion-on-trigger)
|
||||
company-insertion-on-trigger)
|
||||
(if (functionp company-insertion-triggers)
|
||||
(funcall company-insertion-triggers input)
|
||||
(if (consp company-insertion-triggers)
|
||||
(memq (char-syntax (string-to-char input))
|
||||
company-auto-commit-chars)
|
||||
company-insertion-triggers)
|
||||
(string-match (regexp-quote (substring input 0 1))
|
||||
company-auto-commit-chars)))))
|
||||
company-insertion-triggers)))))
|
||||
|
||||
(defun company--incremental-p ()
|
||||
(and (> (point) company-point)
|
||||
@@ -2030,8 +2056,8 @@ prefix match (same case) will be prioritized."
|
||||
(company-update-candidates c)
|
||||
c)
|
||||
((and (characterp last-command-event)
|
||||
(company-auto-commit-p (string last-command-event)))
|
||||
;; auto-commit
|
||||
(company-insertion-on-trigger-p (string last-command-event)))
|
||||
;; Insertion on trigger.
|
||||
(save-excursion
|
||||
(goto-char company-point)
|
||||
(company-complete-selection)
|
||||
@@ -2509,7 +2535,8 @@ and invoke the normal binding.
|
||||
|
||||
With ARG, move by that many elements."
|
||||
(interactive "p")
|
||||
(if (> company-candidates-length 1)
|
||||
(if (or (not company-selection)
|
||||
(> company-candidates-length 1))
|
||||
(company-select-next arg)
|
||||
(company-abort)
|
||||
(company--unread-this-command-keys)))
|
||||
@@ -2609,6 +2636,18 @@ With ARG, move by that many elements."
|
||||
(current-prefix-arg arg))
|
||||
(call-interactively 'company-select-next))))))
|
||||
|
||||
(defun company-complete-common-or-show-delayed-tooltip ()
|
||||
"Insert the common part of all candidates, or show a tooltip."
|
||||
(interactive)
|
||||
(when (company-manual-begin)
|
||||
(let ((tick (buffer-chars-modified-tick)))
|
||||
(call-interactively 'company-complete-common)
|
||||
(when (eq tick (buffer-chars-modified-tick))
|
||||
(let ((company-tooltip-idle-delay 0.0))
|
||||
(company-complete)
|
||||
(and company-candidates
|
||||
(company-call-frontends 'post-command)))))))
|
||||
|
||||
(defun company-indent-or-complete-common (arg)
|
||||
"Indent the current line or region, or complete the common part."
|
||||
(interactive "P")
|
||||
@@ -2790,22 +2829,37 @@ from the candidates list.")
|
||||
unread-command-events))
|
||||
(clear-this-command-keys t)))
|
||||
|
||||
(defun company-show-doc-buffer ()
|
||||
"Temporarily show the documentation buffer for the selection."
|
||||
(interactive)
|
||||
(defun company--show-doc-buffer ()
|
||||
"Show the documentation buffer for the selection."
|
||||
(let ((other-window-scroll-buffer)
|
||||
(selection (or company-selection 0)))
|
||||
(company--electric-do
|
||||
(let* ((selected (nth selection company-candidates))
|
||||
(doc-buffer (or (company-call-backend 'doc-buffer selected)
|
||||
(user-error "No documentation available")))
|
||||
(if company-auto-update-doc
|
||||
(company-doc-buffer
|
||||
(format "%s: No documentation available"
|
||||
selected))
|
||||
(user-error "No documentation available"))))
|
||||
start)
|
||||
(when (consp doc-buffer)
|
||||
(setq start (cdr doc-buffer)
|
||||
doc-buffer (car doc-buffer)))
|
||||
(setq other-window-scroll-buffer (get-buffer doc-buffer))
|
||||
(let ((win (display-buffer doc-buffer t)))
|
||||
(set-window-start win (if start start (point-min))))))))
|
||||
(set-window-start win (if start start (point-min)))))))
|
||||
|
||||
(defun company-show-doc-buffer (&optional toggle-auto-update)
|
||||
"Show the documentation buffer for the selection.
|
||||
With a prefix argument TOGGLE-AUTO-UPDATE, toggle the value of
|
||||
`company-auto-update-doc'. When `company-auto-update-doc' is non-nil,
|
||||
automatically show the documentation buffer for each selection."
|
||||
(interactive "P")
|
||||
(when toggle-auto-update
|
||||
(setq company-auto-update-doc (not company-auto-update-doc)))
|
||||
(if company-auto-update-doc
|
||||
(company--show-doc-buffer)
|
||||
(company--electric-do
|
||||
(company--show-doc-buffer))))
|
||||
(put 'company-show-doc-buffer 'company-keep t)
|
||||
|
||||
(defun company-show-location ()
|
||||
@@ -2833,7 +2887,7 @@ from the candidates list.")
|
||||
|
||||
(defvar-local company-callback nil)
|
||||
|
||||
(defun company-remove-callback (&optional ignored)
|
||||
(defun company-remove-callback (&optional _ignored)
|
||||
(remove-hook 'company-completion-finished-hook company-callback t)
|
||||
(remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
|
||||
(remove-hook 'company-completion-finished-hook 'company-remove-callback t))
|
||||
@@ -2867,7 +2921,7 @@ successfully completes the input.
|
||||
Example: \(company-begin-with \\='\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
|
||||
(let ((begin-marker (copy-marker (point) t)))
|
||||
(company-begin-backend
|
||||
(lambda (command &optional arg &rest ignored)
|
||||
(lambda (command &optional arg &rest _ignored)
|
||||
(pcase command
|
||||
(`prefix
|
||||
(when (equal (point) (marker-position begin-marker))
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
This is company.info, produced by makeinfo version 6.7 from
|
||||
This is company.info, produced by makeinfo version 7.0.1 from
|
||||
company.texi.
|
||||
|
||||
This user manual is for Company version 0.9.14snapshot
|
||||
(28 December 2021).
|
||||
This user manual is for Company version 0.9.14snapshot (12 August 2022).
|
||||
|
||||
Copyright © 2021 Free Software Foundation, Inc.
|
||||
Copyright © 2021-2022 Free Software Foundation, Inc.
|
||||
|
||||
Permission is granted to copy, distribute and/or modify this
|
||||
document under the terms of the GNU Free Documentation License,
|
||||
@@ -27,10 +26,9 @@ The goal of this document is to lay out the foundational knowledge of
|
||||
the package, so that the readers of the manual could competently start
|
||||
adapting Company to their needs and preferences.
|
||||
|
||||
This user manual is for Company version 0.9.14snapshot
|
||||
(28 December 2021).
|
||||
This user manual is for Company version 0.9.14snapshot (12 August 2022).
|
||||
|
||||
Copyright © 2021 Free Software Foundation, Inc.
|
||||
Copyright © 2021-2022 Free Software Foundation, Inc.
|
||||
|
||||
Permission is granted to copy, distribute and/or modify this
|
||||
document under the terms of the GNU Free Documentation License,
|
||||
@@ -266,9 +264,12 @@ commands of the out-of-the-box Company.
|
||||
Cancel _company-mode_ activity (‘company-abort’).
|
||||
|
||||
‘C-h’
|
||||
‘<f1>’
|
||||
‘<F1>’
|
||||
Display a buffer with the documentation for the selected candidate
|
||||
(‘company-show-doc-buffer’).
|
||||
(‘company-show-doc-buffer’). With a prefix argument (‘C-u C-h’,
|
||||
‘C-u <F1>’), this command toggles between temporary showing the
|
||||
documentation and keeping the documentation buffer up-to-date
|
||||
whenever the selection changes.
|
||||
|
||||
‘C-w’
|
||||
Display a buffer with the definition of the selected candidate
|
||||
@@ -406,23 +407,24 @@ core settings that influence the overall behavior of the _company-mode_.
|
||||
enabled _company-mode_ in the mode line. The default value is
|
||||
‘company’.
|
||||
|
||||
-- User Option: company-auto-commit
|
||||
-- User Option: company-insertion-on-trigger
|
||||
One more pair of the user options may instruct Company to complete
|
||||
with the selected candidate by typing one of the
|
||||
‘company-auto-commit-chars’ (1). The user option
|
||||
‘company-auto-commit’ can be enabled or disabled by setting its
|
||||
value to one of: ‘nil’, ‘t’, or a predicate function name. *note
|
||||
Predicate: (eintr)Wrong Type of Argument.
|
||||
‘company-insertion-triggers’. The user option
|
||||
‘company-insertion-on-trigger’ can be enabled or disabled by
|
||||
setting its value to one of: ‘nil’, ‘t’, or a predicate function
|
||||
name. *note Predicate: (eintr)Wrong Type of Argument.
|
||||
|
||||
-- User Option: company-auto-commit-chars
|
||||
This option acts only when ‘company-auto-commit’ is enabled. The
|
||||
value can be one of: a string of characters, a list of syntax
|
||||
description characters (*note (elisp)Syntax Class Table::), or a
|
||||
predicate function. By default, ‘company-auto-commit-chars’ is set
|
||||
to the list of the syntax characters: ‘(?\ ?\) ?.)’, which
|
||||
-- User Option: company-insertion-triggers
|
||||
This option has an effect only when ‘company-insertion-on-trigger’
|
||||
is enabled. The value can be one of: a string of characters, a
|
||||
list of syntax description characters (*note (elisp)Syntax Class
|
||||
Table::), or a predicate function. By default, this user option is
|
||||
set to the list of the syntax characters: ‘(?\ ?\) ?.)’, which
|
||||
translates to the whitespaces, close parenthesis, and punctuation.
|
||||
The particular convenience of this user option values is they do
|
||||
not act as triggers when they are part of valid completion.
|
||||
It is safe to configure the value to a character that can
|
||||
potentially be part of a valid completion; in this case, Company
|
||||
does not treat such characters as triggers.
|
||||
|
||||
Hooks
|
||||
-----
|
||||
@@ -437,17 +439,6 @@ Company exposes the following life-cycle hooks:
|
||||
|
||||
-- User Option: company-after-completion-hook
|
||||
|
||||
---------- Footnotes ----------
|
||||
|
||||
(1) The options ‘company-auto-commit’ and ‘company-auto-commit-chars’
|
||||
used to be called ‘company-auto-complete’ and
|
||||
‘company-auto-complete-chars’ respectively, which was in more accordance
|
||||
with the terminology given in this manual. But the resulting
|
||||
combination of the words ‘auto-complete’ present in those names made it
|
||||
seem the role of these user options was to configure Company’s
|
||||
auto-start behavior. Hence, it was chosen to rename the options to,
|
||||
hopefully, less confusing names.
|
||||
|
||||
|
||||
File: company.info, Node: Frontends, Next: Backends, Prev: Customization, Up: Top
|
||||
|
||||
@@ -1342,7 +1333,7 @@ Key Index
|
||||
* C-p: Usage Basics. (line 12)
|
||||
* C-p <1>: Commands. (line 16)
|
||||
* C-s: Candidates Search. (line 6)
|
||||
* C-w: Commands. (line 39)
|
||||
* C-w: Commands. (line 41)
|
||||
* M-<digit>: Quick Access a Candidate.
|
||||
(line 6)
|
||||
* RET: Usage Basics. (line 15)
|
||||
@@ -1360,8 +1351,6 @@ Variable Index
|
||||
* Menu:
|
||||
|
||||
* company-after-completion-hook: Configuration File. (line 94)
|
||||
* company-auto-commit: Configuration File. (line 64)
|
||||
* company-auto-commit-chars: Configuration File. (line 72)
|
||||
* company-backends: Backends. (line 12)
|
||||
* company-backends <1>: Backends Usage Basics.
|
||||
(line 6)
|
||||
@@ -1374,18 +1363,20 @@ Variable Index
|
||||
* company-dabbrev-ignore-case: Text Completion. (line 47)
|
||||
* company-dabbrev-minimum-length: Text Completion. (line 13)
|
||||
* company-dabbrev-other-buffers: Text Completion. (line 23)
|
||||
* company-dot-icons-format: Tooltip Frontends. (line 179)
|
||||
* company-dot-icons-format: Tooltip Frontends. (line 176)
|
||||
* company-echo-truncate-lines: Echo Frontends. (line 33)
|
||||
* company-files-chop-trailing-slash: File Name Completion.
|
||||
(line 19)
|
||||
* company-files-exclusions: File Name Completion.
|
||||
(line 12)
|
||||
* company-format-margin-function: Tooltip Frontends. (line 153)
|
||||
* company-format-margin-function: Tooltip Frontends. (line 151)
|
||||
* company-frontends: Frontends. (line 6)
|
||||
* company-global-modes: Configuration File. (line 31)
|
||||
* company-icon-margin: Tooltip Frontends. (line 164)
|
||||
* company-icon-size: Tooltip Frontends. (line 164)
|
||||
* company-icon-margin: Tooltip Frontends. (line 162)
|
||||
* company-icon-size: Tooltip Frontends. (line 162)
|
||||
* company-idle-delay: Configuration File. (line 17)
|
||||
* company-insertion-on-trigger: Configuration File. (line 64)
|
||||
* company-insertion-triggers: Configuration File. (line 72)
|
||||
* company-ispell-dictionary: Text Completion. (line 84)
|
||||
* company-lighter-base: Configuration File. (line 59)
|
||||
* company-minimum-prefix-length: Configuration File. (line 9)
|
||||
@@ -1396,21 +1387,21 @@ Variable Index
|
||||
* company-search-regexp-function: Candidates Search. (line 13)
|
||||
* company-selection-wrap-around: Configuration File. (line 43)
|
||||
* company-show-quick-access: Quick Access a Candidate.
|
||||
(line 14)
|
||||
* company-text-face-extra-attributes: Tooltip Frontends. (line 192)
|
||||
* company-text-icons-add-background: Tooltip Frontends. (line 200)
|
||||
* company-text-icons-format: Tooltip Frontends. (line 171)
|
||||
* company-text-icons-mapping: Tooltip Frontends. (line 188)
|
||||
* company-tooltip-align-annotations: Tooltip Frontends. (line 52)
|
||||
* company-tooltip-flip-when-above: Tooltip Frontends. (line 99)
|
||||
* company-tooltip-idle-delay: Tooltip Frontends. (line 22)
|
||||
* company-tooltip-limit: Tooltip Frontends. (line 64)
|
||||
* company-tooltip-margin: Tooltip Frontends. (line 133)
|
||||
* company-tooltip-maximum-width: Tooltip Frontends. (line 126)
|
||||
* company-tooltip-minimum: Tooltip Frontends. (line 84)
|
||||
* company-tooltip-minimum-width: Tooltip Frontends. (line 111)
|
||||
* company-tooltip-offset-display: Tooltip Frontends. (line 74)
|
||||
* company-tooltip-width-grow-only: Tooltip Frontends. (line 121)
|
||||
(line 12)
|
||||
* company-text-face-extra-attributes: Tooltip Frontends. (line 189)
|
||||
* company-text-icons-add-background: Tooltip Frontends. (line 197)
|
||||
* company-text-icons-format: Tooltip Frontends. (line 169)
|
||||
* company-text-icons-mapping: Tooltip Frontends. (line 185)
|
||||
* company-tooltip-align-annotations: Tooltip Frontends. (line 51)
|
||||
* company-tooltip-flip-when-above: Tooltip Frontends. (line 98)
|
||||
* company-tooltip-idle-delay: Tooltip Frontends. (line 21)
|
||||
* company-tooltip-limit: Tooltip Frontends. (line 63)
|
||||
* company-tooltip-margin: Tooltip Frontends. (line 132)
|
||||
* company-tooltip-maximum-width: Tooltip Frontends. (line 125)
|
||||
* company-tooltip-minimum: Tooltip Frontends. (line 83)
|
||||
* company-tooltip-minimum-width: Tooltip Frontends. (line 110)
|
||||
* company-tooltip-offset-display: Tooltip Frontends. (line 73)
|
||||
* company-tooltip-width-grow-only: Tooltip Frontends. (line 120)
|
||||
* company-transformers: Candidates Post-Processing.
|
||||
(line 6)
|
||||
|
||||
@@ -1426,7 +1417,7 @@ Function Index
|
||||
* company-abbrev: Template Expansion. (line 6)
|
||||
* company-abort: Commands. (line 30)
|
||||
* company-begin-backend: Backends Usage Basics.
|
||||
(line 23)
|
||||
(line 22)
|
||||
* company-capf: Code Completion. (line 6)
|
||||
* company-clang: Code Completion. (line 36)
|
||||
* company-complete: Usage Basics. (line 10)
|
||||
@@ -1434,11 +1425,11 @@ Function Index
|
||||
* company-complete-selection: Commands. (line 21)
|
||||
* company-dabbrev: Text Completion. (line 6)
|
||||
* company-dabbrev-code: Code Completion. (line 25)
|
||||
* company-detect-icons-margin: Tooltip Frontends. (line 209)
|
||||
* company-detect-icons-margin: Tooltip Frontends. (line 206)
|
||||
* company-diag: Backends Usage Basics.
|
||||
(line 11)
|
||||
* company-diag <1>: Troubleshooting. (line 6)
|
||||
* company-dot-icons-margin: Tooltip Frontends. (line 178)
|
||||
* company-dot-icons-margin: Tooltip Frontends. (line 175)
|
||||
* company-echo-frontend: Echo Frontends. (line 21)
|
||||
* company-echo-metadata-frontend: Echo Frontends. (line 9)
|
||||
* company-echo-strip-common-frontend: Echo Frontends. (line 27)
|
||||
@@ -1453,11 +1444,11 @@ Function Index
|
||||
* company-preview-common-frontend: Preview Frontends. (line 21)
|
||||
* company-preview-frontend: Preview Frontends. (line 17)
|
||||
* company-preview-if-just-one-frontend: Preview Frontends. (line 10)
|
||||
* company-pseudo-tooltip-frontend: Tooltip Frontends. (line 17)
|
||||
* company-pseudo-tooltip-frontend: Tooltip Frontends. (line 16)
|
||||
* company-pseudo-tooltip-unless-just-one-frontend: Tooltip Frontends.
|
||||
(line 11)
|
||||
(line 10)
|
||||
* company-pseudo-tooltip-unless-just-one-frontend-with-delay: Tooltip Frontends.
|
||||
(line 21)
|
||||
(line 20)
|
||||
* company-search-flex-regexp: Candidates Search. (line 26)
|
||||
* company-search-words-in-any-order-regexp: Candidates Search.
|
||||
(line 23)
|
||||
@@ -1468,19 +1459,19 @@ Function Index
|
||||
* company-select-previous-or-abort: Commands. (line 16)
|
||||
* company-semantic: Code Completion. (line 41)
|
||||
* company-show-doc-buffer: Commands. (line 34)
|
||||
* company-show-location: Commands. (line 39)
|
||||
* company-show-location: Commands. (line 41)
|
||||
* company-sort-by-backend-importance: Candidates Post-Processing.
|
||||
(line 28)
|
||||
(line 27)
|
||||
* company-sort-by-occurrence: Candidates Post-Processing.
|
||||
(line 17)
|
||||
* company-sort-prefer-same-case-prefix: Candidates Post-Processing.
|
||||
(line 34)
|
||||
(line 33)
|
||||
* company-tempo: Template Expansion. (line 11)
|
||||
* company-text-icons-margin: Tooltip Frontends. (line 170)
|
||||
* company-text-icons-margin: Tooltip Frontends. (line 168)
|
||||
* company-tng-frontend: Structure. (line 26)
|
||||
* company-tng-mode: Structure. (line 26)
|
||||
* company-vscode-dark-icons-margin: Tooltip Frontends. (line 162)
|
||||
* company-vscode-light-icons-margin: Tooltip Frontends. (line 163)
|
||||
* company-vscode-dark-icons-margin: Tooltip Frontends. (line 160)
|
||||
* company-vscode-light-icons-margin: Tooltip Frontends. (line 161)
|
||||
* company-yasnippet: Template Expansion. (line 16)
|
||||
* global-company-mode: Initial Setup. (line 18)
|
||||
|
||||
@@ -1499,8 +1490,8 @@ Concept Index
|
||||
* activate: Initial Setup. (line 8)
|
||||
* active backend: Backends Usage Basics.
|
||||
(line 11)
|
||||
* active backend <1>: Troubleshooting. (line 15)
|
||||
* annotation: Tooltip Frontends. (line 53)
|
||||
* active backend <1>: Troubleshooting. (line 14)
|
||||
* annotation: Tooltip Frontends. (line 52)
|
||||
* auto-start: Initial Setup. (line 13)
|
||||
* backend: Structure. (line 6)
|
||||
* backend <1>: Structure. (line 10)
|
||||
@@ -1508,7 +1499,7 @@ Concept Index
|
||||
(line 11)
|
||||
* backend <3>: Backends Usage Basics.
|
||||
(line 14)
|
||||
* backend <4>: Troubleshooting. (line 15)
|
||||
* backend <4>: Troubleshooting. (line 14)
|
||||
* backends: Backends. (line 6)
|
||||
* backends <1>: Backends Usage Basics.
|
||||
(line 6)
|
||||
@@ -1516,7 +1507,7 @@ Concept Index
|
||||
* backends <3>: Package Backends. (line 6)
|
||||
* basics: Usage Basics. (line 6)
|
||||
* bug: Troubleshooting. (line 6)
|
||||
* bug <1>: Troubleshooting. (line 27)
|
||||
* bug <1>: Troubleshooting. (line 25)
|
||||
* bundled backends: Package Backends. (line 6)
|
||||
* cancel: Usage Basics. (line 20)
|
||||
* cancel <1>: Commands. (line 30)
|
||||
@@ -1524,16 +1515,16 @@ Concept Index
|
||||
* candidate <1>: Usage Basics. (line 12)
|
||||
* candidate <2>: Usage Basics. (line 15)
|
||||
* candidate <3>: Preview Frontends. (line 6)
|
||||
* color: Tooltip Frontends. (line 219)
|
||||
* color: Tooltip Frontends. (line 215)
|
||||
* color <1>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
(line 34)
|
||||
* common part: Usage Basics. (line 17)
|
||||
* common part <1>: Commands. (line 25)
|
||||
* common part <2>: Preview Frontends. (line 6)
|
||||
* company-echo: Echo Frontends. (line 6)
|
||||
* company-preview: Preview Frontends. (line 6)
|
||||
* company-tng: Structure. (line 26)
|
||||
* company-tooltip: Tooltip Frontends. (line 219)
|
||||
* company-tooltip: Tooltip Frontends. (line 215)
|
||||
* company-tooltip-search: Candidates Search. (line 6)
|
||||
* complete: Terminology. (line 6)
|
||||
* complete <1>: Usage Basics. (line 12)
|
||||
@@ -1549,29 +1540,29 @@ Concept Index
|
||||
* configure <1>: Customization Interface.
|
||||
(line 6)
|
||||
* configure <2>: Configuration File. (line 6)
|
||||
* configure <3>: Tooltip Frontends. (line 49)
|
||||
* configure <4>: Tooltip Frontends. (line 219)
|
||||
* configure <3>: Tooltip Frontends. (line 48)
|
||||
* configure <4>: Tooltip Frontends. (line 215)
|
||||
* configure <5>: Preview Frontends. (line 25)
|
||||
* configure <6>: Echo Frontends. (line 38)
|
||||
* configure <7>: Candidates Search. (line 30)
|
||||
* configure <8>: Quick Access a Candidate.
|
||||
(line 28)
|
||||
(line 25)
|
||||
* configure <9>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
(line 34)
|
||||
* custom: Customization. (line 6)
|
||||
* custom <1>: Customization Interface.
|
||||
(line 6)
|
||||
* custom <2>: Configuration File. (line 6)
|
||||
* custom <3>: Tooltip Frontends. (line 49)
|
||||
* custom <4>: Tooltip Frontends. (line 219)
|
||||
* custom <3>: Tooltip Frontends. (line 48)
|
||||
* custom <4>: Tooltip Frontends. (line 215)
|
||||
* custom <5>: Preview Frontends. (line 25)
|
||||
* custom <6>: Echo Frontends. (line 38)
|
||||
* custom <7>: Candidates Search. (line 30)
|
||||
* custom <8>: Quick Access a Candidate.
|
||||
(line 28)
|
||||
(line 25)
|
||||
* custom <9>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
* definition: Commands. (line 39)
|
||||
(line 34)
|
||||
* definition: Commands. (line 41)
|
||||
* distribution: Installation. (line 6)
|
||||
* doc: Commands. (line 34)
|
||||
* duplicate: Candidates Post-Processing.
|
||||
@@ -1579,10 +1570,10 @@ Concept Index
|
||||
* echo: Echo Frontends. (line 6)
|
||||
* enable: Initial Setup. (line 8)
|
||||
* error: Troubleshooting. (line 6)
|
||||
* error <1>: Troubleshooting. (line 27)
|
||||
* error <1>: Troubleshooting. (line 25)
|
||||
* expansion: Template Expansion. (line 6)
|
||||
* extensible: Structure. (line 6)
|
||||
* face: Tooltip Frontends. (line 219)
|
||||
* face: Tooltip Frontends. (line 215)
|
||||
* face <1>: Preview Frontends. (line 6)
|
||||
* face <2>: Preview Frontends. (line 25)
|
||||
* face <3>: Echo Frontends. (line 6)
|
||||
@@ -1591,35 +1582,35 @@ Concept Index
|
||||
* face <6>: Candidates Search. (line 30)
|
||||
* face <7>: Filter Candidates. (line 6)
|
||||
* face <8>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
(line 34)
|
||||
* filter: Filter Candidates. (line 6)
|
||||
* finish: Usage Basics. (line 20)
|
||||
* finish <1>: Commands. (line 30)
|
||||
* font: Tooltip Frontends. (line 219)
|
||||
* font: Tooltip Frontends. (line 215)
|
||||
* font <1>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
(line 34)
|
||||
* frontend: Structure. (line 6)
|
||||
* frontend <1>: Structure. (line 10)
|
||||
* frontends: Frontends. (line 6)
|
||||
* grouped backends: Grouped Backends. (line 6)
|
||||
* icon: Tooltip Frontends. (line 145)
|
||||
* icon: Tooltip Frontends. (line 144)
|
||||
* install: Installation. (line 6)
|
||||
* interface: Tooltip Frontends. (line 49)
|
||||
* interface <1>: Tooltip Frontends. (line 219)
|
||||
* interface: Tooltip Frontends. (line 48)
|
||||
* interface <1>: Tooltip Frontends. (line 215)
|
||||
* interface <2>: Preview Frontends. (line 25)
|
||||
* interface <3>: Echo Frontends. (line 38)
|
||||
* interface <4>: Candidates Search. (line 30)
|
||||
* interface <5>: Quick Access a Candidate.
|
||||
(line 37)
|
||||
(line 34)
|
||||
* intro: Initial Setup. (line 6)
|
||||
* issue: Troubleshooting. (line 6)
|
||||
* issue tracker: Troubleshooting. (line 27)
|
||||
* kind: Tooltip Frontends. (line 145)
|
||||
* location: Commands. (line 39)
|
||||
* issue tracker: Troubleshooting. (line 25)
|
||||
* kind: Tooltip Frontends. (line 144)
|
||||
* location: Commands. (line 41)
|
||||
* manual: Initial Setup. (line 8)
|
||||
* manual <1>: Usage Basics. (line 10)
|
||||
* margin: Tooltip Frontends. (line 134)
|
||||
* margin <1>: Tooltip Frontends. (line 154)
|
||||
* margin: Tooltip Frontends. (line 133)
|
||||
* margin <1>: Tooltip Frontends. (line 152)
|
||||
* minor-mode: Initial Setup. (line 6)
|
||||
* module: Structure. (line 6)
|
||||
* module <1>: Structure. (line 10)
|
||||
@@ -1651,7 +1642,7 @@ Concept Index
|
||||
* Tab and Go: Structure. (line 26)
|
||||
* template: Template Expansion. (line 6)
|
||||
* third-party: Structure. (line 10)
|
||||
* third-party <1>: Troubleshooting. (line 18)
|
||||
* third-party <1>: Troubleshooting. (line 17)
|
||||
* tooltip: Tooltip Frontends. (line 6)
|
||||
* troubleshoot: Troubleshooting. (line 6)
|
||||
* usage: Usage Basics. (line 6)
|
||||
@@ -1659,48 +1650,45 @@ Concept Index
|
||||
|
||||
|
||||
Tag Table:
|
||||
Node: Top569
|
||||
Node: Overview1994
|
||||
Node: Terminology2402
|
||||
Ref: Terminology-Footnote-13389
|
||||
Node: Structure3595
|
||||
Node: Getting Started5091
|
||||
Node: Installation5369
|
||||
Node: Initial Setup5752
|
||||
Node: Usage Basics6598
|
||||
Node: Commands7361
|
||||
Ref: Commands-Footnote-19579
|
||||
Node: Customization9746
|
||||
Node: Customization Interface10218
|
||||
Node: Configuration File10751
|
||||
Ref: company-auto-commit14058
|
||||
Ref: company-auto-commit-chars14480
|
||||
Ref: Configuration File-Footnote-115387
|
||||
Node: Frontends15901
|
||||
Node: Tooltip Frontends16870
|
||||
Ref: Tooltip Frontends-Footnote-127239
|
||||
Node: Preview Frontends27476
|
||||
Ref: Preview Frontends-Footnote-128732
|
||||
Node: Echo Frontends28859
|
||||
Node: Candidates Search30392
|
||||
Node: Filter Candidates31726
|
||||
Node: Quick Access a Candidate32506
|
||||
Node: Backends34124
|
||||
Node: Backends Usage Basics35222
|
||||
Ref: Backends Usage Basics-Footnote-136437
|
||||
Node: Grouped Backends36521
|
||||
Node: Package Backends38150
|
||||
Node: Code Completion39079
|
||||
Node: Text Completion41448
|
||||
Node: File Name Completion45882
|
||||
Node: Template Expansion47430
|
||||
Node: Candidates Post-Processing48149
|
||||
Node: Troubleshooting49626
|
||||
Node: Index51299
|
||||
Node: Key Index51462
|
||||
Node: Variable Index52961
|
||||
Node: Function Index57011
|
||||
Node: Concept Index61492
|
||||
Node: Top574
|
||||
Node: Overview2002
|
||||
Node: Terminology2410
|
||||
Ref: Terminology-Footnote-13397
|
||||
Node: Structure3603
|
||||
Node: Getting Started5099
|
||||
Node: Installation5377
|
||||
Node: Initial Setup5760
|
||||
Node: Usage Basics6606
|
||||
Node: Commands7369
|
||||
Ref: Commands-Footnote-19804
|
||||
Node: Customization9971
|
||||
Node: Customization Interface10443
|
||||
Node: Configuration File10976
|
||||
Node: Frontends15642
|
||||
Node: Tooltip Frontends16611
|
||||
Ref: Tooltip Frontends-Footnote-126980
|
||||
Node: Preview Frontends27217
|
||||
Ref: Preview Frontends-Footnote-128473
|
||||
Node: Echo Frontends28600
|
||||
Node: Candidates Search30133
|
||||
Node: Filter Candidates31467
|
||||
Node: Quick Access a Candidate32247
|
||||
Node: Backends33865
|
||||
Node: Backends Usage Basics34963
|
||||
Ref: Backends Usage Basics-Footnote-136178
|
||||
Node: Grouped Backends36262
|
||||
Node: Package Backends37891
|
||||
Node: Code Completion38820
|
||||
Node: Text Completion41189
|
||||
Node: File Name Completion45623
|
||||
Node: Template Expansion47171
|
||||
Node: Candidates Post-Processing47890
|
||||
Node: Troubleshooting49367
|
||||
Node: Index51040
|
||||
Node: Key Index51203
|
||||
Node: Variable Index52702
|
||||
Node: Function Index56752
|
||||
Node: Concept Index61233
|
||||
|
||||
End Tag Table
|
||||
|
||||
|
||||
BIN
lisp/company/images/small/echo-meta.png
Executable file
|
After Width: | Height: | Size: 42 KiB |
BIN
lisp/company/images/small/echo-qa.png
Executable file
|
After Width: | Height: | Size: 18 KiB |
BIN
lisp/company/images/small/echo-strip-qa.png
Executable file
|
After Width: | Height: | Size: 21 KiB |
BIN
lisp/company/images/small/echo-strip.png
Executable file
|
After Width: | Height: | Size: 15 KiB |
BIN
lisp/company/images/small/echo.png
Executable file
|
After Width: | Height: | Size: 16 KiB |
BIN
lisp/company/images/small/preview-dark.png
Executable file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
lisp/company/images/small/preview-light.png
Executable file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
lisp/company/images/small/tooltip-annotations.png
Executable file
|
After Width: | Height: | Size: 29 KiB |
BIN
lisp/company/images/small/tooltip-faces-light.png
Executable file
|
After Width: | Height: | Size: 14 KiB |
BIN
lisp/company/images/small/tooltip-filter.png
Executable file
|
After Width: | Height: | Size: 29 KiB |
BIN
lisp/company/images/small/tooltip-flip.png
Executable file
|
After Width: | Height: | Size: 33 KiB |
BIN
lisp/company/images/small/tooltip-icon-bg.png
Executable file
|
After Width: | Height: | Size: 25 KiB |
BIN
lisp/company/images/small/tooltip-icon-face.png
Executable file
|
After Width: | Height: | Size: 28 KiB |
BIN
lisp/company/images/small/tooltip-icons-dot.png
Executable file
|
After Width: | Height: | Size: 44 KiB |
BIN
lisp/company/images/small/tooltip-icons-text.png
Executable file
|
After Width: | Height: | Size: 41 KiB |
BIN
lisp/company/images/small/tooltip-icons-vscode.png
Executable file
|
After Width: | Height: | Size: 46 KiB |
BIN
lisp/company/images/small/tooltip-limit.png
Executable file
|
After Width: | Height: | Size: 21 KiB |
BIN
lisp/company/images/small/tooltip-margin.png
Executable file
|
After Width: | Height: | Size: 29 KiB |
BIN
lisp/company/images/small/tooltip-minimum-above.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
lisp/company/images/small/tooltip-minimum-below.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
lisp/company/images/small/tooltip-offset-display.png
Executable file
|
After Width: | Height: | Size: 28 KiB |
BIN
lisp/company/images/small/tooltip-qa-faces-light.png
Executable file
|
After Width: | Height: | Size: 26 KiB |
BIN
lisp/company/images/small/tooltip-quick-access.png
Executable file
|
After Width: | Height: | Size: 19 KiB |
BIN
lisp/company/images/small/tooltip-search.png
Executable file
|
After Width: | Height: | Size: 44 KiB |