Post by tag: vim

Vim - Transfer/Copy/Move line into address
2020/03/02 programming vim
Example: :5t. –> copy text at line 5 into current line :5,6t. –> copy text at line 5 until line 6 into current line :5t9 –> copy text at line 5 into line 9 :5,6t9 …

VIm autocomplete with YouCompleteMe
2015/05/05 vim gnu linux
Finally i use an autocomplete plugin in my vim, my choice is YouCompleteMe. This plugin need vim 7.34+ and python support and my vim is still 7.3 so need to recompile it. I use version 7.4, this is …