diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-09-20 23:22:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-09-20 23:22:24 +0000 |
commit | bfd8fc0529f46612f7b3efca6c7b3305e70ac374 (patch) | |
tree | f6b8a9bdb8bf573cea7862b3ab5ad41dfb5d1b46 /src/proto | |
parent | 60a795aad6ade281146a5343b416f21825af5364 (diff) | |
download | vim-bfd8fc0529f46612f7b3efca6c7b3305e70ac374.zip |
updated for version 7.0149
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_docmd.pro | 1 | ||||
-rw-r--r-- | src/proto/ex_getln.pro | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/proto/ex_docmd.pro b/src/proto/ex_docmd.pro index f4df30d76..25601e171 100644 --- a/src/proto/ex_docmd.pro +++ b/src/proto/ex_docmd.pro @@ -21,6 +21,7 @@ char_u *get_user_commands __ARGS((expand_T *xp, int idx)); char_u *get_user_cmd_flags __ARGS((expand_T *xp, int idx)); char_u *get_user_cmd_nargs __ARGS((expand_T *xp, int idx)); char_u *get_user_cmd_complete __ARGS((expand_T *xp, int idx)); +int parse_compl_arg __ARGS((char_u *value, int vallen, int *complp, long *argt, char_u **compl_arg)); void not_exiting __ARGS((void)); void handle_drop __ARGS((int filec, char_u **filev, int split)); void alist_clear __ARGS((alist_T *al)); diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro index f0d45a31f..fe2752b8d 100644 --- a/src/proto/ex_getln.pro +++ b/src/proto/ex_getln.pro @@ -1,6 +1,6 @@ /* ex_getln.c */ char_u *getcmdline __ARGS((int firstc, long count, int indent)); -char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr)); +char_u *getcmdline_prompt __ARGS((int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg)); char_u *getexline __ARGS((int c, void *dummy, int indent)); char_u *getexmodeline __ARGS((int promptc, void *dummy, int indent)); int cmdline_overstrike __ARGS((void)); @@ -33,6 +33,7 @@ int get_history_idx __ARGS((int histype)); char_u *get_cmdline_str __ARGS((void)); int get_cmdline_pos __ARGS((void)); int set_cmdline_pos __ARGS((int pos)); +int get_cmdline_type __ARGS((void)); char_u *get_history_entry __ARGS((int histype, int idx)); int clr_history __ARGS((int histype)); int del_history_entry __ARGS((int histype, char_u *str)); |