mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.3.1136
Problem: ":func Foo" does not show attributes. Solution: Add "abort", "dict" and "range". (Yasuhiro Matsumoto)
This commit is contained in:
@@ -21891,6 +21891,12 @@ list_func_head(fp, indent)
|
||||
MSG_PUTS("...");
|
||||
}
|
||||
msg_putchar(')');
|
||||
if (fp->uf_flags & FC_ABORT)
|
||||
MSG_PUTS(" abort");
|
||||
if (fp->uf_flags & FC_RANGE)
|
||||
MSG_PUTS(" range");
|
||||
if (fp->uf_flags & FC_DICT)
|
||||
MSG_PUTS(" dict");
|
||||
msg_clr_eos();
|
||||
if (p_verbose > 0)
|
||||
last_set_msg(fp->uf_script_ID);
|
||||
|
Reference in New Issue
Block a user