diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-10-30 14:35:12 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-11-07 14:33:10 -0500 |
commit | c40dff6453a3f4655981ba7a49dbcace0240f5fc (patch) | |
tree | 095401e0baf5deeb7030d90e43994cfeb19a6c70 /runtime/syntax/vim.vim | |
parent | 2bc97b20993b36ff8f996a4afec1e3efa3e4748d (diff) | |
download | rneovim-c40dff6453a3f4655981ba7a49dbcace0240f5fc.tar.gz rneovim-c40dff6453a3f4655981ba7a49dbcace0240f5fc.tar.bz2 rneovim-c40dff6453a3f4655981ba7a49dbcace0240f5fc.zip |
Remove :open command
From the documentation itself:
:[range]o[pen] Works like |:visual|: end Ex mode.
{Vi: start editing in open mode}
...
Vim does not support open mode, since it's not really useful. For
those situations where ":open" would start open mode Vim will leave Ex
mode, which allows executing the same commands, but updates the whole
screen instead of only one line.
Part of the reason behind this is to make removing vi_diff.txt easier,
although it's also because :open is not too useful.
Helped-by: @fdinoff
Helped-by: @dsummersl
Helped-by: @mhinz
Helped-by: @justinmk
Diffstat (limited to 'runtime/syntax/vim.vim')
-rw-r--r-- | runtime/syntax/vim.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim index e23232bbbe..cf51830b68 100644 --- a/runtime/syntax/vim.vim +++ b/runtime/syntax/vim.vim @@ -19,7 +19,7 @@ syn cluster vimCommentGroup contains=vimTodo,@Spell " Special and plugin vim commands {{{2 syn match vimCommand contained "\<z[-+^.=]\=" -syn keyword vimOnlyCommand contained fix[del] sh[ell] P[rint] +syn keyword vimOnlyCommand contained fix[del] op[en] sh[ell] P[rint] syn keyword vimStdPlugin contained DiffOrig Man N[ext] S TOhtml XMLent XMLns " Vim-specific options {{{2 |