vote up 1 vote down star

Possible Duplicate:
Emacs: how to delete text without kill ring?

I am sick of everything i 'delete' in emacs being added to the kill-ring; it always means i must M-y twice to move past what i just deleted to get what i was going to paste!

is there an easy way to actually 'delete' what i select rather than add it to the kill-ring? How do other people deal with this problem? doesn't it annoy you too that what you 'delete' is added to the kill-ring?

flag

79% accept rate
1  
Isn't the first question in the related list an exact duplicate - stackoverflow.com/questions/637351/… – dbr Aug 10 at 21:50
ah, i see, yes, a mod can feel free to delete this question then :) – banister Aug 10 at 21:54

closed as exact duplicate by nos, dbr, dmckee, Trey Jackson, T.E.D. Aug 10 at 22:26

1 Answer

vote up 5 vote down

Sure. Whereas C-w by default performs a (kill-region) you could instead perform a (delete-region) — and likewise for kill-whole-line, kill-word, and any other sort of killing you might otherwise have planned.

You could do a delete-region by hitting M-x and then typing it out, though that seems to undo the savings of the extra M-y you have to perform now, so binding the delete- functions to... some keys... of some kind... would probably be preferable.

link|flag

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