aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-20 13:23:36 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-20 13:23:36 -0400
commit07a4934e7c142543285547702709f3c1b9681394 (patch)
treeadc5e729a4739b3cee423431ec5058b4265291d9
parentStart Emacs server at end of startup (diff)
downloadmmosmacs-07a4934e7c142543285547702709f3c1b9681394.tar.gz
mmosmacs-07a4934e7c142543285547702709f3c1b9681394.tar.bz2
mmosmacs-07a4934e7c142543285547702709f3c1b9681394.zip
Switch `S-<home>` keybind to `C-<home>` to fix shift-select behavior
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el
index ae2036a..5437cdf 100644
--- a/init.el
+++ b/init.el
@@ -851,7 +851,7 @@
851(global-set-key (kbd "<home>") 'beginning-of-line-text) 851(global-set-key (kbd "<home>") 'beginning-of-line-text)
852 852
853;; Use Shift + HOME for old behavior 853;; Use Shift + HOME for old behavior
854(global-set-key (kbd "S-<home>") 'beginning-of-visual-line) 854(global-set-key (kbd "C-<home>") 'beginning-of-visual-line)
855 855
856 856
857;; --------------------------------- 857;; ---------------------------------