Compare commits

...

3 Commits

Author SHA1 Message Date
d30669571c
Remove some unused key binding 2023-02-18 12:16:02 +01:00
25912eeb3d
Allow help to reuse the current buffer
When following links in the help buffer, inhibiting reuse of the current buffer
pops up a new one, but still updates the current buffer with the followed link.
The result is having two buffers with the same content, usually side by side.
2023-02-18 12:15:02 +01:00
0c2a30a8c2
Add additional information for detaul completion
Only the value for `completions-detailed` is non-default, the rest has only been
included for reference's sake.

Note that these configurations currently do not effect, as ivy and counsel do
not honor them.
2023-02-18 12:08:06 +01:00

View File

@ -248,7 +248,6 @@
(when (package-installed-p 'counsel)
(bind-key "M-x" #'counsel-M-x) ; gets nicer sorting with smex installed
(bind-key "C-c r" #'counsel-recentf)
(bind-key "C-x C-f" #'counsel-find-file)
(bind-key "C-h f" #'counsel-describe-function)
(bind-key "C-h v" #'counsel-describe-variable)
@ -420,6 +419,10 @@
face minibuffer-prompt
cursor-intangible t))
(setq suggest-key-bindings t
extended-command-suggest-shorter t
completions-detailed t)
;; Make M-v undo C-v
(setq scroll-preserve-screen-position 'always)
@ -630,8 +633,7 @@
(add-to-list 'display-buffer-alist
'("^\\*Help\\*"
(display-buffer-reuse-window
display-buffer-pop-up-window)
(inhibit-same-window . t)))
display-buffer-pop-up-window)))
;; Inspired by masteringemacs
(add-to-list 'display-buffer-alist
'("^\\*e?shell\\*"