Improve bindings, esp. for UHK
This commit is contained in:
parent
672017b3ff
commit
434260729e
@ -57,11 +57,17 @@ Mark (+S=unmark): _<up>_:prev _<down>_:next _<left>_:skip prev _<right>_:skip ne
|
|||||||
("S" mc/sort-regions)
|
("S" mc/sort-regions)
|
||||||
|
|
||||||
("<down>" mc/mark-next-like-this)
|
("<down>" mc/mark-next-like-this)
|
||||||
|
("C-n" mc/mark-next-like-this)
|
||||||
("<up>" mc/mark-previous-like-this)
|
("<up>" mc/mark-previous-like-this)
|
||||||
|
("C-p" mc/mark-previous-like-this)
|
||||||
("S-<down>" mc/unmark-previous-like-this)
|
("S-<down>" mc/unmark-previous-like-this)
|
||||||
|
("C-S-n" mc/unmark-previous-like-this)
|
||||||
("S-<up>" mc/unmark-next-like-this)
|
("S-<up>" mc/unmark-next-like-this)
|
||||||
|
("C-S-p" mc/unmark-next-like-this)
|
||||||
("<right>" mc/skip-to-next-like-this)
|
("<right>" mc/skip-to-next-like-this)
|
||||||
|
("M-n" mc/skip-to-next-like-this)
|
||||||
("<left>" mc/skip-to-previous-like-this)
|
("<left>" mc/skip-to-previous-like-this)
|
||||||
|
("M-p" mc/skip-to-previous-like-this)
|
||||||
|
|
||||||
("<return>" nil))
|
("<return>" nil))
|
||||||
|
|
||||||
|
@ -245,6 +245,10 @@
|
|||||||
(use-package antlr-mode
|
(use-package antlr-mode
|
||||||
:mode "\\.g4\\'")
|
:mode "\\.g4\\'")
|
||||||
|
|
||||||
|
(use-package paragraphs
|
||||||
|
:bind (("M-p" . backward-paragraph)
|
||||||
|
("M-n" . forward-paragraph)))
|
||||||
|
|
||||||
;;;; external packages (required)
|
;;;; external packages (required)
|
||||||
(use-package company :ensure
|
(use-package company :ensure
|
||||||
:config
|
:config
|
||||||
@ -341,7 +345,7 @@
|
|||||||
(insert old-path))))
|
(insert old-path))))
|
||||||
|
|
||||||
(use-package ace-window :ensure
|
(use-package ace-window :ensure
|
||||||
:bind ("M-p" . ace-window))
|
:bind ("M-S-p" . ace-window))
|
||||||
|
|
||||||
(use-package undo-tree :ensure
|
(use-package undo-tree :ensure
|
||||||
:config
|
:config
|
||||||
@ -431,6 +435,9 @@
|
|||||||
(bind-key "C-x 2" 'split-window-below-i3)
|
(bind-key "C-x 2" 'split-window-below-i3)
|
||||||
(bind-key "C-x 3" 'split-window-right-i3))
|
(bind-key "C-x 3" 'split-window-right-i3))
|
||||||
|
|
||||||
|
(use-package crux :ensure
|
||||||
|
:bind (("C-a" . crux-move-beginning-of-line)))
|
||||||
|
|
||||||
(use-package lsp-mode :ensure
|
(use-package lsp-mode :ensure
|
||||||
:config
|
:config
|
||||||
(use-package company-lsp :ensure
|
(use-package company-lsp :ensure
|
||||||
|
Loading…
Reference in New Issue
Block a user