qiubix
qiubix

Reputation: 1332

Indicate operator-pending mode in vim-airline

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.

Upvotes: 4

Views: 837

Answers (1)

BlueGuitar
BlueGuitar

Reputation: 41

What you need is probably not in airline, but

set showcmd

in your .vimrc

Upvotes: 4

Related Questions