17

zsh forward-word の動作は bash/emacs とは少し異なります。それを変更したいと思います。

すべての違いを説明する代わりに、bash の動作を順を追って説明します。カーソルを「^」記号としてマークしました。

foo bar --non-needed-param --needed-param^

メガバイト

foo bar --non-needed-param --needed-^param

メガバイト

foo bar --non-needed-param --^needed-param

メガバイト

foo bar --non-needed-^param --needed-param

メガバイト

foo bar --non-^needed-param --needed-param

メガバイト

foo bar --^non-needed-param --needed-param

メガバイト

foo ^bar --non-needed-param --needed-param

Mf

foo bar^ --non-needed-param --needed-param

メリーランド

foo bar^-needed-param --needed-param

メリーランド

foo bar^-param --needed-param

メリーランド

foo bar^ --needed-param

このアルゴリズムは、単語の移動と単語の一部の削除に柔軟に対応できます。また、emacs にあるので、慣れています。zshでも見たいです。ありがとう。

4

2 に答える 2

26

私は.zshrcまさにその目的のためにこれを持っています:

# Bash-like navigation
autoload -U select-word-style
select-word-style bash

編集: ああ、すべてを思いどおりに機能させるために何が欠けていたかを覚えています。forward-word-matchまた、次のコンテンツを に配置して上書きしました (ディレクトリが にあると$ZDOTDIR/functions/forward-word-match仮定します。それ以外の場合は、ディレクトリに配置するか、配列も変更します)。$ZDOTDIR/functions$fpath$fpath

emulate -L zsh
setopt extendedglob

autoload match-words-by-style

local curcontext=":zle:$WIDGET" word
local -a matched_words
integer count=${NUMERIC:-1}

if (( count < 0 )); then
    (( NUMERIC = -count ))
    zle ${WIDGET/forward/backward}
    return
fi

while (( count-- )); do

    match-words-by-style

    # For some reason forward-word doesn't work like the other word
    # commands; it skips whitespace only after any matched word
    # characters.

    if [[ -n $matched_words[4] ]]; then
        # just skip the whitespace and the following word
  word=$matched_words[4]$matched_words[5]
    else
        # skip the word but not the trailing whitespace
  word=$matched_words[5]
    fi

    if [[ -n $word ]]; then
  (( CURSOR += ${#word} ))
    else
  return 1
    fi
done

return 0
于 2012-06-02T07:30:53.400 に答える