aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/runtime.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-10-17 18:35:53 +0200
committerGitHub <noreply@github.com>2021-10-17 18:35:53 +0200
commit8f9f127274fb5e715645f88fe8e76f4a7ca8ca10 (patch)
tree7671de084d06fddc7bd8d66f03d369ab85b9a6b7 /src/nvim/runtime.h
parenta1e8199fff098e158e22e25abc20c512575c1c53 (diff)
parentea2023f689ad8f368faad6e52c85fbc9762a7296 (diff)
downloadrneovim-8f9f127274fb5e715645f88fe8e76f4a7ca8ca10.tar.gz
rneovim-8f9f127274fb5e715645f88fe8e76f4a7ca8ca10.tar.bz2
rneovim-8f9f127274fb5e715645f88fe8e76f4a7ca8ca10.zip
Merge pull request #15973 from bfredl/luapath
fix(runtime): don't use regexes inside lua require'mod'
Diffstat (limited to 'src/nvim/runtime.h')
-rw-r--r--src/nvim/runtime.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/runtime.h b/src/nvim/runtime.h
index db31ae4e1e..4337a0b3cd 100644
--- a/src/nvim/runtime.h
+++ b/src/nvim/runtime.h
@@ -10,6 +10,7 @@ typedef void (*DoInRuntimepathCB)(char_u *, void *);
typedef struct {
char *path;
bool after;
+ TriState has_lua;
} SearchPathItem;
typedef kvec_t(SearchPathItem) RuntimeSearchPath;