Emacsには、デフォルトでカーソル位置から行頭まで削除(キル)するキーバインドが設定されていません。 C-u 0 C-kとかM-0 C-kでできます*1が、個人的によく使う機能なので1ストロークでいきたいですね。 なんかやり方ないかなーと探していたら、こんな便利なものがあるじゃない! ;; define the function to kill the characters from the cursor ;; to the beginning of the current line (defun backward-kill-line (arg) "Kill chars backward until encountering the end of a line." (interactive "p") (kill-line 0)) EmacsWiki: Backward Kill Line