11

For example, easy clip has this mapping when you run smap k:

s  k     * <C-o>"_ck

The asterisk and <C-o> are highlighted.

DJMcMayhem
  • 17,581
  • 5
  • 53
  • 85
Geoff Lee
  • 135
  • 1
  • 7

1 Answers1

11

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

So they were created using ?noremap commands.

muru
  • 24,838
  • 8
  • 82
  • 143