Remove v to automatically select the text object

While it seemed like a good idea at the time, shaving off this one
keystroke means you can't select a smaller aspect.
This commit is contained in:
Howard Abrams 2023-04-19 08:59:42 -07:00
parent 40041912f9
commit 78f5044e18

View file

@ -122,11 +122,13 @@ My primary use-case is for its refactoring and other unique features. For instan
:config :config
(evil-define-key 'normal emacs-lisp-mode-map (evil-define-key 'normal emacs-lisp-mode-map
;; Use C-SPC to mark single letter, as these seem to be nicer expansions: ;; Use C-SPC to mark single letter, as these seem to be nicer expansions:
"v" 'lispy-mark-symbol ; Mark larger section at first?
"M-v" 'lispy-mark ; Mark entire s-expression "M-v" 'lispy-mark ; Mark entire s-expression
"g f" 'lispy-ace-paren "g f" 'lispy-ace-paren
"g F" 'lispy-ace-symbol) "g F" 'lispy-ace-symbol)
(evil-define-key 'visual emacs-lisp-mode-map
"o" 'lispy-mark-symbol) ; Mark symbol since "o" doesn't do anything
(ha-elisp-leader (ha-elisp-leader
"r i" '("cond→if" . lispy-to-ifs) "r i" '("cond→if" . lispy-to-ifs)
"r c" '("if→cond" . lispy-to-cond) "r c" '("if→cond" . lispy-to-cond)