diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-31 15:40:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-31 15:40:56 +0000 |
commit | c4573eb12dba6a062af28ee0b8938d1521934ce4 (patch) | |
tree | 45dead4c82bacf905972ddaddb20d6c15cbf7ca4 /runtime/doc/indent.txt | |
parent | 424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7 (diff) | |
download | vim-git-c4573eb12dba6a062af28ee0b8938d1521934ce4.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/doc/indent.txt')
-rw-r--r-- | runtime/doc/indent.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt index d82f7423a..6e8f35b2d 100644 --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -1,4 +1,4 @@ -*indent.txt* For Vim version 8.2. Last change: 2019 Dec 07 +*indent.txt* For Vim version 8.2. Last change: 2022 Jan 31 VIM REFERENCE MANUAL by Bram Moolenaar @@ -778,6 +778,15 @@ You can set the indent for the first line after <script> and <style> "auto" auto indent (same indent as the blocktag) "inc" auto indent + one indent step +You can set the indent for attributes after an open <tag line: > + + :let g:html_indent_attribute = 1 +< + VALUE MEANING ~ + 1 auto indent, one indent step more than <tag + 2 auto indent, two indent steps (default) + > 2 auto indent, more indent steps + Many tags increase the indent for what follows per default (see "Add Indent Tags" in the script). You can add further tags with: > |