aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval/userfunc.c
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-09-13 15:50:20 +0100
committerSean Dewar <seandewar@users.noreply.github.com>2021-09-13 17:19:15 +0100
commit9f3d7dcda2478516bd4cbb1616429520fb8bf1b5 (patch)
treeecce0b195949b528fc5e420730528eb656512049 /src/nvim/eval/userfunc.c
parent5fd21b8d3e9dcb2b3dc3bdab4b58218ac908e3e8 (diff)
downloadrneovim-9f3d7dcda2478516bd4cbb1616429520fb8bf1b5.tar.gz
rneovim-9f3d7dcda2478516bd4cbb1616429520fb8bf1b5.tar.bz2
rneovim-9f3d7dcda2478516bd4cbb1616429520fb8bf1b5.zip
vim-patch:8.1.1195: Vim script debugger functionality needs cleanup
Problem: Vim script debugger functionality needs cleanup. Solution: Move debugger code to a separate file. Add more tests. (Yegappan Lakshmanan, closes vim/vim#4285) https://github.com/vim/vim/commit/eead75c5e8e1f965548c55ee3a9388b2cb3afc36 Good to have for eval_expr_restore in v8.2.3417. Doesn't actually add any tests.
Diffstat (limited to 'src/nvim/eval/userfunc.c')
-rw-r--r--src/nvim/eval/userfunc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval/userfunc.c b/src/nvim/eval/userfunc.c
index 19535c2868..350c5ee1c2 100644
--- a/src/nvim/eval/userfunc.c
+++ b/src/nvim/eval/userfunc.c
@@ -5,6 +5,7 @@
#include "nvim/ascii.h"
#include "nvim/charset.h"
+#include "nvim/debugger.h"
#include "nvim/edit.h"
#include "nvim/eval.h"
#include "nvim/eval/encode.h"