mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
20 lines
368 B
Markdown
20 lines
368 B
Markdown
# 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
|