summaryrefslogtreecommitdiff
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-06-13 18:38:48 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-13 18:38:48 +0200
commit4ee9d8e04daa97a3d0a19d7d2eed76b7721301e6 (patch)
treea896c1eca248cbf2c8269c8d6b593406fbb43b18 /src/proto
parente70e12b32f193addae88ae8df933b04fc234550f (diff)
downloadvim-git-4ee9d8e04daa97a3d0a19d7d2eed76b7721301e6.tar.gz
patch 8.2.2992: Vim9: completion for :disassemble is incompletev8.2.2992
Problem: Vim9: completion for :disassemble is incomplete. Solution: Recognize the "debug" and "profile" arguments.
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/vim9execute.pro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/proto/vim9execute.pro b/src/proto/vim9execute.pro
index 4b6444a34..5712fcf76 100644
--- a/src/proto/vim9execute.pro
+++ b/src/proto/vim9execute.pro
@@ -7,6 +7,8 @@ int fill_partial_and_closure(partial_T *pt, ufunc_T *ufunc, ectx_T *ectx);
int exe_typval_instr(typval_T *tv, typval_T *rettv);
char_u *exe_substitute_instr(void);
int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
+void set_context_in_disassemble_cmd(expand_T *xp, char_u *arg);
+char_u *get_disassemble_argument(expand_T *xp, int idx);
void ex_disassemble(exarg_T *eap);
int tv2bool(typval_T *tv);
void emsg_using_string_as(typval_T *tv, int as_number);