Bind prelude-top-join-line to C-^
This commit is contained in:
parent
7bae87264f
commit
1393245cfa
2 changed files with 2 additions and 2 deletions
|
@ -197,7 +197,7 @@ Keybinding | Description
|
||||||
<kbd>C-+</kbd> | Increase font size(`text-scale-increase`).
|
<kbd>C-+</kbd> | Increase font size(`text-scale-increase`).
|
||||||
<kbd>C--</kbd> | Decrease font size(`text-scale-decrease`).
|
<kbd>C--</kbd> | Decrease font size(`text-scale-decrease`).
|
||||||
<kbd>C-x O</kbd> | Go back to previous window (the inverse of `other-window` (`C-x o`)).
|
<kbd>C-x O</kbd> | Go back to previous window (the inverse of `other-window` (`C-x o`)).
|
||||||
<kbd>M-^</kbd> | Join two lines into one(`prelude-top-join-line`).
|
<kbd>C-^</kbd> | Join two lines into one(`prelude-top-join-line`).
|
||||||
<kbd>C-x p</kbd> | Start `proced` (manage processes from Emacs; works only in Linux).
|
<kbd>C-x p</kbd> | Start `proced` (manage processes from Emacs; works only in Linux).
|
||||||
<kbd>C-x m</kbd> | Start `eshell`.
|
<kbd>C-x m</kbd> | Start `eshell`.
|
||||||
<kbd>C-x M-m</kbd> | Start your default shell.
|
<kbd>C-x M-m</kbd> | Start your default shell.
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
(other-window -1))) ;; back one
|
(other-window -1))) ;; back one
|
||||||
|
|
||||||
;; Indentation help
|
;; Indentation help
|
||||||
(global-set-key (kbd "M-^") 'prelude-top-join-line)
|
(global-set-key (kbd "C-^") 'prelude-top-join-line)
|
||||||
|
|
||||||
;; Start proced in a similar manner to dired
|
;; Start proced in a similar manner to dired
|
||||||
(global-set-key (kbd "C-x p") 'proced)
|
(global-set-key (kbd "C-x p") 'proced)
|
||||||
|
|
Loading…
Reference in a new issue