vote up 0 vote down star

I run the following command in Emacs unsuccessfully

C-u

How can you clear the beginning of a line in Emacs?

flag

What do you mean by the "beginning" of a line? – allyourcode May 4 at 1:22

5 Answers

vote up 6 vote down check

You can set the mark, go to the beginning, kill till mark:

C-Spc C-a C-w
link|flag
@Svante: Thank you for your answer! – Masi May 4 at 1:57
vote up 5 vote down

C-u works in Bash "Emacs Mode", but not actually in Emacs. Here's what I usually do:

C-a C-k

But this is really only good if you want to kill the whole line. Svante's advice will clear from the beginning of the line to where your cursor was, as you asked for.

link|flag
vote up 0 vote down

I don't know, where you read about C-u, but it is bound to the universal argument in Emacs.

If you want to kill the whole line, call kill-whole-line which is bound C-S-backspace. No matter at what column is the cursor, it will kill the whole line from beginning to end.

link|flag
Do you mean Ctrl-Shift-backspace? It does not work for me. – Masi May 4 at 10:49
Yes. Maybe your terminal does not support that sequence but you can always type M-x kill-whole-line or set your own shortcut with (global-set-key [C-S-backspace] 'kill-whole-line). – Török Gábor May 4 at 11:02
vote up 0 vote down

I have a small function bound to a key-chord:

(defun kill-start-of-line ()
"kill from point to start of line"
  (interactive)
  (kill-line 0)
)

(define-key global-map "\M-#" 'kill-start-of-line)

M-# is usually Alt-Shift-3, not a new DotNet language

I'm sure I saw this somewhere else, but didn't save the original reference.

link|flag
vote up 0 vote down

You can also accomplish this by using a prefix arg for kill-ine (usually C-k). From the Emacs help (C-h k C-k):

With zero argument, kills the text before point on the current line.

So, you can do

C-u 0 C-k

or even better

C-0 C-k
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.