Copy and paste from external source

后端 未结 5 551
半阙折子戏
半阙折子戏 2021-01-02 05:21

I use vim (Actually gvim on windows) as my main text editor. In my work flow I have to copy sentences to/from various external sources, therefore I use clipboard=unnamed to

5条回答
  •  借酒劲吻你
    2021-01-02 06:21

    Check the value of the 'guioptions' options. Make sure the 'a' flag is not set. Also, check that the 'clipboard' option and verify that neither the 'unnamed' or 'autoselect' flags are set.

    :set go-=a
    :set clipboard-=unnamed
    

提交回复
热议问题