summaryrefslogtreecommitdiff
path: root/src/proto/ex_getln.pro
diff options
context:
space:
mode:
authormityu <mityu.mail@gmail.com>2021-11-20 19:13:39 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-20 19:13:39 +0000
commita1198124370a366ff02811a43845a631b5c6e7f0 (patch)
tree7d1ef0b5d8dc8de7a8c9b85d8f5b59ef530dce9c /src/proto/ex_getln.pro
parent87fd0924e2d85213cc111ee7a5122f92216a37c7 (diff)
downloadvim-git-a1198124370a366ff02811a43845a631b5c6e7f0.tar.gz
patch 8.2.3629: command completion in cmdline window uses global commandsv8.2.3629
Problem: Command completion in cmdline window uses global user commands, not local commands for the window where it was opened from. Solution: Use local commands. (closes #9168)
Diffstat (limited to 'src/proto/ex_getln.pro')
-rw-r--r--src/proto/ex_getln.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro
index d047e39da..d6f19110e 100644
--- a/src/proto/ex_getln.pro
+++ b/src/proto/ex_getln.pro
@@ -38,6 +38,7 @@ int get_cmdline_type(void);
int get_cmdline_firstc(void);
int get_list_range(char_u **str, int *num1, int *num2);
char *check_cedit(void);
+int is_in_cmdwin(void);
char_u *script_get(exarg_T *eap, char_u *cmd);
void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret);
/* vim: set ft=c : */