aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-03-12 15:05:24 -0600
committerAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-03-12 15:05:24 -0600
commitb05de096968ca584714f643611429fc7fbcef400 (patch)
treef47688d91486a3ad4c39bbea2ae1f076e77f03b5
parent09ef60ea0a1b23d65a75b8293a685010cfda8ab9 (diff)
Turn on right-click menu
-rw-r--r--init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/init.el b/init.el
index 9a3096c..2a4e17c 100644
--- a/init.el
+++ b/init.el
@@ -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)