mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
feature/evil: fix evil keybindings in help popups
This commit is contained in:
3
TODO.org
3
TODO.org
@ -89,7 +89,7 @@
|
|||||||
+ [ ] twitter
|
+ [ ] twitter
|
||||||
+ [ ] present
|
+ [ ] present
|
||||||
|
|
||||||
** 2.0.3 [4/18]
|
** 2.0.3 [5/19]
|
||||||
+ [ ] lang/org: fix janky visual line motions (~evil-next-visual-line~, etc)
|
+ [ ] lang/org: fix janky visual line motions (~evil-next-visual-line~, etc)
|
||||||
+ [ ] lang/org: fix janky cursor positioning when manipulating org-table cells
|
+ [ ] lang/org: fix janky cursor positioning when manipulating org-table cells
|
||||||
+ [ ] lang/org: don't move cursor when realigning org tables
|
+ [ ] lang/org: don't move cursor when realigning org tables
|
||||||
@ -106,6 +106,7 @@
|
|||||||
+ [ ] tools/upload: add ~+upload/open-remote-file~ command to open current file
|
+ [ ] tools/upload: add ~+upload/open-remote-file~ command to open current file
|
||||||
on the remote (with TRAMP)
|
on the remote (with TRAMP)
|
||||||
+ [ ] tools/regex: PCRE regex editor, maybe ~re-builder~ & ~pcre2el~?
|
+ [ ] tools/regex: PCRE regex editor, maybe ~re-builder~ & ~pcre2el~?
|
||||||
|
+ [X] Fix evil normal-mode keybindings in help-mode popups
|
||||||
+ [X] Fix help-mode links opening new popups #ui
|
+ [X] Fix help-mode links opening new popups #ui
|
||||||
Added ~:noclone~ property to popup rules
|
Added ~:noclone~ property to popup rules
|
||||||
+ [X] Different faces for buffer path and file name #ui
|
+ [X] Different faces for buffer path and file name #ui
|
||||||
|
@ -75,6 +75,8 @@
|
|||||||
|
|
||||||
(dolist (mode '(tabulated-list-mode view-mode comint-mode term-mode calendar-mode Man-mode grep-mode))
|
(dolist (mode '(tabulated-list-mode view-mode comint-mode term-mode calendar-mode Man-mode grep-mode))
|
||||||
(evil-set-initial-state mode 'emacs))
|
(evil-set-initial-state mode 'emacs))
|
||||||
|
(dolist (mode '(help-mode))
|
||||||
|
(evil-set-initial-state mode 'normal))
|
||||||
|
|
||||||
;; make `try-expand-dabbrev' from `hippie-expand' work in mini-buffer
|
;; make `try-expand-dabbrev' from `hippie-expand' work in mini-buffer
|
||||||
;; @see `he-dabbrev-beg', so we need re-define syntax for '/'
|
;; @see `he-dabbrev-beg', so we need re-define syntax for '/'
|
||||||
|
Reference in New Issue
Block a user