mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
feat>(emacs): ace-link for info
This commit is contained in:
parent
3adca25f88
commit
ce2b447f15
2 changed files with 4 additions and 3 deletions
|
|
@ -2179,7 +2179,6 @@ Returns (<buffer> . <workspace-index>) or nil."
|
||||||
:after (lsp)
|
:after (lsp)
|
||||||
:init
|
:init
|
||||||
(setq lsp-ltex-version "15.2.0")
|
(setq lsp-ltex-version "15.2.0")
|
||||||
:config
|
|
||||||
(setq lsp-ltex-check-frequency "save"))
|
(setq lsp-ltex-check-frequency "save"))
|
||||||
|
|
||||||
(defun my/ltex-lang ()
|
(defun my/ltex-lang ()
|
||||||
|
|
@ -5744,7 +5743,8 @@ ENTRY is an instance of `elfeed-entry'."
|
||||||
(general-define-key
|
(general-define-key
|
||||||
:states '(normal)
|
:states '(normal)
|
||||||
:keymaps 'Info-mode-map
|
:keymaps 'Info-mode-map
|
||||||
(kbd "RET") 'Info-follow-nearest-node)
|
(kbd "RET") 'Info-follow-nearest-node
|
||||||
|
"f" #'ace-link-info)
|
||||||
|
|
||||||
(defun my/man-fix-width (&rest _)
|
(defun my/man-fix-width (&rest _)
|
||||||
(setq-local Man-width (- (window-width) 4)))
|
(setq-local Man-width (- (window-width) 4)))
|
||||||
|
|
|
||||||
|
|
@ -8129,7 +8129,8 @@ Of course, Emacs can also display man and info pages.
|
||||||
(general-define-key
|
(general-define-key
|
||||||
:states '(normal)
|
:states '(normal)
|
||||||
:keymaps 'Info-mode-map
|
:keymaps 'Info-mode-map
|
||||||
(kbd "RET") 'Info-follow-nearest-node)
|
(kbd "RET") 'Info-follow-nearest-node
|
||||||
|
"f" #'ace-link-info)
|
||||||
|
|
||||||
(defun my/man-fix-width (&rest _)
|
(defun my/man-fix-width (&rest _)
|
||||||
(setq-local Man-width (- (window-width) 4)))
|
(setq-local Man-width (- (window-width) 4)))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue