2

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.

Eric
  • 21
  • 1

3 Answers3

2

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

Dennis Williamson
  • 60,515
  • 14
  • 113
  • 148
1

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

mfinni
  • 35,711
  • 3
  • 50
  • 86
0

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.

DerfK
  • 19,313
  • 2
  • 35
  • 51