aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2020-09-13 08:29:49 +0200
committerGitHub <noreply@github.com>2020-09-13 08:29:49 +0200
commit542022aae4ed8d1c0352042858f06da1ee077bf8 (patch)
treeefdbc77ce8d0607f3bdfbd644022985a5d525058 /src/nvim/globals.h
parent4d3ef578e91cb23586979ed50fa0dfddd45ded1d (diff)
parent2c15f695a812c8b6ad1484912acbecb978f8727b (diff)
downloadrneovim-542022aae4ed8d1c0352042858f06da1ee077bf8.tar.gz
rneovim-542022aae4ed8d1c0352042858f06da1ee077bf8.tar.bz2
rneovim-542022aae4ed8d1c0352042858f06da1ee077bf8.zip
Merge pull request #12851 from bfredl/luahl
luahl: still WIP but better
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 205be4b811..ddb69fc567 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -405,6 +405,12 @@ 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.