vote up 0 vote down star

In zsh, how can I set up the line editor such that backward-kill-word stops on a directory separator? Currently in my bash setup, if I type

cd ~/devel/sandbox

and then hit C-w point will be right after "devel/". In my zsh setup, point would be after "cd ". I'd like to set up zsh so it behaves similarly to bash.

flag

78% accept rate
This might be a readline issue, I should add... – wilhelmtell Jan 14 '09 at 22:32

2 Answers

vote up 1 vote down check

A quick google reveals:

Backward Kill

Or, perhaps a better fix:

Bash Style Backward Kill

link|flag
vote up 1 vote down

For recent versions of zsh, you can simply add:

autoload -U select-word-style
select-word-style bash

to your zshrc as described in zshcontrib(1).

link|flag

Your Answer

Get an OpenID
or

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