aboutsummaryrefslogtreecommitdiff
path: root/vim/indent/html.vim
Commit message (Collapse)AuthorAgeFilesLines
* Tweak HTML indenting to indent after <p>Tom Ryder2018-07-091-0/+2
|
* Use b:undo variables correctlyTom Ryder2017-11-071-2/+0
| | | | | | | | | | | Setting or adding to b:undo_indent and b:undo_ftplugin variables, which I only learned about just now, allows me to avoid the _GLOBAL.vim hack and remove some files from both vim/indent/ and vim/ftplugin/. These variables aren't subjected to :execute automatically in anything older than Vim 7.0, but I don't think that's too much of a concern as the only real reason they're needed are for changing filetypes in the same buffer, which doesn't happen that often anyway.
* Move non-indent HTML Vim config indent->ftpluginTom Ryder2017-10-301-12/+0
| | | | | This was mistakenly moved along with some indentation settings in 9858af6.
* Use a common file to restore global indent optsTom Ryder2017-10-301-6/+2
| | | | | | Remove the duplicated code instated to use the global defaults for indent-related options and put it into a common file to source with :runtime.
* Move filetype-specific indent options into indent/Tom Ryder2017-10-301-0/+18
I'm still getting used to the structure of the configuration here, and had mistakenly put these indent-related settings into files in the ftplugin directory.