Created
July 17, 2012 12:28
-
-
Save magnars/3129159 to your computer and use it in GitHub Desktop.
Inverse of C-k
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(global-set-key (kbd "C-S-k") (lambda () (interactive) | |
(kill-region (save-excursion (beginning-of-line) (point)) | |
(point)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice! Thanks. :-)