Skip to content

Commit

Permalink
Switch backward-kill-line from C-u to M-k so C-u can prefix again
Browse files Browse the repository at this point in the history
Let's C-u C-<spc> plus other C-u prefixed commands work again.
  • Loading branch information
nixme committed Dec 12, 2011
1 parent 85b7feb commit d0ac068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init-keybindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
(defun backward-kill-line (arg)
(interactive "p")
(kill-line 0))
(global-set-key (kbd "C-u") 'backward-kill-line)
(global-set-key (kbd "M-k") 'backward-kill-line)

;; alias C-h to backspace and redefine help key to C-x ? or C-c ?
(global-set-key (kbd "C-h") 'backward-delete-char-untabify)
Expand Down

0 comments on commit d0ac068

Please sign in to comment.