Cosa significa asterisco nelle mappature vim?


9

Ad esempio, Easy Clip ha questa mappatura quando si esegue smap k:

s  k     * <C-o>"_ck

L'asterisco e <C-o>sono evidenziati.


Potresti voler leggere questa mia risposta che spiega i :mapcomandi e il loro output.
statox

Risposte:


9

Da :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

Quindi sono stati creati usando i ?noremapcomandi.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.