Why is pasting a long one-liner very slow in Vim's insert mode?

后端 未结 9 1128
别那么骄傲
别那么骄傲 2020-12-23 14:35

My Macbook was stuck yesterday, when I tried to paste 1200 lines of 80 characters to Vim. It was much faster to download the file, and not to paste the text.

I have

9条回答
  •  暖寄归人
    2020-12-23 15:27

    :read !pbpaste
    

    If you are using Linux use:

    xsel --clipboard --output
    

    or:

    xclip -selection clipboard -o
    

    instead of pbpaste.

提交回复
热议问题