diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-20 13:23:36 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-20 13:23:36 -0400 |
commit | 07a4934e7c142543285547702709f3c1b9681394 (patch) | |
tree | adc5e729a4739b3cee423431ec5058b4265291d9 /init.el | |
parent | Start Emacs server at end of startup (diff) | |
download | mmosmacs-07a4934e7c142543285547702709f3c1b9681394.tar.gz mmosmacs-07a4934e7c142543285547702709f3c1b9681394.tar.bz2 mmosmacs-07a4934e7c142543285547702709f3c1b9681394.zip |
Switch `S-<home>` keybind to `C-<home>` to fix shift-select behavior
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ;; --------------------------------- |