diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-15 21:39:51 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-15 21:39:51 +0200 |
commit | 52b91d801aa1af208aeb25f707da823d40671e4a (patch) | |
tree | 6b59e56acd017613258a4f91752cc4dde9cadc94 /runtime/doc/indent.txt | |
parent | df9259abcee07f217e36f85f4fd77d059fb1bbe7 (diff) | |
download | vim-git-52b91d801aa1af208aeb25f707da823d40671e4a.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/indent.txt')
-rw-r--r-- | runtime/doc/indent.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt index 7e89059b1..5bb2459a6 100644 --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -1,4 +1,4 @@ -*indent.txt* For Vim version 7.3. Last change: 2013 Jun 12 +*indent.txt* For Vim version 7.3. Last change: 2013 Jun 13 VIM REFERENCE MANUAL by Bram Moolenaar @@ -745,7 +745,7 @@ You can set the indent for the first line after <script> and <style> "inc" auto indent + one indent step Many tags increase the indent for what follows per default (see "Add Indent -Tags" below in this script). You can add further tags with: > +Tags" in the script). You can add further tags with: > :let g:html_indent_inctags = "html,body,head,tbody" @@ -757,7 +757,7 @@ Default value is empty for both variables. Note: the initial "inctags" are only defined once per Vim session. User variables are only read when the script is sourced. To enable your -changes during a session, without reloaind the html file, you can manually +changes during a session, without reloading the HTML file, you can manually do: > :call HtmlIndent_CheckUserSettings() @@ -765,11 +765,11 @@ do: > Detail: Calculation of indent inside "blocktags" with "alien" content: BLOCKTAG INDENT EXPR WHEN APPLICABLE ~ - <script> : {customizable} if first line of block - : cindent(v:lnum) if attributes empty or contain "java" - : -1 else (vbscript, tcl, ...) - <style> : {customizable} if first line of block - : GetCSSIndent() else + <script> : {customizable} if first line of block + : cindent(v:lnum) if attributes empty or contain "java" + : -1 else (vbscript, tcl, ...) + <style> : {customizable} if first line of block + : GetCSSIndent() else <!-- --> : -1 |