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)
eead75c5e8

Good to have for eval_expr_restore in v8.2.3417.

Doesn't actually add any tests.
This commit is contained in:
Sean Dewar
2021-09-13 15:50:20 +01:00
parent 5fd21b8d3e
commit 9f3d7dcda2
6 changed files with 841 additions and 807 deletions

11
src/nvim/debugger.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef NVIM_DEBUGGER_H
#define NVIM_DEBUGGER_H
#include <stdbool.h>
#include "nvim/ex_cmds_defs.h"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "debugger.h.generated.h"
#endif
#endif // NVIM_DEBUGGER_H