Como você faz o meta-delete do zsh se comportar como o bash? (Para fazer isso, exclua uma palavra em vez do caminho inteiro.)

3

A meta-exclusão do Bash removerá um componente do caminho em vez do caminho inteiro. Como você faz com que o zsh se comporte assim?

Eu encontrei isso, o que parece funcionar. Essa é a coisa certa a fazer?

One of the things I most missed about bash when first switching to Zsh was that M-b and M-f (backward-word and forward-word) would jump over an entire /path/location, rather than to each word separated by a '/'. To make the behavior more like bash, you can evaluate this command: export WORDCHARS=''

link

    
por zekel 09.04.2012 / 17:08

2 respostas

6

Isso é duplicado com essa pergunta sobre SO .

Uma solução é adicionar o seguinte ao seu .zshrc

autoload -U select-word-style
select-word-style bash
    
por 26.04.2012 / 07:28
1

Parece que export WORDCHARS='' faz o trabalho.

    
por 11.04.2012 / 21:28

Tags