diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-05-03 21:00:18 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-05-03 21:03:17 +0200 |
commit | 367b1893e7efab3c97bb7df9c07703d076a94542 (patch) | |
tree | 64f3a9ebb2a2b3fc17d0b638e0e37a0814c50c1f /runtime/indent | |
parent | c535cc7dde493f405d81cfb9d331405d9b0f097a (diff) | |
download | rneovim-367b1893e7efab3c97bb7df9c07703d076a94542.tar.gz rneovim-367b1893e7efab3c97bb7df9c07703d076a94542.tar.bz2 rneovim-367b1893e7efab3c97bb7df9c07703d076a94542.zip |
vim-patch:b4ff518
Updated runtime files.
https://github.com/vim/vim/commit/b4ff518d95aa57c2f8c0568c915035bef849581b
Missing files: runtime/doc/tags, runtime/doc/todo.txt. Changes to
runtime/doc/if_pyth.txt, runtime/doc/options.txt and runtime/doc/quickref.txt
did not aply. Excluded runtime/syntax/vim.vim.
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/yaml.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/yaml.vim b/runtime/indent/yaml.vim index 95a53b1386..aa4906ce0a 100644 --- a/runtime/indent/yaml.vim +++ b/runtime/indent/yaml.vim @@ -1,7 +1,7 @@ " Vim indent file " Language: YAML " Maintainer: Nikolai Pavlov <zyx.vim@gmail.com> -" Last Change: 2015 Sep 25 +" Last Change: 2015 Nov 01 " Only load this indent file when no other was loaded. if exists('b:did_indent') @@ -14,7 +14,7 @@ set cpo&vim let b:did_indent = 1 setlocal indentexpr=GetYAMLIndent(v:lnum) -setlocal indentkeys=!^F,o,O,0#,0},0],<:>,- +setlocal indentkeys=!^F,o,O,0#,0},0],<:>,0- setlocal nosmartindent let b:undo_indent = 'setlocal indentexpr< indentkeys< smartindent<' |