VIM: Difference between revisions
add a link to the Emmet cheatsheet |
add emmet and adding comments to a block |
||
Line 1: | Line 1: | ||
== Editing techniques == | |||
== Adding comments to a block == | |||
Grab lines with visual block and then <code>:norm i#</code> to comment, and then <code>:norm x</code> or <code>:norm ^x</code> with indentation. | |||
== Emmet == | |||
Also known as Zen Coding previously. | |||
* [http://docs.emmet.io/cheat-sheet/ Emmet cheatsheet] | * [http://docs.emmet.io/cheat-sheet/ Emmet cheatsheet] | ||
Revision as of 18:37, 28 June 2016
Editing techniques
Adding comments to a block
Grab lines with visual block and then :norm i#
to comment, and then :norm x
or :norm ^x
with indentation.
Emmet
Also known as Zen Coding previously.
Miscellaneous
Fixing an issue with Python version when using VIM with some packages
- Last tested on Ubuntu 16.04 LTS (xenial) | easy | less than five minutes
When running vim
with Powerline package on Ubuntu 16.04, I get this error message every time I execute it from the CLI.
$ vim
UltiSnips requires py >= 2.7 or py3
You need vim compiled with Python 2.6, 2.7 or 3.2 and later support
for Powerline to work. Please consult the documentation for more
details.
Press ENTER or type command to continue
I'm not sure what this does, but this seems to solve the problem. Thanks to Sergey Khaylov for the answer at Stackoverflow.
$ apt-get install vim-nox