3

I am using airline with basic settings. Is there a way to indicate operator-pending mode in the airline status line? In regular, vim default statusline (:set statusline) there is always displayed first letter of a command, whenever vim enters operator-pending mode. I'll be absolutely sufficient for me, but I don't know how should I modify this airline plugin.

prajmus
  • 3,171
  • 3
  • 31
  • 41
qiubix
  • 1,302
  • 13
  • 22

1 Answers1

4

What you need is probably not in airline, but

set showcmd

in your .vimrc

prajmus
  • 3,171
  • 3
  • 31
  • 41
BlueGuitar
  • 41
  • 3
  • 1
    yes, this allows me to display first part of the command, so that's exactly what I need. But I was wondering how you can put it ON the airline statusline, for example near mode indicator. – qiubix Jan 14 '15 at 20:51