This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Code used in the demos at https://karthinks.com/software/avy-can-do-anything | |
| ;; Tweak as desired. | |
| (package-install 'avy) | |
| (setq avy-keys '(?q ?e ?r ?y ?u ?o ?p | |
| ?a ?s ?d ?f ?g ?h ?j | |
| ?k ?l ?' ?x ?c ?v ?b | |
| ?n ?, ?/)) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun toggle-maximize-buffer () "Maximize buffer" | |
| (interactive) | |
| (if (= 1 (length (window-list))) | |
| (jump-to-register '_) | |
| (progn | |
| (set-register '_ (list (current-window-configuration))) | |
| (delete-other-windows)))) | |
| ;; Bind it to a key. |