diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-03 15:07:31 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-06-03 15:07:31 -0400 |
commit | 2131ce1945ca1e54544b0ea44ca9f407884b08f8 (patch) | |
tree | e8927dcd779ff3f428deecdacf776e5a777707ba /init.el | |
parent | Redo decsription for movement keybinds for clarity (diff) | |
download | mmosmacs-2131ce1945ca1e54544b0ea44ca9f407884b08f8.tar.gz mmosmacs-2131ce1945ca1e54544b0ea44ca9f407884b08f8.tar.bz2 mmosmacs-2131ce1945ca1e54544b0ea44ca9f407884b08f8.zip |
Add keybinds to switch window and buffer
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1224,6 +1224,20 @@ | |||
1224 | 1224 | ||
1225 | 1225 | ||
1226 | ;; --------------------------------- | 1226 | ;; --------------------------------- |
1227 | ;; Buffer / Window Management | ||
1228 | ;; -------------------------- | ||
1229 | ;; Make managing buffers and windows | ||
1230 | ;; more efficient. | ||
1231 | ;; --------------------------------- | ||
1232 | |||
1233 | ;; Switch buffers | ||
1234 | (global-set-key (kbd "s-b") 'switch-to-buffer) | ||
1235 | |||
1236 | ;; Switch windows | ||
1237 | (global-set-key (kbd "s-w") 'other-window) | ||
1238 | |||
1239 | |||
1240 | ;; --------------------------------- | ||
1227 | ;; Insert date/time at POINT | 1241 | ;; Insert date/time at POINT |
1228 | ;; ------------------------- | 1242 | ;; ------------------------- |
1229 | ;; [YYYY-MM-DD HH:mm] | 1243 | ;; [YYYY-MM-DD HH:mm] |