diff options
author | James McCoy <jamessan@jamessan.com> | 2016-05-25 16:31:48 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-05-25 21:05:01 -0400 |
commit | d693a22de3d8fd5a8359450620ebadd329fe6f73 (patch) | |
tree | 275611ec2dba2884ec496214e766213efacaf3e1 /runtime/ftplugin | |
parent | 2115fcdfd5a6b32b62dcd280c59843437c4702d6 (diff) | |
download | rneovim-d693a22de3d8fd5a8359450620ebadd329fe6f73.tar.gz rneovim-d693a22de3d8fd5a8359450620ebadd329fe6f73.tar.bz2 rneovim-d693a22de3d8fd5a8359450620ebadd329fe6f73.zip |
vim-patch:acb4f22
Updated runtime files.
https://github.com/vim/vim/commit/acb4f221c715a333f4c49a2235a8006c6ac6e4d5
Ignored changes to:
* doc/eval.txt since alloc_fail isn't relevant for neovim
* doc/index.txt for unmerge :smile command
* doc/tags, syntax/vim.vim since they're generated at build time
* doc/todo.txt
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/hgcommit.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/ftplugin/hgcommit.vim b/runtime/ftplugin/hgcommit.vim new file mode 100644 index 0000000000..d5a6c0a383 --- /dev/null +++ b/runtime/ftplugin/hgcommit.vim @@ -0,0 +1,16 @@ +" Vim filetype plugin file +" Language: hg (Mercurial) commit file +" Maintainer: Ken Takata <kentkt at csc dot jp> +" Last Change: 2016 Jan 6 +" Filenames: hg-editor-*.txt +" License: VIM License +" URL: https://github.com/k-takata/hg-vim + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal nomodeline + +let b:undo_ftplugin = 'setl modeline<' |