diff options
author | ZyX <kp-pav@yandex.ru> | 2017-01-29 02:41:37 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-27 00:12:23 +0300 |
commit | 872a909150506828f72a63636e1cfd6b72f1b306 (patch) | |
tree | 36f8399ec115692596630b1fdc24cd35ead88ae4 /src/nvim/ex_docmd.c | |
parent | 62fde319360e27a86c0deba0053ff230f80ca772 (diff) | |
download | rneovim-872a909150506828f72a63636e1cfd6b72f1b306.tar.gz rneovim-872a909150506828f72a63636e1cfd6b72f1b306.tar.bz2 rneovim-872a909150506828f72a63636e1cfd6b72f1b306.zip |
executor: Add :lua command
Does not work currently.
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 486baaad47..aa43b71a0d 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -67,6 +67,7 @@ #include "nvim/event/rstream.h" #include "nvim/event/wstream.h" #include "nvim/shada.h" +#include "nvim/viml/executor/executor.h" static int quitmore = 0; static int ex_pressedreturn = FALSE; |