I mean when the cursor is on the left side of the words ,I would like to remove the words on the immediate right side of it . CTR+k remove everything on the right side, i only want one word to be removed.

link|improve this question
feedback

3 Answers

Many keyboards will work with Alt as Meta so you can press Alt-d.

link|improve this answer
feedback

In my bash shells, I hit ESC and 'd'.

link|improve this answer
feedback

Bash tends to use libreadline for commandline input, so you can create an inputrc file that lets you control what keystrokes do what. man readline 3 should explain the format, you can also find this in the READLINE section of bash's manpage (the specific command you want is kill-word)

zsh doesn't use libreadline apparently, but it seems they've mimicked a lot of the functionality. It looks like there are some options to mimic bash's word matching, but you'll need to bind them to a key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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