Compare commits

...

2 Commits

Author SHA1 Message Date
d9676f092b Remove superfluous `add-hook' form 2024-09-04 10:17:50 +02:00
6b1d0f17d7 Remove obscure sentence. 2024-09-04 10:17:13 +02:00

View File

@ -107,8 +107,7 @@ The [[https://github.com/bdarcus/citar][Citar]] extension package provides quick
bibliographic entries, and the option to run different commands on those
selections. [[https://github.com/bdarcus/citar][Citar]] exploits the extension package [[https://github.com/minad/vertico][Vertico]]. The [[https://github.com/andras-simonyi/citeproc-el][CiteProc]]
extension package provides [[https://citationstyles.org/][CSL: citation style language]] processing capabilities
to [[https://github.com/bdarcus/citar][Citar]] and [[https://orgmode.org/][Org Mode]]. A curated repository of CSL styles is the [[https://github.com/citation-style-language/styles#readme][citation style
language repository]].
to [[https://github.com/bdarcus/citar][Citar]] and [[https://orgmode.org/][Org Mode]].
The [[https://github.com/vedang/pdf-tools][PDF-Tools]] extension package renders [[https://en.wikipedia.org/wiki/PDF][PDF]] file with the possibility to
annotate the file or to click on anchors in the [[https://en.wikipedia.org/wiki/PDF][PDF]] file that link back to the
@ -3735,8 +3734,7 @@ Return \"Front Matter\" when current page is above the first headline."
[[https://github.com/joaotavora/eglot#readme][Emacs polyGLOT (Eglot)]] is an Emacs language-server-protocol client that stays
out of your way. [[info:eglot#Top][Eglot (info)]] is a builtin since Emacs-29.1. The following
listings set up [[https://github.com/joaotavora/eglot][Eglot]]:
1. Listing [[lst:minimal-eglot-setup][minimal Eglot setup]] adds key bindings to =eglot-mode-keymap= and
ensures automatic [[https://github.com/joaotavora/eglot][Eglot]] startup in case of visiting files in =python-mode=.
1. Listing [[lst:minimal-eglot-setup][minimal Eglot setup]] adds key bindings to =eglot-mode-keymap=.
2. Listing [[lst:setup-oglot]] uses [[https://github.com/gav451/oglot#][oglot]] to enable using [[https://github.com/joaotavora/eglot][Eglot]] in =org-src-mode=
Python buffers.
@ -3748,8 +3746,6 @@ listings set up [[https://github.com/joaotavora/eglot][Eglot]]:
(keymap-set eglot-mode-map "C-c n" 'flymake-goto-next-error)
(keymap-set eglot-mode-map "C-c p" 'flymake-goto-prev-error)
(keymap-set eglot-mode-map "C-c r" 'eglot-rename))
(add-hook 'python-mode-hook #'eglot-ensure)
#+end_src
#+caption: Setup ~oglot~ for ~python-mode~.