To disable “Entering Ex mode” in Vim

前端 未结 5 914
逝去的感伤
逝去的感伤 2021-01-31 06:57

I get the following 10X times a day by accident.

Entering Ex mode. Type \"visual\" to go to Normal mode.

How can you disabl

5条回答
  •  囚心锁ツ
    2021-01-31 07:42

    The "combo" is Q. To disable it, simply map Q to something else:

    :map Q 
    

    I use gq, which is used to format text.

    If you don't want it do do anything map it to :

    :map Q 
    

提交回复
热议问题