diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-10-10 18:31:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-10 18:31:46 +0200 |
commit | f7cc3ae0b7b8ce67294c00729d278362ad60a4f0 (patch) | |
tree | 5b601432a0b2d835bb31a8d2776d74bfd9b885b0 /src/nvim/globals.h | |
parent | 405044a41206e325c4f3ecaa6c62ed8f4bb32abe (diff) | |
parent | 6bf414c0d74ed6f2c573e87290830bade4330c9a (diff) | |
download | rneovim-f7cc3ae0b7b8ce67294c00729d278362ad60a4f0.tar.gz rneovim-f7cc3ae0b7b8ce67294c00729d278362ad60a4f0.tar.bz2 rneovim-f7cc3ae0b7b8ce67294c00729d278362ad60a4f0.zip |
Merge pull request #13038 from bfredl/multiluahl
api: multiple decoration providers at once
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index ddb69fc567..2db8689a56 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -125,8 +125,6 @@ typedef off_t off_T; EXTERN int mod_mask INIT(= 0x0); // current key modifiers -EXTERN bool lua_attr_active INIT(= false); - // Cmdline_row is the row where the command line starts, just below the // last window. // When the cmdline gets longer than the available space the screen gets @@ -405,12 +403,6 @@ EXTERN int sys_menu INIT(= false); // ('lines' and 'rows') must not be changed. EXTERN int updating_screen INIT(= 0); -EXTERN bool luahl_active INIT(= false); -EXTERN LuaRef luahl_start INIT(= LUA_NOREF); -EXTERN LuaRef luahl_win INIT(= LUA_NOREF); -EXTERN LuaRef luahl_line INIT(= LUA_NOREF); -EXTERN LuaRef luahl_end INIT(= LUA_NOREF); - // All windows are linked in a list. firstwin points to the first entry, // lastwin to the last entry (can be the same as firstwin) and curwin to the // currently active window. |