diff options
author | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-12 15:05:24 -0600 |
---|---|---|
committer | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-12 15:05:24 -0600 |
commit | b05de096968ca584714f643611429fc7fbcef400 (patch) | |
tree | f47688d91486a3ad4c39bbea2ae1f076e77f03b5 | |
parent | 09ef60ea0a1b23d65a75b8293a685010cfda8ab9 (diff) |
Turn on right-click menu
-rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -44,6 +44,9 @@ ;; Move through windows with Ctrl-<arrow keys> (windmove-default-keybindings 'control) ; You can use other modifiers here +;; Make right-click do something sensible +(context-menu-mode) + ;; Don't litter filesystem with *~ backup files; put them all inside ;; ~/.emacs.d/backup or wherever (defun bedrock--backup-file-name (fpath) @@ -87,7 +90,7 @@ If the new path's directories does not exist, create them." (setq completion-styles '(basic initials substring)) ; Different styles to match input to candidates (setq completion-auto-help 'always) ; Open completion always; `lazy' another option -(setq completions-max-height 20) ; This is arbitary +(setq completions-max-height 20) ; This is arbitrary (setq completions-detailed t) (setq completions-format 'one-column) (setq completions-group t) |