¿Qué significa asterisco en las asignaciones de vim?

9

Por ejemplo, el clip fácil tiene esta asignación cuando ejecuta smap k:

s  k     * <C-o>"_ck

El asterisco y <C-o>se resaltan.

Geoff Lee
fuente
Es posible que desee leer esta respuesta mía que explica los :mapcomandos y su salida.
statox

Respuestas:

9

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

Entonces fueron creados usando ?noremapcomandos.

muru
fuente