diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-29 01:27:54 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-29 18:36:38 -0400 |
commit | 026c8dde875ab4d269bdac7027481590ac5538a8 (patch) | |
tree | 59b72d356a931ad3f0e708e59873f20f6af0948a /src | |
parent | 3d6584223df15e1eee2999baa07813944599a825 (diff) | |
download | rneovim-026c8dde875ab4d269bdac7027481590ac5538a8.tar.gz rneovim-026c8dde875ab4d269bdac7027481590ac5538a8.tar.bz2 rneovim-026c8dde875ab4d269bdac7027481590ac5538a8.zip |
vim-patch:8.1.2034: dark them of GTK 3 not supported
Problem: Dark them of GTK 3 not supported.
Solution: Add the "d" flag in 'guioptions'. (Jonathan Conder, closes vim/vim#4934)
https://github.com/vim/vim/commit/50bf7ce0c9f8c3ede2d1a02c734beba9d5a0504e
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option_defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index 4042b79262..af0ea7f4a2 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -188,6 +188,7 @@ enum { #define GO_ASELML 'A' // autoselect modeless selection #define GO_BOT 'b' // use bottom scrollbar #define GO_CONDIALOG 'c' // use console dialog +#define GO_DARKTHEME 'd' // use dark theme variant #define GO_TABLINE 'e' // may show tabline #define GO_FORG 'f' // start GUI in foreground #define GO_GREY 'g' // use grey menu items @@ -205,7 +206,7 @@ enum { #define GO_FOOTER 'F' // add footer #define GO_VERTICAL 'v' // arrange dialog buttons vertically #define GO_KEEPWINSIZE 'k' // keep GUI window size -#define GO_ALL "aAbcefFghilmMprTvk" // all possible flags for 'go' +#define GO_ALL "aAbcdefFghilmMprTvk" // all possible flags for 'go' // flags for 'comments' option #define COM_NEST 'n' // comments strings nest |