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.
Asked
Active
Viewed 765 times
3
-
3Try Airline's issue tracker if you can't find that info in the plugin's documentation. – romainl Nov 10 '14 at 15:25
1 Answers
4
What you need is probably not in airline, but
set showcmd
in your .vimrc

prajmus
- 3,171
- 3
- 31
- 41

BlueGuitar
- 41
- 3
-
1yes, 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