gave up on meow / god mode, just using ';' now
This commit is contained in:
@@ -27,3 +27,13 @@ When INCLUSIVE is non-nil, include the character at the end point."
|
||||
(interactive)
|
||||
(my/avy-region 'avy-goto-line)
|
||||
(forward-line 1))
|
||||
|
||||
(defun my/another-select-exact-string (str)
|
||||
"Prompt for a string and select its exact match using avy."
|
||||
(interactive "sSelect target: ")
|
||||
(avy-with my/select-exact-string
|
||||
(avy-jump (regexp-quote str)
|
||||
:action (lambda (pt)
|
||||
(goto-char pt)
|
||||
(set-mark pt)
|
||||
(forward-char (length str))))))
|
||||
|
||||
Reference in New Issue
Block a user