Was bedeutet Sternchen in Vim-Zuordnungen?

9

Zum Beispiel hat easy clip diese Zuordnung, wenn Sie Folgendes ausführen smap k:

s  k     * <C-o>"_ck

Das Sternchen und <C-o>sind hervorgehoben.

Geoff Lee
quelle
Vielleicht möchten Sie meine Antwort lesen , in der die :mapBefehle und ihre Ausgabe erläutert werden.
Statox

Antworten:

9

Von :h map-listing:

When listing mappings the characters in the first two columns are:

      CHAR      MODE    
     <Space>    Normal, Visual, Select and Operator-pending
        n       Normal
        v       Visual and Select
        s       Select
        x       Visual
        o       Operator-pending
        !       Insert and Command-line
        i       Insert
        l       ":lmap" mappings for Insert, Command-line and Lang-Arg
        c       Command-line

Just before the {rhs} a special character can appear:
        *       indicates that it is not remappable
        &       indicates that only script-local mappings are remappable
        @       indicates a buffer-local mapping

Also wurden sie mit ?noremapBefehlen erstellt.

muru
quelle