diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-30 22:50:27 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-30 22:50:27 -0400 |
commit | de7b35831090d50142e3da78cb3d9aeb1a111efd (patch) | |
tree | 478813b93a1a9554805271d64521840004192dec | |
parent | Add a few `helpful-` keybinds (diff) | |
download | mmosmacs-de7b35831090d50142e3da78cb3d9aeb1a111efd.tar.gz mmosmacs-de7b35831090d50142e3da78cb3d9aeb1a111efd.tar.bz2 mmosmacs-de7b35831090d50142e3da78cb3d9aeb1a111efd.zip |
Change `comment-line` keybind from `M-;` to `C-;`
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1271,7 +1271,7 @@ | |||
1271 | ;; each line separately. | 1271 | ;; each line separately. |
1272 | ;; --------------------------------- | 1272 | ;; --------------------------------- |
1273 | 1273 | ||
1274 | (global-set-key (kbd "M-;") 'comment-line) | 1274 | (global-set-key (kbd "C-;") 'comment-line) |
1275 | (global-set-key (kbd "C-M-;") 'comment-or-uncomment-region) | 1275 | (global-set-key (kbd "C-M-;") 'comment-or-uncomment-region) |
1276 | 1276 | ||
1277 | 1277 | ||