1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add Toggling Syntax Highlighting as a vim til

This commit is contained in:
jbranchaud
2016-04-09 11:20:59 -05:00
parent fae231dfeb
commit 7f26998bd4
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# Toggling Syntax Highlighting
Syntax highlighting in Vim is generally a good thing, but sometimes you need
to turn it off. This can be achieved with the `syntax` command.
```vim
:syntax off
```
When you need that syntax highlighting back again, you can turn it right
back on like so:
```vim
:syntax on
```
See `:h syntax-on` for more details.
h/t Steve Klabnik