removing straight from management
This commit is contained in:
parent
cab5f37f4f
commit
17176c4183
851 changed files with 0 additions and 20150 deletions
|
@ -1,18 +0,0 @@
|
|||
This is the file .../info/dir, which contains the
|
||||
topmost node of the Info hierarchy, called (dir)Top.
|
||||
The first time you invoke Info you start off looking at this node.
|
||||
|
||||
File: dir, Node: Top This is the top of the INFO tree
|
||||
|
||||
This (the Directory node) gives a menu of major topics.
|
||||
Typing "q" exits, "H" lists all Info commands, "d" returns here,
|
||||
"h" gives a primer for first-timers,
|
||||
"mEmacs<Return>" visits the Emacs manual, etc.
|
||||
|
||||
In Emacs, you can click mouse button 2 on a menu item or cross reference
|
||||
to select it.
|
||||
|
||||
* Menu:
|
||||
|
||||
Emacs
|
||||
* Marginalia: (marginalia). Marginalia in the minibuffer.
|
|
@ -1,49 +0,0 @@
|
|||
;;; marginalia-autoloads.el --- automatically extracted autoloads -*- lexical-binding: t -*-
|
||||
;;
|
||||
;;; Code:
|
||||
|
||||
|
||||
;;;### (autoloads nil "marginalia" "marginalia.el" (0 0 0 0))
|
||||
;;; Generated autoloads from marginalia.el
|
||||
|
||||
(defvar marginalia-mode nil "\
|
||||
Non-nil if Marginalia mode is enabled.
|
||||
See the `marginalia-mode' command
|
||||
for a description of this minor mode.
|
||||
Setting this variable directly does not take effect;
|
||||
either customize it (see the info node `Easy Customization')
|
||||
or call the function `marginalia-mode'.")
|
||||
|
||||
(custom-autoload 'marginalia-mode "marginalia" nil)
|
||||
|
||||
(autoload 'marginalia-mode "marginalia" "\
|
||||
Annotate completion candidates with richer information.
|
||||
|
||||
If called interactively, toggle `Marginalia mode'. If the prefix
|
||||
argument is positive, enable the mode, and if it is zero or
|
||||
negative, disable the mode.
|
||||
|
||||
If called from Lisp, toggle the mode if ARG is `toggle'. Enable
|
||||
the mode if ARG is nil, omitted, or is a positive number.
|
||||
Disable the mode if ARG is a negative number.
|
||||
|
||||
The mode's hook is called both when the mode is enabled and when
|
||||
it is disabled.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'marginalia-cycle "marginalia" "\
|
||||
Cycle between annotators in `marginalia-annotators'." t nil)
|
||||
|
||||
(register-definition-prefixes "marginalia" '("marginalia-"))
|
||||
|
||||
;;;***
|
||||
|
||||
(provide 'marginalia-autoloads)
|
||||
;; Local Variables:
|
||||
;; version-control: never
|
||||
;; no-byte-compile: t
|
||||
;; no-update-autoloads: t
|
||||
;; coding: utf-8
|
||||
;; End:
|
||||
;;; marginalia-autoloads.el ends here
|
|
@ -1 +0,0 @@
|
|||
/home/chris/.personal-emacs/straight/repos/marginalia/marginalia.el
|
Binary file not shown.
|
@ -1,103 +0,0 @@
|
|||
This is marginalia.info, produced by makeinfo version 6.7 from
|
||||
marginalia.texi.
|
||||
|
||||
INFO-DIR-SECTION Emacs
|
||||
START-INFO-DIR-ENTRY
|
||||
* Marginalia: (marginalia). Marginalia in the minibuffer.
|
||||
END-INFO-DIR-ENTRY
|
||||
|
||||
|
||||
File: marginalia.info, Node: Top, Next: Introduction, Up: (dir)
|
||||
|
||||
marginalia.el - Marginalia in the minibuffer
|
||||
********************************************
|
||||
|
||||
* Menu:
|
||||
|
||||
* Introduction::
|
||||
* Configuration::
|
||||
|
||||
|
||||
File: marginalia.info, Node: Introduction, Next: Configuration, Prev: Top, Up: Top
|
||||
|
||||
1 Introduction
|
||||
**************
|
||||
|
||||
This package provides ‘marginalia-mode’ which adds marginalia to the
|
||||
minibuffer completions. Marginalia
|
||||
(https://en.wikipedia.org/wiki/Marginalia) are marks or annotations
|
||||
placed at the margin of the page of a book or in this case helpful
|
||||
colorful annotations placed at the margin of the minibuffer for your
|
||||
completion candidates. Marginalia can only add annotations to be
|
||||
displayed with the completion candidates. It cannot modify the
|
||||
appearance of the candidates themselves, which are shown as supplied by
|
||||
the original commands.
|
||||
|
||||
The annotations are added based on the completion category. For
|
||||
example ‘find-file’ reports the ‘file’ category and ‘M-x’ reports the
|
||||
‘command’ category. You can choose between more or less detailed
|
||||
annotators, by setting the variable ‘marginalia-annotators’ or by
|
||||
invoking the command ‘marginalia-cycle’.
|
||||
|
||||
Since many commands do not report a completion category themselves,
|
||||
Marginalia provides a classifier system, which tries to guess the
|
||||
correct category based for example on the prompt (see the variable
|
||||
‘marginalia-prompt-categories’). Usually these heuristic classifiers
|
||||
work well, but if they do not there is always the possibility to
|
||||
overwrite categories by command name. This way you can associate a
|
||||
fixed category with the completion initiated by the command (see the
|
||||
variable ‘marginalia-command-categories’). The list of available
|
||||
classifiers is specified by the variable ‘marginalia-classifiers’.
|
||||
|
||||
|
||||
File: marginalia.info, Node: Configuration, Prev: Introduction, Up: Top
|
||||
|
||||
2 Configuration
|
||||
***************
|
||||
|
||||
It is recommended to use Marginalia together with either the Selectrum
|
||||
(https://github.com/raxod502/selectrum) or the Icomplete-vertical
|
||||
(https://github.com/oantolin/icomplete-vertical) completion system.
|
||||
Furthermore Marginalia can be combined with Embark
|
||||
(https://github.com/oantolin/embark) for action support and Consult
|
||||
(https://github.com/minad/consult), which provides many useful commands.
|
||||
|
||||
;; Enable richer annotations using the Marginalia package
|
||||
(use-package marginalia
|
||||
;; Either bind `marginalia-cycle` globally or only in the minibuffer
|
||||
:bind (("M-A" . marginalia-cycle)
|
||||
:map minibuffer-local-map
|
||||
("M-A" . marginalia-cycle))
|
||||
|
||||
;; The :init configuration is always executed (Not lazy!)
|
||||
:init
|
||||
|
||||
;; Must be in the :init section of use-package such that the mode gets
|
||||
;; enabled right away. Note that this forces loading the package.
|
||||
(marginalia-mode)
|
||||
|
||||
;; When using Selectrum, ensure that Selectrum is refreshed when cycling annotations.
|
||||
(advice-add #'marginalia-cycle :after
|
||||
(lambda () (when (bound-and-true-p selectrum-mode) (selectrum-exhibit))))
|
||||
|
||||
;; Prefer richer, more heavy, annotations over the lighter default variant.
|
||||
;; E.g. M-x will show the documentation string additional to the keybinding.
|
||||
;; By default only the keybinding is shown as annotation.
|
||||
;; Note that there is the command `marginalia-cycle' to
|
||||
;; switch between the annotators.
|
||||
;; (setq marginalia-annotators '(marginalia-annotators-heavy marginalia-annotators-light nil))
|
||||
)
|
||||
|
||||
|
||||
|
||||
Tag Table:
|
||||
Node: Top203
|
||||
Node: Introduction409
|
||||
Node: Configuration2027
|
||||
|
||||
End Tag Table
|
||||
|
||||
|
||||
Local Variables:
|
||||
coding: utf-8
|
||||
End:
|
|
@ -1 +0,0 @@
|
|||
/home/chris/.personal-emacs/straight/repos/marginalia/marginalia.texi
|
Loading…
Add table
Add a link
Reference in a new issue