gave up on meow / god mode, just using ';' now

This commit is contained in:
2026-07-30 19:06:14 +02:00
parent 977e0e7690
commit 93ff4a2e36
19 changed files with 1385 additions and 448 deletions
+10
View File
@@ -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))))))