vote up 1 vote down star

I want to change the delimiters bash (or readline) uses to separate words. Specifically I want to make '-' not delimit words, so that if I have the text

ls some-file

and I press Alt-Backspace it deletes the entire some-file text and not just up to the '-' char. This will also cause deletions of long flags like --group-directories-first faster and easier, needing only one key-press.

I believe that this is how zsh behaves and I'd like to make bash behave in the same way.

flag
The '-' character has a special meaning in a command line, so the default behaviour isn't surprising. If you can change it, will there be any side effects? Suppose you had typed 'ls -al some-file', would you want to delete everything? – pavium Aug 31 at 12:35
@pavium in that case I'd want some-file to be deleted at first, and when pressed a second time I'd want -al to be deleted. – spatz Aug 31 at 12:48

2 Answers

vote up 4 vote down check

ctrl-w does exactly what you want.

link|flag
I read that part of the manual a zillion times, I can't believe I missed it. Thanks :) – spatz Aug 31 at 12:49
I'll just note that after experimenting with it a little it's still not optimal since slashes are ignored as separators, which is annoying when working with paths. I added the line "\ew": unix-filename-rubout to /etc/inputrc and now M-e deletes a word while ignoring hyphens but does treat slashes as separators. – spatz Aug 31 at 13:01
vote up 0 vote down

One thing to keep in mind is that the bash key mapping for ctrl-W will not work if you have the stty werase setting assigned to ctrl-W. If you run "stty -a" and you see "werase = ^W" that will take precedence and use the tty idea of what a word boundary is. The tty's idea of a word boundary is usually whitespace, whereas bash's backward-kill-word function also includes - and /.

If you want to make Alt-Backspace do the same thing as the werase setting, you can do this: bind '"\M-\C-h": unix-word-rubout' bind '"\M-\C-?": unix-word-rubout'

Also, if you actually wanted to make ctrl-W do what Alt-Backspace does, you would do: stty werase undef # unless you do this, bash ignores the follow bind command bind '"\C-w": backwards-kill-word'

link|flag

Your Answer

Get an OpenID
or

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