diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-03-28 00:34:25 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-03-31 16:56:41 -0400 |
commit | 00e1b62ca87df80464bf04cb9aaa675164ece881 (patch) | |
tree | 8fc6c3601211ad6a796f84009531567a161d5fa9 | |
parent | d2c3592da13a56cb3b4e417b8bfe2aabf013125f (diff) | |
download | rneovim-00e1b62ca87df80464bf04cb9aaa675164ece881.tar.gz rneovim-00e1b62ca87df80464bf04cb9aaa675164ece881.tar.bz2 rneovim-00e1b62ca87df80464bf04cb9aaa675164ece881.zip |
Modeline cleanup
If users want folds to be automatically collapsed, then they should just
set foldmethod=marker in their vimrc.
-rw-r--r-- | src/nvim/ex_cmds.c | 2 | ||||
-rw-r--r-- | src/nvim/terminal.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index e687eab3c4..9ea4902611 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -6316,5 +6316,3 @@ void set_context_in_sign_cmd(expand_T *xp, char_u *arg) } } } - -// vim: tabstop=8 diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index 87b2d8ff99..daba7b943f 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -1126,4 +1126,4 @@ static int get_config_int(Terminal *term, char *key) // }}} -// vim: foldmethod=marker foldenable +// vim: foldmethod=marker |