aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-13 17:06:33 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-14 15:20:32 -0500
commitda6299445a0fd52be5af2d7ea9ee539f12c20a73 (patch)
tree2935a0f08209e9cc1fad74a6bd921c21fcdb5de2 /src/nvim/main.c
parent9c2c24ec484ececc1869dafa973566f685418757 (diff)
downloadrneovim-da6299445a0fd52be5af2d7ea9ee539f12c20a73.tar.gz
rneovim-da6299445a0fd52be5af2d7ea9ee539f12c20a73.tar.bz2
rneovim-da6299445a0fd52be5af2d7ea9ee539f12c20a73.zip
ex_docmd: rename force_enable_filetype().
It is no longer forcing anything.
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r--src/nvim/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 6f5d40645a..a5515a30f1 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -335,7 +335,7 @@ int main(int argc, char **argv)
// If using the runtime (-u is not NONE), enable syntax & filetype plugins.
if (params.use_vimrc != NULL && strcmp(params.use_vimrc, "NONE") != 0) {
// Do ":filetype plugin indent on".
- force_enable_filetype();
+ maybe_enable_filetype();
// Enable syntax (sources syntax/syntax.vim, which calls `:filetype on`).
syn_cmd("syntax");
}