annotate src/proto/cmdexpand.pro @ 19774:00a1b89256ea v8.2.0443

patch 8.2.0443: clipboard code is spread out Commit: https://github.com/vim/vim/commit/45fffdf10b7cb6e59794e76e9b8a2930fcb4b192 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 24 21:42:01 2020 +0100 patch 8.2.0443: clipboard code is spread out Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 Mar 2020 21:45:04 +0100
parents cec4da73951a
children eb878f85967e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17779
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 /* cmdexpand.c */
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 int nextwild(expand_T *xp, int type, int options, int escape);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 void ExpandInit(expand_T *xp);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 void ExpandCleanup(expand_T *xp);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 int showmatches(expand_T *xp, int wildmenu);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 char_u *sm_gettail(char_u *s);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 char_u *addstar(char_u *fname, int len, int context);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 void f_getcompletion(typval_T *argvars, typval_T *rettv);
87a8760babec patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 /* vim: set ft=c : */