Vi: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 27: Line 27:
  autocmd BufRead,BufNewFile {*.yaml} set filetype=yaml
  autocmd BufRead,BufNewFile {*.yaml} set filetype=yaml
  autocmd FileType yaml setlocal syntax=off
  autocmd FileType yaml setlocal syntax=off
=In-Line Editing=
==Substitution==
<syntaxhighlight lang='text'>
</syntaxhighlight>

Revision as of 18:50, 22 February 2021

Internal

Overview

Installation

With apt-get

apt-get install vim

Syntax Highlight

All Parsers

To turn syntax highlight on or of interactively:

:syntax on|off

To make the change permanent, edit ~/.vimrc and append:

syntax on|off

Just the YAML Parser

autocmd BufRead,BufNewFile {*.yaml} set filetype=yaml
autocmd FileType yaml setlocal syntax=off

In-Line Editing

Substitution