diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-05-16 02:23:16 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-05-21 01:28:20 -0400 |
commit | eca51bbfa033f4956f5430fa15fa18c91a5fffef (patch) | |
tree | c02a5b4cc498fea6034bf2af6c3d033ca5d9c121 /src | |
parent | 1add7a422f12526a073a960a189bf8fe1e4d09e8 (diff) | |
download | rneovim-eca51bbfa033f4956f5430fa15fa18c91a5fffef.tar.gz rneovim-eca51bbfa033f4956f5430fa15fa18c91a5fffef.tar.bz2 rneovim-eca51bbfa033f4956f5430fa15fa18c91a5fffef.zip |
options: Include "j" in default 'formatoptions' #2669
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index 70e3df0060..5e85b4bbea 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -79,7 +79,7 @@ #define FO_REMOVE_COMS 'j' /* remove comment leaders when joining lines */ #define DFLT_FO_VI "vt" -#define DFLT_FO_VIM "tcq" +#define DFLT_FO_VIM "tcqj" #define FO_ALL "tcroq2vlb1mMBn,awj" /* for do_set() */ /* characters for the p_cpo option: */ |