diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-12-22 09:13:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-21 18:13:17 -0700 |
commit | 0c35fd5fcc4cbfbd55d005bbb1139b068425b442 (patch) | |
tree | 6216ce00bbb78c907e9793d8b52e4174f5cca6d5 | |
parent | 33cd1ba00ad4483aa2d7cb386e7204737f8936fe (diff) | |
download | rneovim-0c35fd5fcc4cbfbd55d005bbb1139b068425b442.tar.gz rneovim-0c35fd5fcc4cbfbd55d005bbb1139b068425b442.tar.bz2 rneovim-0c35fd5fcc4cbfbd55d005bbb1139b068425b442.zip |
refactor: fix comment spacing in option.h (#16749)
-rw-r--r-- | src/nvim/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.h b/src/nvim/option.h index fbd8f38110..f7dbaafeec 100644 --- a/src/nvim/option.h +++ b/src/nvim/option.h @@ -22,7 +22,7 @@ typedef enum { OPT_ONECOLUMN = 64, ///< list options one per line OPT_NO_REDRAW = 128, ///< ignore redraw flags on option OPT_SKIPRTP = 256, ///< "skiprtp" in 'sessionoptions' - OPT_CLEAR = 512, ///< Clear local value of an option. + OPT_CLEAR = 512, ///< Clear local value of an option. } OptionFlags; #ifdef INCLUDE_GENERATED_DECLARATIONS |