diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-10-30 00:05:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-30 00:05:02 +0200 |
commit | ac358bfb2f644b79ab1f6f17dddcec1bf32f8d97 (patch) | |
tree | e9162ebddb4a272b18e3b33f27df7667bafe1215 /src/nvim/context.c | |
parent | 615e03c33e73b1771e8d567cddfb362534e61673 (diff) | |
parent | a60beeb34f811d2a9722887ee1a05e63e1dfa2b4 (diff) | |
download | rneovim-ac358bfb2f644b79ab1f6f17dddcec1bf32f8d97.tar.gz rneovim-ac358bfb2f644b79ab1f6f17dddcec1bf32f8d97.tar.bz2 rneovim-ac358bfb2f644b79ab1f6f17dddcec1bf32f8d97.zip |
Merge pull request #16154 from bfredl/neoscript
refactor(api): break out Vim script functions to its own file
Diffstat (limited to 'src/nvim/context.c')
-rw-r--r-- | src/nvim/context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/context.c b/src/nvim/context.c index 1db7938ef4..4a8e645d2c 100644 --- a/src/nvim/context.c +++ b/src/nvim/context.c @@ -3,8 +3,10 @@ // Context: snapshot of the entire editor state as one big object/map +#include "nvim/api/private/converter.h" #include "nvim/api/private/helpers.h" #include "nvim/api/vim.h" +#include "nvim/api/vimscript.h" #include "nvim/context.h" #include "nvim/eval/encode.h" #include "nvim/ex_docmd.h" |