Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * ex_getln.c: Functions for entering and editing an Ex command line. |
| 12 | */ |
| 13 | |
| 14 | #include "vim.h" |
| 15 | |
| 16 | /* |
| 17 | * Variables shared between getcmdline(), redrawcmdline() and others. |
| 18 | * These need to be saved when using CTRL-R |, that's why they are in a |
| 19 | * structure. |
| 20 | */ |
| 21 | struct cmdline_info |
| 22 | { |
| 23 | char_u *cmdbuff; /* pointer to command line buffer */ |
| 24 | int cmdbufflen; /* length of cmdbuff */ |
| 25 | int cmdlen; /* number of chars in command line */ |
| 26 | int cmdpos; /* current cursor position */ |
| 27 | int cmdspos; /* cursor column on screen */ |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 28 | int cmdfirstc; /* ':', '/', '?', '=', '>' or NUL */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 29 | int cmdindent; /* number of spaces before cmdline */ |
| 30 | char_u *cmdprompt; /* message in front of cmdline */ |
| 31 | int cmdattr; /* attributes for prompt */ |
| 32 | int overstrike; /* Typing mode on the command line. Shared by |
| 33 | getcmdline() and put_on_cmdline(). */ |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 34 | expand_T *xpc; /* struct being used for expansion, xp_pattern |
| 35 | may point into cmdbuff */ |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 36 | int xp_context; /* type of expansion */ |
| 37 | # ifdef FEAT_EVAL |
| 38 | char_u *xp_arg; /* user-defined expansion arg */ |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 39 | int input_fn; /* when TRUE Invoked for input() function */ |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 40 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 41 | }; |
| 42 | |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 43 | /* The current cmdline_info. It is initialized in getcmdline() and after that |
| 44 | * used by other functions. When invoking getcmdline() recursively it needs |
| 45 | * to be saved with save_cmdline() and restored with restore_cmdline(). |
| 46 | * TODO: make it local to getcmdline() and pass it around. */ |
| 47 | static struct cmdline_info ccline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 48 | |
| 49 | static int cmd_showtail; /* Only show path tail in lists ? */ |
| 50 | |
| 51 | #ifdef FEAT_EVAL |
| 52 | static int new_cmdpos; /* position set by set_cmdline_pos() */ |
| 53 | #endif |
| 54 | |
| 55 | #ifdef FEAT_CMDHIST |
| 56 | typedef struct hist_entry |
| 57 | { |
| 58 | int hisnum; /* identifying number */ |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 59 | int viminfo; /* when TRUE hisstr comes from viminfo */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 60 | char_u *hisstr; /* actual entry, separator char after the NUL */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 61 | time_t time_set; /* when it was typed, zero if unknown */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 62 | } histentry_T; |
| 63 | |
| 64 | static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL}; |
| 65 | static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */ |
| 66 | static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0}; |
| 67 | /* identifying (unique) number of newest history entry */ |
| 68 | static int hislen = 0; /* actual length of history tables */ |
| 69 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 70 | static int hist_char2type(int c); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 71 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 72 | static int in_history(int, char_u *, int, int, int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 73 | # ifdef FEAT_EVAL |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 74 | static int calc_hist_idx(int histype, int num); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 75 | # endif |
| 76 | #endif |
| 77 | |
| 78 | #ifdef FEAT_RIGHTLEFT |
| 79 | static int cmd_hkmap = 0; /* Hebrew mapping during command line */ |
| 80 | #endif |
| 81 | |
| 82 | #ifdef FEAT_FKMAP |
| 83 | static int cmd_fkmap = 0; /* Farsi mapping during command line */ |
| 84 | #endif |
| 85 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 86 | static int cmdline_charsize(int idx); |
| 87 | static void set_cmdspos(void); |
| 88 | static void set_cmdspos_cursor(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 89 | #ifdef FEAT_MBYTE |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 90 | static void correct_cmdspos(int idx, int cells); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 92 | static void alloc_cmdbuff(int len); |
| 93 | static int realloc_cmdbuff(int len); |
| 94 | static void draw_cmdline(int start, int len); |
| 95 | static void save_cmdline(struct cmdline_info *ccp); |
| 96 | static void restore_cmdline(struct cmdline_info *ccp); |
| 97 | static int cmdline_paste(int regname, int literally, int remcr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 99 | static void redrawcmd_preedit(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 100 | #endif |
| 101 | #ifdef FEAT_WILDMENU |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 102 | static void cmdline_del(int from); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 103 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 104 | static void redrawcmdprompt(void); |
| 105 | static void cursorcmd(void); |
| 106 | static int ccheck_abbr(int); |
| 107 | static int nextwild(expand_T *xp, int type, int options, int escape); |
| 108 | static void escape_fname(char_u **pp); |
| 109 | static int showmatches(expand_T *xp, int wildmenu); |
| 110 | static void set_expand_context(expand_T *xp); |
| 111 | static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int); |
| 112 | static int expand_showtail(expand_T *xp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 113 | #ifdef FEAT_CMDL_COMPL |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 114 | static int expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int flagsarg); |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 115 | static int ExpandRTDir(char_u *pat, int flags, int *num_file, char_u ***file, char *dirname[]); |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 116 | static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 117 | # ifdef FEAT_CMDHIST |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 118 | static char_u *get_history_arg(expand_T *xp, int idx); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 119 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 120 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 121 | static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file); |
| 122 | static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 123 | # endif |
| 124 | #endif |
Bram Moolenaar | 25a6df9 | 2013-04-06 14:29:00 +0200 | [diff] [blame] | 125 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 126 | static void clear_hist_entry(histentry_T *hisptr); |
Bram Moolenaar | 25a6df9 | 2013-04-06 14:29:00 +0200 | [diff] [blame] | 127 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 128 | |
| 129 | #ifdef FEAT_CMDWIN |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 130 | static int open_cmdwin(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 131 | #endif |
| 132 | |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 133 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 134 | static int |
| 135 | #ifdef __BORLANDC__ |
| 136 | _RTLENTRYF |
| 137 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 138 | sort_func_compare(const void *s1, const void *s2); |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 139 | #endif |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 140 | #ifdef FEAT_SEARCH_EXTRA |
| 141 | static void set_search_match(pos_T *t); |
| 142 | #endif |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 143 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 144 | /* |
| 145 | * getcmdline() - accept a command line starting with firstc. |
| 146 | * |
| 147 | * firstc == ':' get ":" command line. |
| 148 | * firstc == '/' or '?' get search pattern |
| 149 | * firstc == '=' get expression |
| 150 | * firstc == '@' get text for input() function |
| 151 | * firstc == '>' get text for debug mode |
| 152 | * firstc == NUL get text for :insert command |
| 153 | * firstc == -1 like NUL, and break on CTRL-C |
| 154 | * |
| 155 | * The line is collected in ccline.cmdbuff, which is reallocated to fit the |
| 156 | * command line. |
| 157 | * |
| 158 | * Careful: getcmdline() can be called recursively! |
| 159 | * |
| 160 | * Return pointer to allocated string if there is a commandline, NULL |
| 161 | * otherwise. |
| 162 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 163 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 164 | getcmdline( |
| 165 | int firstc, |
| 166 | long count UNUSED, /* only used for incremental search */ |
| 167 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 168 | { |
| 169 | int c; |
| 170 | int i; |
| 171 | int j; |
| 172 | int gotesc = FALSE; /* TRUE when <ESC> just typed */ |
| 173 | int do_abbr; /* when TRUE check for abbr. */ |
| 174 | #ifdef FEAT_CMDHIST |
| 175 | char_u *lookfor = NULL; /* string to match */ |
| 176 | int hiscnt; /* current history line in use */ |
| 177 | int histype; /* history type to be used */ |
| 178 | #endif |
| 179 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 180 | pos_T search_start; /* where 'incsearch' starts searching */ |
| 181 | pos_T save_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 182 | colnr_T old_curswant; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 183 | colnr_T init_curswant = curwin->w_curswant; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 184 | colnr_T old_leftcol; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 185 | colnr_T init_leftcol = curwin->w_leftcol; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 186 | linenr_T old_topline; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 187 | linenr_T init_topline = curwin->w_topline; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 188 | pos_T match_start = curwin->w_cursor; |
| 189 | pos_T match_end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 190 | # ifdef FEAT_DIFF |
| 191 | int old_topfill; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 192 | int init_topfill = curwin->w_topfill; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 193 | # endif |
| 194 | linenr_T old_botline; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 195 | linenr_T init_botline = curwin->w_botline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 196 | int did_incsearch = FALSE; |
| 197 | int incsearch_postponed = FALSE; |
| 198 | #endif |
| 199 | int did_wild_list = FALSE; /* did wild_list() recently */ |
| 200 | int wim_index = 0; /* index in wim_flags[] */ |
| 201 | int res; |
| 202 | int save_msg_scroll = msg_scroll; |
| 203 | int save_State = State; /* remember State when called */ |
| 204 | int some_key_typed = FALSE; /* one of the keys was typed */ |
| 205 | #ifdef FEAT_MOUSE |
| 206 | /* mouse drag and release events are ignored, unless they are |
| 207 | * preceded with a mouse down event */ |
| 208 | int ignore_drag_release = TRUE; |
| 209 | #endif |
| 210 | #ifdef FEAT_EVAL |
| 211 | int break_ctrl_c = FALSE; |
| 212 | #endif |
| 213 | expand_T xpc; |
| 214 | long *b_im_ptr = NULL; |
Bram Moolenaar | 4d85051 | 2017-02-09 18:25:14 +0100 | [diff] [blame] | 215 | #if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA) |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 216 | /* Everything that may work recursively should save and restore the |
| 217 | * current command line in save_ccline. That includes update_screen(), a |
| 218 | * custom status line may invoke ":normal". */ |
| 219 | struct cmdline_info save_ccline; |
| 220 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 221 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 222 | #ifdef FEAT_EVAL |
| 223 | if (firstc == -1) |
| 224 | { |
| 225 | firstc = NUL; |
| 226 | break_ctrl_c = TRUE; |
| 227 | } |
| 228 | #endif |
| 229 | #ifdef FEAT_RIGHTLEFT |
| 230 | /* start without Hebrew mapping for a command line */ |
| 231 | if (firstc == ':' || firstc == '=' || firstc == '>') |
| 232 | cmd_hkmap = 0; |
| 233 | #endif |
| 234 | |
| 235 | ccline.overstrike = FALSE; /* always start in insert mode */ |
| 236 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 237 | CLEAR_POS(&match_end); |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 238 | save_cursor = curwin->w_cursor; /* may be restored later */ |
| 239 | search_start = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 240 | old_curswant = curwin->w_curswant; |
| 241 | old_leftcol = curwin->w_leftcol; |
| 242 | old_topline = curwin->w_topline; |
| 243 | # ifdef FEAT_DIFF |
| 244 | old_topfill = curwin->w_topfill; |
| 245 | # endif |
| 246 | old_botline = curwin->w_botline; |
| 247 | #endif |
| 248 | |
| 249 | /* |
| 250 | * set some variables for redrawcmd() |
| 251 | */ |
| 252 | ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 253 | ccline.cmdindent = (firstc > 0 ? indent : 0); |
| 254 | |
| 255 | /* alloc initial ccline.cmdbuff */ |
| 256 | alloc_cmdbuff(exmode_active ? 250 : indent + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 257 | if (ccline.cmdbuff == NULL) |
| 258 | return NULL; /* out of memory */ |
| 259 | ccline.cmdlen = ccline.cmdpos = 0; |
| 260 | ccline.cmdbuff[0] = NUL; |
Bram Moolenaar | f2405ed | 2017-03-16 19:58:25 +0100 | [diff] [blame] | 261 | sb_text_start_cmdline(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 262 | |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 263 | /* autoindent for :insert and :append */ |
| 264 | if (firstc <= 0) |
| 265 | { |
Bram Moolenaar | 2536d4f | 2015-07-17 13:22:51 +0200 | [diff] [blame] | 266 | vim_memset(ccline.cmdbuff, ' ', indent); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 267 | ccline.cmdbuff[indent] = NUL; |
| 268 | ccline.cmdpos = indent; |
| 269 | ccline.cmdspos = indent; |
| 270 | ccline.cmdlen = indent; |
| 271 | } |
| 272 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 273 | ExpandInit(&xpc); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 274 | ccline.xpc = &xpc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 275 | |
| 276 | #ifdef FEAT_RIGHTLEFT |
| 277 | if (curwin->w_p_rl && *curwin->w_p_rlc == 's' |
| 278 | && (firstc == '/' || firstc == '?')) |
| 279 | cmdmsg_rl = TRUE; |
| 280 | else |
| 281 | cmdmsg_rl = FALSE; |
| 282 | #endif |
| 283 | |
| 284 | redir_off = TRUE; /* don't redirect the typed command */ |
| 285 | if (!cmd_silent) |
| 286 | { |
| 287 | i = msg_scrolled; |
| 288 | msg_scrolled = 0; /* avoid wait_return message */ |
| 289 | gotocmdline(TRUE); |
| 290 | msg_scrolled += i; |
| 291 | redrawcmdprompt(); /* draw prompt or indent */ |
| 292 | set_cmdspos(); |
| 293 | } |
| 294 | xpc.xp_context = EXPAND_NOTHING; |
| 295 | xpc.xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 296 | #ifndef BACKSLASH_IN_FILENAME |
| 297 | xpc.xp_shell = FALSE; |
| 298 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 299 | |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 300 | #if defined(FEAT_EVAL) |
| 301 | if (ccline.input_fn) |
| 302 | { |
| 303 | xpc.xp_context = ccline.xp_context; |
| 304 | xpc.xp_pattern = ccline.cmdbuff; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 305 | # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 306 | xpc.xp_arg = ccline.xp_arg; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 307 | # endif |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 308 | } |
| 309 | #endif |
| 310 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 311 | /* |
| 312 | * Avoid scrolling when called by a recursive do_cmdline(), e.g. when |
| 313 | * doing ":@0" when register 0 doesn't contain a CR. |
| 314 | */ |
| 315 | msg_scroll = FALSE; |
| 316 | |
| 317 | State = CMDLINE; |
| 318 | |
| 319 | if (firstc == '/' || firstc == '?' || firstc == '@') |
| 320 | { |
| 321 | /* Use ":lmap" mappings for search pattern and input(). */ |
| 322 | if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) |
| 323 | b_im_ptr = &curbuf->b_p_iminsert; |
| 324 | else |
| 325 | b_im_ptr = &curbuf->b_p_imsearch; |
| 326 | if (*b_im_ptr == B_IMODE_LMAP) |
| 327 | State |= LANGMAP; |
| 328 | #ifdef USE_IM_CONTROL |
| 329 | im_set_active(*b_im_ptr == B_IMODE_IM); |
| 330 | #endif |
| 331 | } |
| 332 | #ifdef USE_IM_CONTROL |
| 333 | else if (p_imcmdline) |
| 334 | im_set_active(TRUE); |
| 335 | #endif |
| 336 | |
| 337 | #ifdef FEAT_MOUSE |
| 338 | setmouse(); |
| 339 | #endif |
| 340 | #ifdef CURSOR_SHAPE |
| 341 | ui_cursor_shape(); /* may show different cursor shape */ |
| 342 | #endif |
| 343 | |
Bram Moolenaar | f4d1145 | 2005-12-02 00:46:37 +0000 | [diff] [blame] | 344 | /* When inside an autocommand for writing "exiting" may be set and |
| 345 | * terminal mode set to cooked. Need to set raw mode here then. */ |
| 346 | settmode(TMODE_RAW); |
| 347 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 348 | #ifdef FEAT_CMDHIST |
| 349 | init_history(); |
| 350 | hiscnt = hislen; /* set hiscnt to impossible history value */ |
| 351 | histype = hist_char2type(firstc); |
| 352 | #endif |
| 353 | |
| 354 | #ifdef FEAT_DIGRAPHS |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 355 | do_digraph(-1); /* init digraph typeahead */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 356 | #endif |
| 357 | |
Bram Moolenaar | 15a35c4 | 2014-06-25 12:26:46 +0200 | [diff] [blame] | 358 | /* If something above caused an error, reset the flags, we do want to type |
| 359 | * and execute commands. Display may be messed up a bit. */ |
| 360 | if (did_emsg) |
| 361 | redrawcmd(); |
| 362 | did_emsg = FALSE; |
| 363 | got_int = FALSE; |
| 364 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 365 | /* |
| 366 | * Collect the command string, handling editing keys. |
| 367 | */ |
| 368 | for (;;) |
| 369 | { |
Bram Moolenaar | 29b2d26 | 2006-09-10 19:07:28 +0000 | [diff] [blame] | 370 | redir_off = TRUE; /* Don't redirect the typed command. |
| 371 | Repeated, because a ":redir" inside |
| 372 | completion may switch it on. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 373 | #ifdef USE_ON_FLY_SCROLL |
| 374 | dont_scroll = FALSE; /* allow scrolling here */ |
| 375 | #endif |
| 376 | quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */ |
| 377 | |
| 378 | cursorcmd(); /* set the cursor on the right spot */ |
Bram Moolenaar | 30405d3 | 2008-01-02 20:55:27 +0000 | [diff] [blame] | 379 | |
| 380 | /* Get a character. Ignore K_IGNORE, it should not do anything, such |
| 381 | * as stop completion. */ |
| 382 | do |
| 383 | { |
| 384 | c = safe_vgetc(); |
| 385 | } while (c == K_IGNORE); |
| 386 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 387 | if (KeyTyped) |
| 388 | { |
| 389 | some_key_typed = TRUE; |
| 390 | #ifdef FEAT_RIGHTLEFT |
| 391 | if (cmd_hkmap) |
| 392 | c = hkmap(c); |
| 393 | # ifdef FEAT_FKMAP |
| 394 | if (cmd_fkmap) |
| 395 | c = cmdl_fkmap(c); |
| 396 | # endif |
| 397 | if (cmdmsg_rl && !KeyStuffed) |
| 398 | { |
| 399 | /* Invert horizontal movements and operations. Only when |
| 400 | * typed by the user directly, not when the result of a |
| 401 | * mapping. */ |
| 402 | switch (c) |
| 403 | { |
| 404 | case K_RIGHT: c = K_LEFT; break; |
| 405 | case K_S_RIGHT: c = K_S_LEFT; break; |
| 406 | case K_C_RIGHT: c = K_C_LEFT; break; |
| 407 | case K_LEFT: c = K_RIGHT; break; |
| 408 | case K_S_LEFT: c = K_S_RIGHT; break; |
| 409 | case K_C_LEFT: c = K_C_RIGHT; break; |
| 410 | } |
| 411 | } |
| 412 | #endif |
| 413 | } |
| 414 | |
| 415 | /* |
| 416 | * Ignore got_int when CTRL-C was typed here. |
| 417 | * Don't ignore it in :global, we really need to break then, e.g., for |
| 418 | * ":g/pat/normal /pat" (without the <CR>). |
| 419 | * Don't ignore it for the input() function. |
| 420 | */ |
| 421 | if ((c == Ctrl_C |
| 422 | #ifdef UNIX |
| 423 | || c == intr_char |
| 424 | #endif |
| 425 | ) |
| 426 | #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) |
| 427 | && firstc != '@' |
| 428 | #endif |
| 429 | #ifdef FEAT_EVAL |
| 430 | && !break_ctrl_c |
| 431 | #endif |
| 432 | && !global_busy) |
| 433 | got_int = FALSE; |
| 434 | |
| 435 | #ifdef FEAT_CMDHIST |
| 436 | /* free old command line when finished moving around in the history |
| 437 | * list */ |
| 438 | if (lookfor != NULL |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 439 | && c != K_S_DOWN && c != K_S_UP |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 440 | && c != K_DOWN && c != K_UP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 441 | && c != K_PAGEDOWN && c != K_PAGEUP |
| 442 | && c != K_KPAGEDOWN && c != K_KPAGEUP |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 443 | && c != K_LEFT && c != K_RIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 444 | && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N))) |
| 445 | { |
| 446 | vim_free(lookfor); |
| 447 | lookfor = NULL; |
| 448 | } |
| 449 | #endif |
| 450 | |
| 451 | /* |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 452 | * When there are matching completions to select <S-Tab> works like |
| 453 | * CTRL-P (unless 'wc' is <S-Tab>). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 454 | */ |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 455 | if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 456 | c = Ctrl_P; |
| 457 | |
| 458 | #ifdef FEAT_WILDMENU |
| 459 | /* Special translations for 'wildmenu' */ |
| 460 | if (did_wild_list && p_wmnu) |
| 461 | { |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 462 | if (c == K_LEFT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 463 | c = Ctrl_P; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 464 | else if (c == K_RIGHT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 465 | c = Ctrl_N; |
| 466 | } |
| 467 | /* Hitting CR after "emenu Name.": complete submenu */ |
| 468 | if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu |
| 469 | && ccline.cmdpos > 1 |
| 470 | && ccline.cmdbuff[ccline.cmdpos - 1] == '.' |
| 471 | && ccline.cmdbuff[ccline.cmdpos - 2] != '\\' |
| 472 | && (c == '\n' || c == '\r' || c == K_KENTER)) |
| 473 | c = K_DOWN; |
| 474 | #endif |
| 475 | |
| 476 | /* free expanded names when finished walking through matches */ |
| 477 | if (xpc.xp_numfiles != -1 |
| 478 | && !(c == p_wc && KeyTyped) && c != p_wcm |
| 479 | && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A |
| 480 | && c != Ctrl_L) |
| 481 | { |
| 482 | (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); |
| 483 | did_wild_list = FALSE; |
| 484 | #ifdef FEAT_WILDMENU |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 485 | if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 486 | #endif |
| 487 | xpc.xp_context = EXPAND_NOTHING; |
| 488 | wim_index = 0; |
| 489 | #ifdef FEAT_WILDMENU |
| 490 | if (p_wmnu && wild_menu_showing != 0) |
| 491 | { |
| 492 | int skt = KeyTyped; |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 493 | int old_RedrawingDisabled = RedrawingDisabled; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 494 | |
| 495 | if (ccline.input_fn) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 496 | RedrawingDisabled = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 497 | |
| 498 | if (wild_menu_showing == WM_SCROLLED) |
| 499 | { |
| 500 | /* Entered command line, move it up */ |
| 501 | cmdline_row--; |
| 502 | redrawcmd(); |
| 503 | } |
| 504 | else if (save_p_ls != -1) |
| 505 | { |
| 506 | /* restore 'laststatus' and 'winminheight' */ |
| 507 | p_ls = save_p_ls; |
| 508 | p_wmh = save_p_wmh; |
| 509 | last_status(FALSE); |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 510 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 511 | update_screen(VALID); /* redraw the screen NOW */ |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 512 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 513 | redrawcmd(); |
| 514 | save_p_ls = -1; |
| 515 | } |
| 516 | else |
| 517 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 518 | win_redraw_last_status(topframe); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 519 | redraw_statuslines(); |
| 520 | } |
| 521 | KeyTyped = skt; |
| 522 | wild_menu_showing = 0; |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 523 | if (ccline.input_fn) |
| 524 | RedrawingDisabled = old_RedrawingDisabled; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 525 | } |
| 526 | #endif |
| 527 | } |
| 528 | |
| 529 | #ifdef FEAT_WILDMENU |
| 530 | /* Special translations for 'wildmenu' */ |
| 531 | if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu) |
| 532 | { |
| 533 | /* Hitting <Down> after "emenu Name.": complete submenu */ |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 534 | if (c == K_DOWN && ccline.cmdpos > 0 |
| 535 | && ccline.cmdbuff[ccline.cmdpos - 1] == '.') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 536 | c = p_wc; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 537 | else if (c == K_UP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 538 | { |
| 539 | /* Hitting <Up>: Remove one submenu name in front of the |
| 540 | * cursor */ |
| 541 | int found = FALSE; |
| 542 | |
| 543 | j = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 544 | i = 0; |
| 545 | while (--j > 0) |
| 546 | { |
| 547 | /* check for start of menu name */ |
| 548 | if (ccline.cmdbuff[j] == ' ' |
| 549 | && ccline.cmdbuff[j - 1] != '\\') |
| 550 | { |
| 551 | i = j + 1; |
| 552 | break; |
| 553 | } |
| 554 | /* check for start of submenu name */ |
| 555 | if (ccline.cmdbuff[j] == '.' |
| 556 | && ccline.cmdbuff[j - 1] != '\\') |
| 557 | { |
| 558 | if (found) |
| 559 | { |
| 560 | i = j + 1; |
| 561 | break; |
| 562 | } |
| 563 | else |
| 564 | found = TRUE; |
| 565 | } |
| 566 | } |
| 567 | if (i > 0) |
| 568 | cmdline_del(i); |
| 569 | c = p_wc; |
| 570 | xpc.xp_context = EXPAND_NOTHING; |
| 571 | } |
| 572 | } |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 573 | if ((xpc.xp_context == EXPAND_FILES |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 574 | || xpc.xp_context == EXPAND_DIRECTORIES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 575 | || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 576 | { |
| 577 | char_u upseg[5]; |
| 578 | |
| 579 | upseg[0] = PATHSEP; |
| 580 | upseg[1] = '.'; |
| 581 | upseg[2] = '.'; |
| 582 | upseg[3] = PATHSEP; |
| 583 | upseg[4] = NUL; |
| 584 | |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 585 | if (c == K_DOWN |
| 586 | && ccline.cmdpos > 0 |
| 587 | && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP |
| 588 | && (ccline.cmdpos < 3 |
| 589 | || ccline.cmdbuff[ccline.cmdpos - 2] != '.' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 590 | || ccline.cmdbuff[ccline.cmdpos - 3] != '.')) |
| 591 | { |
| 592 | /* go down a directory */ |
| 593 | c = p_wc; |
| 594 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 595 | else if (STRNCMP(xpc.xp_pattern, upseg + 1, 3) == 0 && c == K_DOWN) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 596 | { |
| 597 | /* If in a direct ancestor, strip off one ../ to go down */ |
| 598 | int found = FALSE; |
| 599 | |
| 600 | j = ccline.cmdpos; |
| 601 | i = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 602 | while (--j > i) |
| 603 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 604 | #ifdef FEAT_MBYTE |
| 605 | if (has_mbyte) |
| 606 | j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); |
| 607 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 608 | if (vim_ispathsep(ccline.cmdbuff[j])) |
| 609 | { |
| 610 | found = TRUE; |
| 611 | break; |
| 612 | } |
| 613 | } |
| 614 | if (found |
| 615 | && ccline.cmdbuff[j - 1] == '.' |
| 616 | && ccline.cmdbuff[j - 2] == '.' |
| 617 | && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2)) |
| 618 | { |
| 619 | cmdline_del(j - 2); |
| 620 | c = p_wc; |
| 621 | } |
| 622 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 623 | else if (c == K_UP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 624 | { |
| 625 | /* go up a directory */ |
| 626 | int found = FALSE; |
| 627 | |
| 628 | j = ccline.cmdpos - 1; |
| 629 | i = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 630 | while (--j > i) |
| 631 | { |
| 632 | #ifdef FEAT_MBYTE |
| 633 | if (has_mbyte) |
| 634 | j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); |
| 635 | #endif |
| 636 | if (vim_ispathsep(ccline.cmdbuff[j]) |
| 637 | #ifdef BACKSLASH_IN_FILENAME |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 638 | && vim_strchr((char_u *)" *?[{`$%#", |
| 639 | ccline.cmdbuff[j + 1]) == NULL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 640 | #endif |
| 641 | ) |
| 642 | { |
| 643 | if (found) |
| 644 | { |
| 645 | i = j + 1; |
| 646 | break; |
| 647 | } |
| 648 | else |
| 649 | found = TRUE; |
| 650 | } |
| 651 | } |
| 652 | |
| 653 | if (!found) |
| 654 | j = i; |
| 655 | else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0) |
| 656 | j += 4; |
| 657 | else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0 |
| 658 | && j == i) |
| 659 | j += 3; |
| 660 | else |
| 661 | j = 0; |
| 662 | if (j > 0) |
| 663 | { |
| 664 | /* TODO this is only for DOS/UNIX systems - need to put in |
| 665 | * machine-specific stuff here and in upseg init */ |
| 666 | cmdline_del(j); |
| 667 | put_on_cmdline(upseg + 1, 3, FALSE); |
| 668 | } |
| 669 | else if (ccline.cmdpos > i) |
| 670 | cmdline_del(i); |
Bram Moolenaar | 96a8964 | 2011-12-08 18:44:51 +0100 | [diff] [blame] | 671 | |
| 672 | /* Now complete in the new directory. Set KeyTyped in case the |
| 673 | * Up key came from a mapping. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 674 | c = p_wc; |
Bram Moolenaar | 96a8964 | 2011-12-08 18:44:51 +0100 | [diff] [blame] | 675 | KeyTyped = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 676 | } |
| 677 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 678 | |
| 679 | #endif /* FEAT_WILDMENU */ |
| 680 | |
| 681 | /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert |
| 682 | * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */ |
| 683 | if (c == Ctrl_BSL) |
| 684 | { |
| 685 | ++no_mapping; |
| 686 | ++allow_keys; |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 687 | c = plain_vgetc(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 688 | --no_mapping; |
| 689 | --allow_keys; |
Bram Moolenaar | b735681 | 2012-10-11 04:04:37 +0200 | [diff] [blame] | 690 | /* CTRL-\ e doesn't work when obtaining an expression, unless it |
| 691 | * is in a mapping. */ |
| 692 | if (c != Ctrl_N && c != Ctrl_G && (c != 'e' |
| 693 | || (ccline.cmdfirstc == '=' && KeyTyped))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 694 | { |
| 695 | vungetc(c); |
| 696 | c = Ctrl_BSL; |
| 697 | } |
| 698 | #ifdef FEAT_EVAL |
| 699 | else if (c == 'e') |
| 700 | { |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 701 | char_u *p = NULL; |
| 702 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 703 | |
| 704 | /* |
| 705 | * Replace the command line with the result of an expression. |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 706 | * Need to save and restore the current command line, to be |
| 707 | * able to enter a new one... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 708 | */ |
| 709 | if (ccline.cmdpos == ccline.cmdlen) |
| 710 | new_cmdpos = 99999; /* keep it at the end */ |
| 711 | else |
| 712 | new_cmdpos = ccline.cmdpos; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 713 | |
| 714 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 715 | c = get_expr_register(); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 716 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 717 | if (c == '=') |
| 718 | { |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 719 | /* Need to save and restore ccline. And set "textlock" |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 720 | * to avoid nasty things like going to another buffer when |
| 721 | * evaluating an expression. */ |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 722 | save_cmdline(&save_ccline); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 723 | ++textlock; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 724 | p = get_expr_line(); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 725 | --textlock; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 726 | restore_cmdline(&save_ccline); |
| 727 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 728 | if (p != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 729 | { |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 730 | len = (int)STRLEN(p); |
| 731 | if (realloc_cmdbuff(len + 1) == OK) |
| 732 | { |
| 733 | ccline.cmdlen = len; |
| 734 | STRCPY(ccline.cmdbuff, p); |
| 735 | vim_free(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 736 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 737 | /* Restore the cursor or use the position set with |
| 738 | * set_cmdline_pos(). */ |
| 739 | if (new_cmdpos > ccline.cmdlen) |
| 740 | ccline.cmdpos = ccline.cmdlen; |
| 741 | else |
| 742 | ccline.cmdpos = new_cmdpos; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 743 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 744 | KeyTyped = FALSE; /* Don't do p_wc completion. */ |
| 745 | redrawcmd(); |
| 746 | goto cmdline_changed; |
| 747 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 748 | } |
| 749 | } |
| 750 | beep_flush(); |
Bram Moolenaar | 66b4bf8 | 2010-11-16 14:06:08 +0100 | [diff] [blame] | 751 | got_int = FALSE; /* don't abandon the command line */ |
| 752 | did_emsg = FALSE; |
| 753 | emsg_on_display = FALSE; |
| 754 | redrawcmd(); |
| 755 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 756 | } |
| 757 | #endif |
| 758 | else |
| 759 | { |
| 760 | if (c == Ctrl_G && p_im && restart_edit == 0) |
| 761 | restart_edit = 'a'; |
| 762 | gotesc = TRUE; /* will free ccline.cmdbuff after putting it |
| 763 | in history */ |
| 764 | goto returncmd; /* back to Normal mode */ |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | #ifdef FEAT_CMDWIN |
| 769 | if (c == cedit_key || c == K_CMDWIN) |
| 770 | { |
Bram Moolenaar | 58da707 | 2014-09-09 18:45:49 +0200 | [diff] [blame] | 771 | if (ex_normal_busy == 0 && got_int == FALSE) |
| 772 | { |
| 773 | /* |
| 774 | * Open a window to edit the command line (and history). |
| 775 | */ |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 776 | c = open_cmdwin(); |
Bram Moolenaar | 58da707 | 2014-09-09 18:45:49 +0200 | [diff] [blame] | 777 | some_key_typed = TRUE; |
| 778 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 779 | } |
| 780 | # ifdef FEAT_DIGRAPHS |
| 781 | else |
| 782 | # endif |
| 783 | #endif |
| 784 | #ifdef FEAT_DIGRAPHS |
| 785 | c = do_digraph(c); |
| 786 | #endif |
| 787 | |
| 788 | if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC |
| 789 | && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) |
| 790 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 791 | /* In Ex mode a backslash escapes a newline. */ |
| 792 | if (exmode_active |
| 793 | && c != ESC |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 794 | && ccline.cmdpos == ccline.cmdlen |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 795 | && ccline.cmdpos > 0 |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 796 | && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 797 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 798 | if (c == K_KENTER) |
| 799 | c = '\n'; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 800 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 801 | else |
| 802 | { |
| 803 | gotesc = FALSE; /* Might have typed ESC previously, don't |
| 804 | truncate the cmdline now. */ |
| 805 | if (ccheck_abbr(c + ABBR_OFF)) |
| 806 | goto cmdline_changed; |
| 807 | if (!cmd_silent) |
| 808 | { |
| 809 | windgoto(msg_row, 0); |
| 810 | out_flush(); |
| 811 | } |
| 812 | break; |
| 813 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 814 | } |
| 815 | |
| 816 | /* |
| 817 | * Completion for 'wildchar' or 'wildcharm' key. |
| 818 | * - hitting <ESC> twice means: abandon command line. |
| 819 | * - wildcard expansion is only done when the 'wildchar' key is really |
| 820 | * typed, not when it comes from a macro |
| 821 | */ |
| 822 | if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) |
| 823 | { |
| 824 | if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */ |
| 825 | { |
| 826 | /* if 'wildmode' contains "list" may still need to list */ |
| 827 | if (xpc.xp_numfiles > 1 |
| 828 | && !did_wild_list |
| 829 | && (wim_flags[wim_index] & WIM_LIST)) |
| 830 | { |
| 831 | (void)showmatches(&xpc, FALSE); |
| 832 | redrawcmd(); |
| 833 | did_wild_list = TRUE; |
| 834 | } |
| 835 | if (wim_flags[wim_index] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 836 | res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 837 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 838 | else if (wim_flags[wim_index] & WIM_FULL) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 839 | res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
| 840 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 841 | else |
| 842 | res = OK; /* don't insert 'wildchar' now */ |
| 843 | } |
| 844 | else /* typed p_wc first time */ |
| 845 | { |
| 846 | wim_index = 0; |
| 847 | j = ccline.cmdpos; |
| 848 | /* if 'wildmode' first contains "longest", get longest |
| 849 | * common part */ |
| 850 | if (wim_flags[0] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 851 | res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 852 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 853 | else |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 854 | res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP, |
| 855 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 856 | |
| 857 | /* if interrupted while completing, behave like it failed */ |
| 858 | if (got_int) |
| 859 | { |
| 860 | (void)vpeekc(); /* remove <C-C> from input stream */ |
| 861 | got_int = FALSE; /* don't abandon the command line */ |
| 862 | (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); |
| 863 | #ifdef FEAT_WILDMENU |
| 864 | xpc.xp_context = EXPAND_NOTHING; |
| 865 | #endif |
| 866 | goto cmdline_changed; |
| 867 | } |
| 868 | |
| 869 | /* when more than one match, and 'wildmode' first contains |
| 870 | * "list", or no change and 'wildmode' contains "longest,list", |
| 871 | * list all matches */ |
| 872 | if (res == OK && xpc.xp_numfiles > 1) |
| 873 | { |
| 874 | /* a "longest" that didn't do anything is skipped (but not |
| 875 | * "list:longest") */ |
| 876 | if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) |
| 877 | wim_index = 1; |
| 878 | if ((wim_flags[wim_index] & WIM_LIST) |
| 879 | #ifdef FEAT_WILDMENU |
| 880 | || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) |
| 881 | #endif |
| 882 | ) |
| 883 | { |
| 884 | if (!(wim_flags[0] & WIM_LONGEST)) |
| 885 | { |
| 886 | #ifdef FEAT_WILDMENU |
| 887 | int p_wmnu_save = p_wmnu; |
| 888 | p_wmnu = 0; |
| 889 | #endif |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 890 | /* remove match */ |
| 891 | nextwild(&xpc, WILD_PREV, 0, firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 892 | #ifdef FEAT_WILDMENU |
| 893 | p_wmnu = p_wmnu_save; |
| 894 | #endif |
| 895 | } |
| 896 | #ifdef FEAT_WILDMENU |
| 897 | (void)showmatches(&xpc, p_wmnu |
| 898 | && ((wim_flags[wim_index] & WIM_LIST) == 0)); |
| 899 | #else |
| 900 | (void)showmatches(&xpc, FALSE); |
| 901 | #endif |
| 902 | redrawcmd(); |
| 903 | did_wild_list = TRUE; |
| 904 | if (wim_flags[wim_index] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 905 | nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 906 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 907 | else if (wim_flags[wim_index] & WIM_FULL) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 908 | nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
| 909 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 910 | } |
| 911 | else |
Bram Moolenaar | 165bc69 | 2015-07-21 17:53:25 +0200 | [diff] [blame] | 912 | vim_beep(BO_WILD); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 913 | } |
| 914 | #ifdef FEAT_WILDMENU |
| 915 | else if (xpc.xp_numfiles == -1) |
| 916 | xpc.xp_context = EXPAND_NOTHING; |
| 917 | #endif |
| 918 | } |
| 919 | if (wim_index < 3) |
| 920 | ++wim_index; |
| 921 | if (c == ESC) |
| 922 | gotesc = TRUE; |
| 923 | if (res == OK) |
| 924 | goto cmdline_changed; |
| 925 | } |
| 926 | |
| 927 | gotesc = FALSE; |
| 928 | |
| 929 | /* <S-Tab> goes to last match, in a clumsy way */ |
| 930 | if (c == K_S_TAB && KeyTyped) |
| 931 | { |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 932 | if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
| 933 | && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK |
| 934 | && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 935 | goto cmdline_changed; |
| 936 | } |
| 937 | |
| 938 | if (c == NUL || c == K_ZERO) /* NUL is stored as NL */ |
| 939 | c = NL; |
| 940 | |
| 941 | do_abbr = TRUE; /* default: check for abbreviation */ |
| 942 | |
| 943 | /* |
| 944 | * Big switch for a typed command line character. |
| 945 | */ |
| 946 | switch (c) |
| 947 | { |
| 948 | case K_BS: |
| 949 | case Ctrl_H: |
| 950 | case K_DEL: |
| 951 | case K_KDEL: |
| 952 | case Ctrl_W: |
| 953 | #ifdef FEAT_FKMAP |
| 954 | if (cmd_fkmap && c == K_BS) |
| 955 | c = K_DEL; |
| 956 | #endif |
| 957 | if (c == K_KDEL) |
| 958 | c = K_DEL; |
| 959 | |
| 960 | /* |
| 961 | * delete current character is the same as backspace on next |
| 962 | * character, except at end of line |
| 963 | */ |
| 964 | if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) |
| 965 | ++ccline.cmdpos; |
| 966 | #ifdef FEAT_MBYTE |
| 967 | if (has_mbyte && c == K_DEL) |
| 968 | ccline.cmdpos += mb_off_next(ccline.cmdbuff, |
| 969 | ccline.cmdbuff + ccline.cmdpos); |
| 970 | #endif |
| 971 | if (ccline.cmdpos > 0) |
| 972 | { |
| 973 | char_u *p; |
| 974 | |
| 975 | j = ccline.cmdpos; |
| 976 | p = ccline.cmdbuff + j; |
| 977 | #ifdef FEAT_MBYTE |
| 978 | if (has_mbyte) |
| 979 | { |
| 980 | p = mb_prevptr(ccline.cmdbuff, p); |
| 981 | if (c == Ctrl_W) |
| 982 | { |
| 983 | while (p > ccline.cmdbuff && vim_isspace(*p)) |
| 984 | p = mb_prevptr(ccline.cmdbuff, p); |
| 985 | i = mb_get_class(p); |
| 986 | while (p > ccline.cmdbuff && mb_get_class(p) == i) |
| 987 | p = mb_prevptr(ccline.cmdbuff, p); |
| 988 | if (mb_get_class(p) != i) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 989 | p += (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 990 | } |
| 991 | } |
| 992 | else |
| 993 | #endif |
| 994 | if (c == Ctrl_W) |
| 995 | { |
| 996 | while (p > ccline.cmdbuff && vim_isspace(p[-1])) |
| 997 | --p; |
| 998 | i = vim_iswordc(p[-1]); |
| 999 | while (p > ccline.cmdbuff && !vim_isspace(p[-1]) |
| 1000 | && vim_iswordc(p[-1]) == i) |
| 1001 | --p; |
| 1002 | } |
| 1003 | else |
| 1004 | --p; |
| 1005 | ccline.cmdpos = (int)(p - ccline.cmdbuff); |
| 1006 | ccline.cmdlen -= j - ccline.cmdpos; |
| 1007 | i = ccline.cmdpos; |
| 1008 | while (i < ccline.cmdlen) |
| 1009 | ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; |
| 1010 | |
| 1011 | /* Truncate at the end, required for multi-byte chars. */ |
| 1012 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1013 | #ifdef FEAT_SEARCH_EXTRA |
| 1014 | if (ccline.cmdlen == 0) |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1015 | { |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1016 | search_start = save_cursor; |
| 1017 | /* save view settings, so that the screen |
| 1018 | * won't be restored at the wrong position */ |
| 1019 | old_curswant = init_curswant; |
| 1020 | old_leftcol = init_leftcol; |
| 1021 | old_topline = init_topline; |
| 1022 | # ifdef FEAT_DIFF |
| 1023 | old_topfill = init_topfill; |
| 1024 | # endif |
| 1025 | old_botline = init_botline; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1026 | } |
| 1027 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1028 | redrawcmd(); |
| 1029 | } |
| 1030 | else if (ccline.cmdlen == 0 && c != Ctrl_W |
| 1031 | && ccline.cmdprompt == NULL && indent == 0) |
| 1032 | { |
| 1033 | /* In ex and debug mode it doesn't make sense to return. */ |
| 1034 | if (exmode_active |
| 1035 | #ifdef FEAT_EVAL |
| 1036 | || ccline.cmdfirstc == '>' |
| 1037 | #endif |
| 1038 | ) |
| 1039 | goto cmdline_not_changed; |
| 1040 | |
| 1041 | vim_free(ccline.cmdbuff); /* no commandline to return */ |
| 1042 | ccline.cmdbuff = NULL; |
| 1043 | if (!cmd_silent) |
| 1044 | { |
| 1045 | #ifdef FEAT_RIGHTLEFT |
| 1046 | if (cmdmsg_rl) |
| 1047 | msg_col = Columns; |
| 1048 | else |
| 1049 | #endif |
| 1050 | msg_col = 0; |
| 1051 | msg_putchar(' '); /* delete ':' */ |
| 1052 | } |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1053 | #ifdef FEAT_SEARCH_EXTRA |
| 1054 | if (ccline.cmdlen == 0) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1055 | search_start = save_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1056 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1057 | redraw_cmdline = TRUE; |
| 1058 | goto returncmd; /* back to cmd mode */ |
| 1059 | } |
| 1060 | goto cmdline_changed; |
| 1061 | |
| 1062 | case K_INS: |
| 1063 | case K_KINS: |
| 1064 | #ifdef FEAT_FKMAP |
| 1065 | /* if Farsi mode set, we are in reverse insert mode - |
| 1066 | Do not change the mode */ |
| 1067 | if (cmd_fkmap) |
| 1068 | beep_flush(); |
| 1069 | else |
| 1070 | #endif |
| 1071 | ccline.overstrike = !ccline.overstrike; |
| 1072 | #ifdef CURSOR_SHAPE |
| 1073 | ui_cursor_shape(); /* may show different cursor shape */ |
| 1074 | #endif |
| 1075 | goto cmdline_not_changed; |
| 1076 | |
| 1077 | case Ctrl_HAT: |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 1078 | if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1079 | { |
| 1080 | /* ":lmap" mappings exists, toggle use of mappings. */ |
| 1081 | State ^= LANGMAP; |
| 1082 | #ifdef USE_IM_CONTROL |
| 1083 | im_set_active(FALSE); /* Disable input method */ |
| 1084 | #endif |
| 1085 | if (b_im_ptr != NULL) |
| 1086 | { |
| 1087 | if (State & LANGMAP) |
| 1088 | *b_im_ptr = B_IMODE_LMAP; |
| 1089 | else |
| 1090 | *b_im_ptr = B_IMODE_NONE; |
| 1091 | } |
| 1092 | } |
| 1093 | #ifdef USE_IM_CONTROL |
| 1094 | else |
| 1095 | { |
| 1096 | /* There are no ":lmap" mappings, toggle IM. When |
| 1097 | * 'imdisable' is set don't try getting the status, it's |
| 1098 | * always off. */ |
| 1099 | if ((p_imdisable && b_im_ptr != NULL) |
| 1100 | ? *b_im_ptr == B_IMODE_IM : im_get_status()) |
| 1101 | { |
| 1102 | im_set_active(FALSE); /* Disable input method */ |
| 1103 | if (b_im_ptr != NULL) |
| 1104 | *b_im_ptr = B_IMODE_NONE; |
| 1105 | } |
| 1106 | else |
| 1107 | { |
| 1108 | im_set_active(TRUE); /* Enable input method */ |
| 1109 | if (b_im_ptr != NULL) |
| 1110 | *b_im_ptr = B_IMODE_IM; |
| 1111 | } |
| 1112 | } |
| 1113 | #endif |
| 1114 | if (b_im_ptr != NULL) |
| 1115 | { |
| 1116 | if (b_im_ptr == &curbuf->b_p_iminsert) |
| 1117 | set_iminsert_global(); |
| 1118 | else |
| 1119 | set_imsearch_global(); |
| 1120 | } |
| 1121 | #ifdef CURSOR_SHAPE |
| 1122 | ui_cursor_shape(); /* may show different cursor shape */ |
| 1123 | #endif |
| 1124 | #if defined(FEAT_WINDOWS) && defined(FEAT_KEYMAP) |
| 1125 | /* Show/unshow value of 'keymap' in status lines later. */ |
| 1126 | status_redraw_curbuf(); |
| 1127 | #endif |
| 1128 | goto cmdline_not_changed; |
| 1129 | |
| 1130 | /* case '@': only in very old vi */ |
| 1131 | case Ctrl_U: |
| 1132 | /* delete all characters left of the cursor */ |
| 1133 | j = ccline.cmdpos; |
| 1134 | ccline.cmdlen -= j; |
| 1135 | i = ccline.cmdpos = 0; |
| 1136 | while (i < ccline.cmdlen) |
| 1137 | ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; |
| 1138 | /* Truncate at the end, required for multi-byte chars. */ |
| 1139 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1140 | #ifdef FEAT_SEARCH_EXTRA |
| 1141 | if (ccline.cmdlen == 0) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1142 | search_start = save_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1143 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1144 | redrawcmd(); |
| 1145 | goto cmdline_changed; |
| 1146 | |
| 1147 | #ifdef FEAT_CLIPBOARD |
| 1148 | case Ctrl_Y: |
| 1149 | /* Copy the modeless selection, if there is one. */ |
| 1150 | if (clip_star.state != SELECT_CLEARED) |
| 1151 | { |
| 1152 | if (clip_star.state == SELECT_DONE) |
| 1153 | clip_copy_modeless_selection(TRUE); |
| 1154 | goto cmdline_not_changed; |
| 1155 | } |
| 1156 | break; |
| 1157 | #endif |
| 1158 | |
| 1159 | case ESC: /* get here if p_wc != ESC or when ESC typed twice */ |
| 1160 | case Ctrl_C: |
Bram Moolenaar | f4d1145 | 2005-12-02 00:46:37 +0000 | [diff] [blame] | 1161 | /* In exmode it doesn't make sense to return. Except when |
Bram Moolenaar | 7c62692 | 2005-02-07 22:01:03 +0000 | [diff] [blame] | 1162 | * ":normal" runs out of characters. */ |
| 1163 | if (exmode_active |
Bram Moolenaar | e2c3810 | 2016-01-31 14:55:40 +0100 | [diff] [blame] | 1164 | && (ex_normal_busy == 0 || typebuf.tb_len > 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1165 | goto cmdline_not_changed; |
| 1166 | |
| 1167 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1168 | putting it in history */ |
| 1169 | goto returncmd; /* back to cmd mode */ |
| 1170 | |
| 1171 | case Ctrl_R: /* insert register */ |
| 1172 | #ifdef USE_ON_FLY_SCROLL |
| 1173 | dont_scroll = TRUE; /* disallow scrolling here */ |
| 1174 | #endif |
| 1175 | putcmdline('"', TRUE); |
| 1176 | ++no_mapping; |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 1177 | i = c = plain_vgetc(); /* CTRL-R <char> */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1178 | if (i == Ctrl_O) |
| 1179 | i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */ |
| 1180 | if (i == Ctrl_R) |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 1181 | c = plain_vgetc(); /* CTRL-R CTRL-R <char> */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1182 | --no_mapping; |
| 1183 | #ifdef FEAT_EVAL |
| 1184 | /* |
| 1185 | * Insert the result of an expression. |
| 1186 | * Need to save the current command line, to be able to enter |
| 1187 | * a new one... |
| 1188 | */ |
| 1189 | new_cmdpos = -1; |
| 1190 | if (c == '=') |
| 1191 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1192 | if (ccline.cmdfirstc == '=')/* can't do this recursively */ |
| 1193 | { |
| 1194 | beep_flush(); |
| 1195 | c = ESC; |
| 1196 | } |
| 1197 | else |
| 1198 | { |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 1199 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1200 | c = get_expr_register(); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 1201 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1202 | } |
| 1203 | } |
| 1204 | #endif |
| 1205 | if (c != ESC) /* use ESC to cancel inserting register */ |
| 1206 | { |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1207 | cmdline_paste(c, i == Ctrl_R, FALSE); |
Bram Moolenaar | acf5345 | 2005-12-17 22:06:52 +0000 | [diff] [blame] | 1208 | |
Bram Moolenaar | a9b1e74 | 2005-12-19 22:14:58 +0000 | [diff] [blame] | 1209 | #ifdef FEAT_EVAL |
Bram Moolenaar | acf5345 | 2005-12-17 22:06:52 +0000 | [diff] [blame] | 1210 | /* When there was a serious error abort getting the |
| 1211 | * command line. */ |
| 1212 | if (aborting()) |
| 1213 | { |
| 1214 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1215 | putting it in history */ |
| 1216 | goto returncmd; /* back to cmd mode */ |
| 1217 | } |
Bram Moolenaar | a9b1e74 | 2005-12-19 22:14:58 +0000 | [diff] [blame] | 1218 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1219 | KeyTyped = FALSE; /* Don't do p_wc completion. */ |
| 1220 | #ifdef FEAT_EVAL |
| 1221 | if (new_cmdpos >= 0) |
| 1222 | { |
| 1223 | /* set_cmdline_pos() was used */ |
| 1224 | if (new_cmdpos > ccline.cmdlen) |
| 1225 | ccline.cmdpos = ccline.cmdlen; |
| 1226 | else |
| 1227 | ccline.cmdpos = new_cmdpos; |
| 1228 | } |
| 1229 | #endif |
| 1230 | } |
| 1231 | redrawcmd(); |
| 1232 | goto cmdline_changed; |
| 1233 | |
| 1234 | case Ctrl_D: |
| 1235 | if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) |
| 1236 | break; /* Use ^D as normal char instead */ |
| 1237 | |
| 1238 | redrawcmd(); |
| 1239 | continue; /* don't do incremental search now */ |
| 1240 | |
| 1241 | case K_RIGHT: |
| 1242 | case K_S_RIGHT: |
| 1243 | case K_C_RIGHT: |
| 1244 | do |
| 1245 | { |
| 1246 | if (ccline.cmdpos >= ccline.cmdlen) |
| 1247 | break; |
| 1248 | i = cmdline_charsize(ccline.cmdpos); |
| 1249 | if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) |
| 1250 | break; |
| 1251 | ccline.cmdspos += i; |
| 1252 | #ifdef FEAT_MBYTE |
| 1253 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1254 | ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1255 | + ccline.cmdpos); |
| 1256 | else |
| 1257 | #endif |
| 1258 | ++ccline.cmdpos; |
| 1259 | } |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1260 | while ((c == K_S_RIGHT || c == K_C_RIGHT |
| 1261 | || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1262 | && ccline.cmdbuff[ccline.cmdpos] != ' '); |
| 1263 | #ifdef FEAT_MBYTE |
| 1264 | if (has_mbyte) |
| 1265 | set_cmdspos_cursor(); |
| 1266 | #endif |
| 1267 | goto cmdline_not_changed; |
| 1268 | |
| 1269 | case K_LEFT: |
| 1270 | case K_S_LEFT: |
| 1271 | case K_C_LEFT: |
Bram Moolenaar | 49feabd | 2007-12-07 19:28:58 +0000 | [diff] [blame] | 1272 | if (ccline.cmdpos == 0) |
| 1273 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1274 | do |
| 1275 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1276 | --ccline.cmdpos; |
| 1277 | #ifdef FEAT_MBYTE |
| 1278 | if (has_mbyte) /* move to first byte of char */ |
| 1279 | ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, |
| 1280 | ccline.cmdbuff + ccline.cmdpos); |
| 1281 | #endif |
| 1282 | ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); |
| 1283 | } |
Bram Moolenaar | 49feabd | 2007-12-07 19:28:58 +0000 | [diff] [blame] | 1284 | while (ccline.cmdpos > 0 |
| 1285 | && (c == K_S_LEFT || c == K_C_LEFT |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1286 | || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1287 | && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
| 1288 | #ifdef FEAT_MBYTE |
| 1289 | if (has_mbyte) |
| 1290 | set_cmdspos_cursor(); |
| 1291 | #endif |
| 1292 | goto cmdline_not_changed; |
| 1293 | |
| 1294 | case K_IGNORE: |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 1295 | /* Ignore mouse event or open_cmdwin() result. */ |
Bram Moolenaar | 30405d3 | 2008-01-02 20:55:27 +0000 | [diff] [blame] | 1296 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1297 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 1298 | #ifdef FEAT_GUI_W32 |
| 1299 | /* On Win32 ignore <M-F4>, we get it when closing the window was |
| 1300 | * cancelled. */ |
| 1301 | case K_F4: |
| 1302 | if (mod_mask == MOD_MASK_ALT) |
| 1303 | { |
| 1304 | redrawcmd(); /* somehow the cmdline is cleared */ |
| 1305 | goto cmdline_not_changed; |
| 1306 | } |
| 1307 | break; |
| 1308 | #endif |
| 1309 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1310 | #ifdef FEAT_MOUSE |
| 1311 | case K_MIDDLEDRAG: |
| 1312 | case K_MIDDLERELEASE: |
| 1313 | goto cmdline_not_changed; /* Ignore mouse */ |
| 1314 | |
| 1315 | case K_MIDDLEMOUSE: |
| 1316 | # ifdef FEAT_GUI |
| 1317 | /* When GUI is active, also paste when 'mouse' is empty */ |
| 1318 | if (!gui.in_use) |
| 1319 | # endif |
| 1320 | if (!mouse_has(MOUSE_COMMAND)) |
| 1321 | goto cmdline_not_changed; /* Ignore mouse */ |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1322 | # ifdef FEAT_CLIPBOARD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1323 | if (clip_star.available) |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1324 | cmdline_paste('*', TRUE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1325 | else |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1326 | # endif |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1327 | cmdline_paste(0, TRUE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1328 | redrawcmd(); |
| 1329 | goto cmdline_changed; |
| 1330 | |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1331 | # ifdef FEAT_DND |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1332 | case K_DROP: |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1333 | cmdline_paste('~', TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1334 | redrawcmd(); |
| 1335 | goto cmdline_changed; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1336 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1337 | |
| 1338 | case K_LEFTDRAG: |
| 1339 | case K_LEFTRELEASE: |
| 1340 | case K_RIGHTDRAG: |
| 1341 | case K_RIGHTRELEASE: |
| 1342 | /* Ignore drag and release events when the button-down wasn't |
| 1343 | * seen before. */ |
| 1344 | if (ignore_drag_release) |
| 1345 | goto cmdline_not_changed; |
| 1346 | /* FALLTHROUGH */ |
| 1347 | case K_LEFTMOUSE: |
| 1348 | case K_RIGHTMOUSE: |
| 1349 | if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) |
| 1350 | ignore_drag_release = TRUE; |
| 1351 | else |
| 1352 | ignore_drag_release = FALSE; |
| 1353 | # ifdef FEAT_GUI |
| 1354 | /* When GUI is active, also move when 'mouse' is empty */ |
| 1355 | if (!gui.in_use) |
| 1356 | # endif |
| 1357 | if (!mouse_has(MOUSE_COMMAND)) |
| 1358 | goto cmdline_not_changed; /* Ignore mouse */ |
| 1359 | # ifdef FEAT_CLIPBOARD |
| 1360 | if (mouse_row < cmdline_row && clip_star.available) |
| 1361 | { |
| 1362 | int button, is_click, is_drag; |
| 1363 | |
| 1364 | /* |
| 1365 | * Handle modeless selection. |
| 1366 | */ |
| 1367 | button = get_mouse_button(KEY2TERMCAP1(c), |
| 1368 | &is_click, &is_drag); |
| 1369 | if (mouse_model_popup() && button == MOUSE_LEFT |
| 1370 | && (mod_mask & MOD_MASK_SHIFT)) |
| 1371 | { |
| 1372 | /* Translate shift-left to right button. */ |
| 1373 | button = MOUSE_RIGHT; |
| 1374 | mod_mask &= ~MOD_MASK_SHIFT; |
| 1375 | } |
| 1376 | clip_modeless(button, is_click, is_drag); |
| 1377 | goto cmdline_not_changed; |
| 1378 | } |
| 1379 | # endif |
| 1380 | |
| 1381 | set_cmdspos(); |
| 1382 | for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; |
| 1383 | ++ccline.cmdpos) |
| 1384 | { |
| 1385 | i = cmdline_charsize(ccline.cmdpos); |
| 1386 | if (mouse_row <= cmdline_row + ccline.cmdspos / Columns |
| 1387 | && mouse_col < ccline.cmdspos % Columns + i) |
| 1388 | break; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1389 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1390 | if (has_mbyte) |
| 1391 | { |
| 1392 | /* Count ">" for double-wide char that doesn't fit. */ |
| 1393 | correct_cmdspos(ccline.cmdpos, i); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1394 | ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1395 | + ccline.cmdpos) - 1; |
| 1396 | } |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1397 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1398 | ccline.cmdspos += i; |
| 1399 | } |
| 1400 | goto cmdline_not_changed; |
| 1401 | |
| 1402 | /* Mouse scroll wheel: ignored here */ |
| 1403 | case K_MOUSEDOWN: |
| 1404 | case K_MOUSEUP: |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 1405 | case K_MOUSELEFT: |
| 1406 | case K_MOUSERIGHT: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1407 | /* Alternate buttons ignored here */ |
| 1408 | case K_X1MOUSE: |
| 1409 | case K_X1DRAG: |
| 1410 | case K_X1RELEASE: |
| 1411 | case K_X2MOUSE: |
| 1412 | case K_X2DRAG: |
| 1413 | case K_X2RELEASE: |
| 1414 | goto cmdline_not_changed; |
| 1415 | |
| 1416 | #endif /* FEAT_MOUSE */ |
| 1417 | |
| 1418 | #ifdef FEAT_GUI |
| 1419 | case K_LEFTMOUSE_NM: /* mousefocus click, ignored */ |
| 1420 | case K_LEFTRELEASE_NM: |
| 1421 | goto cmdline_not_changed; |
| 1422 | |
| 1423 | case K_VER_SCROLLBAR: |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 1424 | if (msg_scrolled == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1425 | { |
| 1426 | gui_do_scroll(); |
| 1427 | redrawcmd(); |
| 1428 | } |
| 1429 | goto cmdline_not_changed; |
| 1430 | |
| 1431 | case K_HOR_SCROLLBAR: |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 1432 | if (msg_scrolled == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1433 | { |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 1434 | gui_do_horiz_scroll(scrollbar_value, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1435 | redrawcmd(); |
| 1436 | } |
| 1437 | goto cmdline_not_changed; |
| 1438 | #endif |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1439 | #ifdef FEAT_GUI_TABLINE |
| 1440 | case K_TABLINE: |
| 1441 | case K_TABMENU: |
| 1442 | /* Don't want to change any tabs here. Make sure the same tab |
| 1443 | * is still selected. */ |
| 1444 | if (gui_use_tabline()) |
| 1445 | gui_mch_set_curtab(tabpage_index(curtab)); |
| 1446 | goto cmdline_not_changed; |
| 1447 | #endif |
| 1448 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1449 | case K_SELECT: /* end of Select mode mapping - ignore */ |
| 1450 | goto cmdline_not_changed; |
| 1451 | |
| 1452 | case Ctrl_B: /* begin of command line */ |
| 1453 | case K_HOME: |
| 1454 | case K_KHOME: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1455 | case K_S_HOME: |
| 1456 | case K_C_HOME: |
| 1457 | ccline.cmdpos = 0; |
| 1458 | set_cmdspos(); |
| 1459 | goto cmdline_not_changed; |
| 1460 | |
| 1461 | case Ctrl_E: /* end of command line */ |
| 1462 | case K_END: |
| 1463 | case K_KEND: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1464 | case K_S_END: |
| 1465 | case K_C_END: |
| 1466 | ccline.cmdpos = ccline.cmdlen; |
| 1467 | set_cmdspos_cursor(); |
| 1468 | goto cmdline_not_changed; |
| 1469 | |
| 1470 | case Ctrl_A: /* all matches */ |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1471 | if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1472 | break; |
| 1473 | goto cmdline_changed; |
| 1474 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1475 | case Ctrl_L: |
| 1476 | #ifdef FEAT_SEARCH_EXTRA |
| 1477 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1478 | { |
| 1479 | /* Add a character from under the cursor for 'incsearch' */ |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1480 | if (did_incsearch) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1481 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1482 | curwin->w_cursor = match_end; |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 1483 | if (!EQUAL_POS(curwin->w_cursor, search_start)) |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1484 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1485 | c = gchar_cursor(); |
| 1486 | /* If 'ignorecase' and 'smartcase' are set and the |
| 1487 | * command line has no uppercase characters, convert |
| 1488 | * the character to lowercase */ |
| 1489 | if (p_ic && p_scs |
| 1490 | && !pat_has_uppercase(ccline.cmdbuff)) |
| 1491 | c = MB_TOLOWER(c); |
| 1492 | if (c != NUL) |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1493 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1494 | if (c == firstc || vim_strchr((char_u *)( |
| 1495 | p_magic ? "\\^$.*[" : "\\^$"), c) |
| 1496 | != NULL) |
| 1497 | { |
| 1498 | /* put a backslash before special |
| 1499 | * characters */ |
| 1500 | stuffcharReadbuff(c); |
| 1501 | c = '\\'; |
| 1502 | } |
| 1503 | break; |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1504 | } |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1505 | } |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1506 | } |
| 1507 | goto cmdline_not_changed; |
| 1508 | } |
| 1509 | #endif |
| 1510 | |
| 1511 | /* completion: longest common part */ |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1512 | if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1513 | break; |
| 1514 | goto cmdline_changed; |
| 1515 | |
| 1516 | case Ctrl_N: /* next match */ |
| 1517 | case Ctrl_P: /* previous match */ |
Bram Moolenaar | 7df0f63 | 2016-08-26 19:56:00 +0200 | [diff] [blame] | 1518 | if (xpc.xp_numfiles > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1519 | { |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1520 | if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
| 1521 | 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1522 | break; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1523 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1524 | } |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1525 | /* FALLTHROUGH */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1526 | |
| 1527 | #ifdef FEAT_CMDHIST |
| 1528 | case K_UP: |
| 1529 | case K_DOWN: |
| 1530 | case K_S_UP: |
| 1531 | case K_S_DOWN: |
| 1532 | case K_PAGEUP: |
| 1533 | case K_KPAGEUP: |
| 1534 | case K_PAGEDOWN: |
| 1535 | case K_KPAGEDOWN: |
| 1536 | if (hislen == 0 || firstc == NUL) /* no history */ |
| 1537 | goto cmdline_not_changed; |
| 1538 | |
| 1539 | i = hiscnt; |
| 1540 | |
| 1541 | /* save current command string so it can be restored later */ |
| 1542 | if (lookfor == NULL) |
| 1543 | { |
| 1544 | if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) |
| 1545 | goto cmdline_not_changed; |
| 1546 | lookfor[ccline.cmdpos] = NUL; |
| 1547 | } |
| 1548 | |
| 1549 | j = (int)STRLEN(lookfor); |
| 1550 | for (;;) |
| 1551 | { |
| 1552 | /* one step backwards */ |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 1553 | if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1554 | || c == K_PAGEUP || c == K_KPAGEUP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1555 | { |
| 1556 | if (hiscnt == hislen) /* first time */ |
| 1557 | hiscnt = hisidx[histype]; |
| 1558 | else if (hiscnt == 0 && hisidx[histype] != hislen - 1) |
| 1559 | hiscnt = hislen - 1; |
| 1560 | else if (hiscnt != hisidx[histype] + 1) |
| 1561 | --hiscnt; |
| 1562 | else /* at top of list */ |
| 1563 | { |
| 1564 | hiscnt = i; |
| 1565 | break; |
| 1566 | } |
| 1567 | } |
| 1568 | else /* one step forwards */ |
| 1569 | { |
| 1570 | /* on last entry, clear the line */ |
| 1571 | if (hiscnt == hisidx[histype]) |
| 1572 | { |
| 1573 | hiscnt = hislen; |
| 1574 | break; |
| 1575 | } |
| 1576 | |
| 1577 | /* not on a history line, nothing to do */ |
| 1578 | if (hiscnt == hislen) |
| 1579 | break; |
| 1580 | if (hiscnt == hislen - 1) /* wrap around */ |
| 1581 | hiscnt = 0; |
| 1582 | else |
| 1583 | ++hiscnt; |
| 1584 | } |
| 1585 | if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL) |
| 1586 | { |
| 1587 | hiscnt = i; |
| 1588 | break; |
| 1589 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 1590 | if ((c != K_UP && c != K_DOWN) |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1591 | || hiscnt == i |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1592 | || STRNCMP(history[histype][hiscnt].hisstr, |
| 1593 | lookfor, (size_t)j) == 0) |
| 1594 | break; |
| 1595 | } |
| 1596 | |
| 1597 | if (hiscnt != i) /* jumped to other entry */ |
| 1598 | { |
| 1599 | char_u *p; |
| 1600 | int len; |
| 1601 | int old_firstc; |
| 1602 | |
| 1603 | vim_free(ccline.cmdbuff); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 1604 | xpc.xp_context = EXPAND_NOTHING; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1605 | if (hiscnt == hislen) |
| 1606 | p = lookfor; /* back to the old one */ |
| 1607 | else |
| 1608 | p = history[histype][hiscnt].hisstr; |
| 1609 | |
| 1610 | if (histype == HIST_SEARCH |
| 1611 | && p != lookfor |
| 1612 | && (old_firstc = p[STRLEN(p) + 1]) != firstc) |
| 1613 | { |
| 1614 | /* Correct for the separator character used when |
| 1615 | * adding the history entry vs the one used now. |
| 1616 | * First loop: count length. |
| 1617 | * Second loop: copy the characters. */ |
| 1618 | for (i = 0; i <= 1; ++i) |
| 1619 | { |
| 1620 | len = 0; |
| 1621 | for (j = 0; p[j] != NUL; ++j) |
| 1622 | { |
| 1623 | /* Replace old sep with new sep, unless it is |
| 1624 | * escaped. */ |
| 1625 | if (p[j] == old_firstc |
| 1626 | && (j == 0 || p[j - 1] != '\\')) |
| 1627 | { |
| 1628 | if (i > 0) |
| 1629 | ccline.cmdbuff[len] = firstc; |
| 1630 | } |
| 1631 | else |
| 1632 | { |
| 1633 | /* Escape new sep, unless it is already |
| 1634 | * escaped. */ |
| 1635 | if (p[j] == firstc |
| 1636 | && (j == 0 || p[j - 1] != '\\')) |
| 1637 | { |
| 1638 | if (i > 0) |
| 1639 | ccline.cmdbuff[len] = '\\'; |
| 1640 | ++len; |
| 1641 | } |
| 1642 | if (i > 0) |
| 1643 | ccline.cmdbuff[len] = p[j]; |
| 1644 | } |
| 1645 | ++len; |
| 1646 | } |
| 1647 | if (i == 0) |
| 1648 | { |
| 1649 | alloc_cmdbuff(len); |
| 1650 | if (ccline.cmdbuff == NULL) |
| 1651 | goto returncmd; |
| 1652 | } |
| 1653 | } |
| 1654 | ccline.cmdbuff[len] = NUL; |
| 1655 | } |
| 1656 | else |
| 1657 | { |
| 1658 | alloc_cmdbuff((int)STRLEN(p)); |
| 1659 | if (ccline.cmdbuff == NULL) |
| 1660 | goto returncmd; |
| 1661 | STRCPY(ccline.cmdbuff, p); |
| 1662 | } |
| 1663 | |
| 1664 | ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); |
| 1665 | redrawcmd(); |
| 1666 | goto cmdline_changed; |
| 1667 | } |
| 1668 | beep_flush(); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1669 | #endif |
| 1670 | goto cmdline_not_changed; |
| 1671 | |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1672 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1673 | case Ctrl_G: /* next match */ |
| 1674 | case Ctrl_T: /* previous match */ |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1675 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1676 | { |
| 1677 | pos_T t; |
| 1678 | int search_flags = SEARCH_KEEP + SEARCH_NOOF |
| 1679 | + SEARCH_PEEK; |
| 1680 | |
| 1681 | if (char_avail()) |
| 1682 | continue; |
| 1683 | cursor_off(); |
| 1684 | out_flush(); |
| 1685 | if (c == Ctrl_G) |
| 1686 | { |
| 1687 | t = match_end; |
| 1688 | search_flags += SEARCH_COL; |
| 1689 | } |
| 1690 | else |
| 1691 | t = match_start; |
| 1692 | ++emsg_off; |
| 1693 | i = searchit(curwin, curbuf, &t, |
| 1694 | c == Ctrl_G ? FORWARD : BACKWARD, |
| 1695 | ccline.cmdbuff, count, search_flags, |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1696 | RE_SEARCH, 0, NULL, NULL); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1697 | --emsg_off; |
| 1698 | if (i) |
| 1699 | { |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1700 | search_start = match_start; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1701 | match_end = t; |
| 1702 | match_start = t; |
| 1703 | if (c == Ctrl_T && firstc == '/') |
| 1704 | { |
| 1705 | /* move just before the current match, so that |
| 1706 | * when nv_search finishes the cursor will be |
| 1707 | * put back on the match */ |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1708 | search_start = t; |
| 1709 | (void)decl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1710 | } |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 1711 | if (LT_POS(t, search_start) && c == Ctrl_G) |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1712 | { |
| 1713 | /* wrap around */ |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1714 | search_start = t; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1715 | if (firstc == '?') |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1716 | (void)incl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1717 | else |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1718 | (void)decl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | set_search_match(&match_end); |
| 1722 | curwin->w_cursor = match_start; |
| 1723 | changed_cline_bef_curs(); |
| 1724 | update_topline(); |
| 1725 | validate_cursor(); |
| 1726 | highlight_match = TRUE; |
| 1727 | old_curswant = curwin->w_curswant; |
| 1728 | old_leftcol = curwin->w_leftcol; |
| 1729 | old_topline = curwin->w_topline; |
| 1730 | # ifdef FEAT_DIFF |
| 1731 | old_topfill = curwin->w_topfill; |
| 1732 | # endif |
| 1733 | old_botline = curwin->w_botline; |
| 1734 | update_screen(NOT_VALID); |
| 1735 | redrawcmdline(); |
| 1736 | } |
| 1737 | else |
| 1738 | vim_beep(BO_ERROR); |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1739 | goto cmdline_not_changed; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1740 | } |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1741 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1742 | #endif |
| 1743 | |
| 1744 | case Ctrl_V: |
| 1745 | case Ctrl_Q: |
| 1746 | #ifdef FEAT_MOUSE |
| 1747 | ignore_drag_release = TRUE; |
| 1748 | #endif |
| 1749 | putcmdline('^', TRUE); |
| 1750 | c = get_literal(); /* get next (two) character(s) */ |
| 1751 | do_abbr = FALSE; /* don't do abbreviation now */ |
| 1752 | #ifdef FEAT_MBYTE |
| 1753 | /* may need to remove ^ when composing char was typed */ |
| 1754 | if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) |
| 1755 | { |
| 1756 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 1757 | msg_putchar(' '); |
| 1758 | cursorcmd(); |
| 1759 | } |
| 1760 | #endif |
| 1761 | break; |
| 1762 | |
| 1763 | #ifdef FEAT_DIGRAPHS |
| 1764 | case Ctrl_K: |
| 1765 | #ifdef FEAT_MOUSE |
| 1766 | ignore_drag_release = TRUE; |
| 1767 | #endif |
| 1768 | putcmdline('?', TRUE); |
| 1769 | #ifdef USE_ON_FLY_SCROLL |
| 1770 | dont_scroll = TRUE; /* disallow scrolling here */ |
| 1771 | #endif |
| 1772 | c = get_digraph(TRUE); |
| 1773 | if (c != NUL) |
| 1774 | break; |
| 1775 | |
| 1776 | redrawcmd(); |
| 1777 | goto cmdline_not_changed; |
| 1778 | #endif /* FEAT_DIGRAPHS */ |
| 1779 | |
| 1780 | #ifdef FEAT_RIGHTLEFT |
| 1781 | case Ctrl__: /* CTRL-_: switch language mode */ |
| 1782 | if (!p_ari) |
| 1783 | break; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 1784 | # ifdef FEAT_FKMAP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1785 | if (p_altkeymap) |
| 1786 | { |
| 1787 | cmd_fkmap = !cmd_fkmap; |
| 1788 | if (cmd_fkmap) /* in Farsi always in Insert mode */ |
| 1789 | ccline.overstrike = FALSE; |
| 1790 | } |
| 1791 | else /* Hebrew is default */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 1792 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1793 | cmd_hkmap = !cmd_hkmap; |
| 1794 | goto cmdline_not_changed; |
| 1795 | #endif |
| 1796 | |
Bram Moolenaar | abbc448 | 2017-01-24 15:57:55 +0100 | [diff] [blame] | 1797 | case K_PS: |
| 1798 | bracketed_paste(PASTE_CMDLINE, FALSE, NULL); |
| 1799 | goto cmdline_changed; |
| 1800 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1801 | default: |
| 1802 | #ifdef UNIX |
| 1803 | if (c == intr_char) |
| 1804 | { |
| 1805 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1806 | putting it in history */ |
| 1807 | goto returncmd; /* back to Normal mode */ |
| 1808 | } |
| 1809 | #endif |
| 1810 | /* |
| 1811 | * Normal character with no special meaning. Just set mod_mask |
| 1812 | * to 0x0 so that typing Shift-Space in the GUI doesn't enter |
| 1813 | * the string <S-Space>. This should only happen after ^V. |
| 1814 | */ |
| 1815 | if (!IS_SPECIAL(c)) |
| 1816 | mod_mask = 0x0; |
| 1817 | break; |
| 1818 | } |
| 1819 | /* |
| 1820 | * End of switch on command line character. |
| 1821 | * We come here if we have a normal character. |
| 1822 | */ |
| 1823 | |
Bram Moolenaar | ede3e63 | 2013-06-23 16:16:19 +0200 | [diff] [blame] | 1824 | if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1825 | #ifdef FEAT_MBYTE |
| 1826 | /* Add ABBR_OFF for characters above 0x100, this is |
| 1827 | * what check_abbr() expects. */ |
| 1828 | (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : |
| 1829 | #endif |
Bram Moolenaar | ede3e63 | 2013-06-23 16:16:19 +0200 | [diff] [blame] | 1830 | c) || c == Ctrl_RSB)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1831 | goto cmdline_changed; |
| 1832 | |
| 1833 | /* |
| 1834 | * put the character in the command line |
| 1835 | */ |
| 1836 | if (IS_SPECIAL(c) || mod_mask != 0) |
| 1837 | put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); |
| 1838 | else |
| 1839 | { |
| 1840 | #ifdef FEAT_MBYTE |
| 1841 | if (has_mbyte) |
| 1842 | { |
| 1843 | j = (*mb_char2bytes)(c, IObuff); |
| 1844 | IObuff[j] = NUL; /* exclude composing chars */ |
| 1845 | put_on_cmdline(IObuff, j, TRUE); |
| 1846 | } |
| 1847 | else |
| 1848 | #endif |
| 1849 | { |
| 1850 | IObuff[0] = c; |
| 1851 | put_on_cmdline(IObuff, 1, TRUE); |
| 1852 | } |
| 1853 | } |
| 1854 | goto cmdline_changed; |
| 1855 | |
| 1856 | /* |
| 1857 | * This part implements incremental searches for "/" and "?" |
| 1858 | * Jump to cmdline_not_changed when a character has been read but the command |
| 1859 | * line did not change. Then we only search and redraw if something changed in |
| 1860 | * the past. |
| 1861 | * Jump to cmdline_changed when the command line did change. |
| 1862 | * (Sorry for the goto's, I know it is ugly). |
| 1863 | */ |
| 1864 | cmdline_not_changed: |
| 1865 | #ifdef FEAT_SEARCH_EXTRA |
| 1866 | if (!incsearch_postponed) |
| 1867 | continue; |
| 1868 | #endif |
| 1869 | |
| 1870 | cmdline_changed: |
| 1871 | #ifdef FEAT_SEARCH_EXTRA |
| 1872 | /* |
| 1873 | * 'incsearch' highlighting. |
| 1874 | */ |
| 1875 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1876 | { |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1877 | pos_T end_pos; |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1878 | #ifdef FEAT_RELTIME |
| 1879 | proftime_T tm; |
| 1880 | #endif |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1881 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1882 | /* if there is a character waiting, search and redraw later */ |
| 1883 | if (char_avail()) |
| 1884 | { |
| 1885 | incsearch_postponed = TRUE; |
| 1886 | continue; |
| 1887 | } |
| 1888 | incsearch_postponed = FALSE; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1889 | curwin->w_cursor = search_start; /* start at old position */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1890 | |
| 1891 | /* If there is no command line, don't do anything */ |
| 1892 | if (ccline.cmdlen == 0) |
| 1893 | i = 0; |
| 1894 | else |
| 1895 | { |
| 1896 | cursor_off(); /* so the user knows we're busy */ |
| 1897 | out_flush(); |
| 1898 | ++emsg_off; /* So it doesn't beep if bad expr */ |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1899 | #ifdef FEAT_RELTIME |
| 1900 | /* Set the time limit to half a second. */ |
| 1901 | profile_setlimit(500L, &tm); |
| 1902 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1903 | i = do_search(NULL, firstc, ccline.cmdbuff, count, |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1904 | SEARCH_KEEP + SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK, |
| 1905 | #ifdef FEAT_RELTIME |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1906 | &tm, NULL |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1907 | #else |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1908 | NULL, NULL |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1909 | #endif |
| 1910 | ); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1911 | --emsg_off; |
| 1912 | /* if interrupted while searching, behave like it failed */ |
| 1913 | if (got_int) |
| 1914 | { |
| 1915 | (void)vpeekc(); /* remove <C-C> from input stream */ |
| 1916 | got_int = FALSE; /* don't abandon the command line */ |
| 1917 | i = 0; |
| 1918 | } |
| 1919 | else if (char_avail()) |
| 1920 | /* cancelled searching because a char was typed */ |
| 1921 | incsearch_postponed = TRUE; |
| 1922 | } |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1923 | if (i != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1924 | highlight_match = TRUE; /* highlight position */ |
| 1925 | else |
| 1926 | highlight_match = FALSE; /* remove highlight */ |
| 1927 | |
| 1928 | /* first restore the old curwin values, so the screen is |
| 1929 | * positioned in the same way as the actual search command */ |
| 1930 | curwin->w_leftcol = old_leftcol; |
| 1931 | curwin->w_topline = old_topline; |
| 1932 | # ifdef FEAT_DIFF |
| 1933 | curwin->w_topfill = old_topfill; |
| 1934 | # endif |
| 1935 | curwin->w_botline = old_botline; |
| 1936 | changed_cline_bef_curs(); |
| 1937 | update_topline(); |
| 1938 | |
| 1939 | if (i != 0) |
| 1940 | { |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 1941 | pos_T save_pos = curwin->w_cursor; |
| 1942 | |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1943 | match_start = curwin->w_cursor; |
| 1944 | set_search_match(&curwin->w_cursor); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1945 | validate_cursor(); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1946 | end_pos = curwin->w_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1947 | match_end = end_pos; |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 1948 | curwin->w_cursor = save_pos; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1949 | } |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1950 | else |
| 1951 | end_pos = curwin->w_cursor; /* shutup gcc 4 */ |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1952 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1953 | validate_cursor(); |
Bram Moolenaar | 27a2319 | 2006-09-14 09:27:26 +0000 | [diff] [blame] | 1954 | # ifdef FEAT_WINDOWS |
| 1955 | /* May redraw the status line to show the cursor position. */ |
| 1956 | if (p_ru && curwin->w_status_height > 0) |
| 1957 | curwin->w_redr_status = TRUE; |
| 1958 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1959 | |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 1960 | save_cmdline(&save_ccline); |
Bram Moolenaar | 600dddc | 2006-03-12 22:05:10 +0000 | [diff] [blame] | 1961 | update_screen(SOME_VALID); |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 1962 | restore_cmdline(&save_ccline); |
| 1963 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1964 | /* Leave it at the end to make CTRL-R CTRL-W work. */ |
| 1965 | if (i != 0) |
| 1966 | curwin->w_cursor = end_pos; |
| 1967 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1968 | msg_starthere(); |
| 1969 | redrawcmdline(); |
| 1970 | did_incsearch = TRUE; |
| 1971 | } |
| 1972 | #else /* FEAT_SEARCH_EXTRA */ |
| 1973 | ; |
| 1974 | #endif |
| 1975 | |
| 1976 | #ifdef FEAT_RIGHTLEFT |
| 1977 | if (cmdmsg_rl |
| 1978 | # ifdef FEAT_ARABIC |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 1979 | || (p_arshape && !p_tbidi && enc_utf8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1980 | # endif |
| 1981 | ) |
| 1982 | /* Always redraw the whole command line to fix shaping and |
Bram Moolenaar | 58437e0 | 2012-02-22 17:58:04 +0100 | [diff] [blame] | 1983 | * right-left typing. Not efficient, but it works. |
| 1984 | * Do it only when there are no characters left to read |
| 1985 | * to avoid useless intermediate redraws. */ |
| 1986 | if (vpeekc() == NUL) |
| 1987 | redrawcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1988 | #endif |
| 1989 | } |
| 1990 | |
| 1991 | returncmd: |
| 1992 | |
| 1993 | #ifdef FEAT_RIGHTLEFT |
| 1994 | cmdmsg_rl = FALSE; |
| 1995 | #endif |
| 1996 | |
| 1997 | #ifdef FEAT_FKMAP |
| 1998 | cmd_fkmap = 0; |
| 1999 | #endif |
| 2000 | |
| 2001 | ExpandCleanup(&xpc); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2002 | ccline.xpc = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2003 | |
| 2004 | #ifdef FEAT_SEARCH_EXTRA |
| 2005 | if (did_incsearch) |
| 2006 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 2007 | if (gotesc) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 2008 | curwin->w_cursor = save_cursor; |
| 2009 | else |
| 2010 | { |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 2011 | if (!EQUAL_POS(save_cursor, search_start)) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 2012 | { |
| 2013 | /* put the '" mark at the original position */ |
| 2014 | curwin->w_cursor = save_cursor; |
| 2015 | setpcmark(); |
| 2016 | } |
| 2017 | curwin->w_cursor = search_start; |
| 2018 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2019 | curwin->w_curswant = old_curswant; |
| 2020 | curwin->w_leftcol = old_leftcol; |
| 2021 | curwin->w_topline = old_topline; |
| 2022 | # ifdef FEAT_DIFF |
| 2023 | curwin->w_topfill = old_topfill; |
| 2024 | # endif |
| 2025 | curwin->w_botline = old_botline; |
| 2026 | highlight_match = FALSE; |
| 2027 | validate_cursor(); /* needed for TAB */ |
Bram Moolenaar | 600dddc | 2006-03-12 22:05:10 +0000 | [diff] [blame] | 2028 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2029 | } |
| 2030 | #endif |
| 2031 | |
| 2032 | if (ccline.cmdbuff != NULL) |
| 2033 | { |
| 2034 | /* |
| 2035 | * Put line in history buffer (":" and "=" only when it was typed). |
| 2036 | */ |
| 2037 | #ifdef FEAT_CMDHIST |
| 2038 | if (ccline.cmdlen && firstc != NUL |
| 2039 | && (some_key_typed || histype == HIST_SEARCH)) |
| 2040 | { |
| 2041 | add_to_history(histype, ccline.cmdbuff, TRUE, |
| 2042 | histype == HIST_SEARCH ? firstc : NUL); |
| 2043 | if (firstc == ':') |
| 2044 | { |
| 2045 | vim_free(new_last_cmdline); |
| 2046 | new_last_cmdline = vim_strsave(ccline.cmdbuff); |
| 2047 | } |
| 2048 | } |
| 2049 | #endif |
| 2050 | |
| 2051 | if (gotesc) /* abandon command line */ |
| 2052 | { |
| 2053 | vim_free(ccline.cmdbuff); |
| 2054 | ccline.cmdbuff = NULL; |
| 2055 | if (msg_scrolled == 0) |
| 2056 | compute_cmdrow(); |
| 2057 | MSG(""); |
| 2058 | redraw_cmdline = TRUE; |
| 2059 | } |
| 2060 | } |
| 2061 | |
| 2062 | /* |
| 2063 | * If the screen was shifted up, redraw the whole screen (later). |
| 2064 | * If the line is too long, clear it, so ruler and shown command do |
| 2065 | * not get printed in the middle of it. |
| 2066 | */ |
| 2067 | msg_check(); |
| 2068 | msg_scroll = save_msg_scroll; |
| 2069 | redir_off = FALSE; |
| 2070 | |
| 2071 | /* When the command line was typed, no need for a wait-return prompt. */ |
| 2072 | if (some_key_typed) |
| 2073 | need_wait_return = FALSE; |
| 2074 | |
| 2075 | State = save_State; |
| 2076 | #ifdef USE_IM_CONTROL |
| 2077 | if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) |
| 2078 | im_save_status(b_im_ptr); |
| 2079 | im_set_active(FALSE); |
| 2080 | #endif |
| 2081 | #ifdef FEAT_MOUSE |
| 2082 | setmouse(); |
| 2083 | #endif |
| 2084 | #ifdef CURSOR_SHAPE |
| 2085 | ui_cursor_shape(); /* may show different cursor shape */ |
| 2086 | #endif |
Bram Moolenaar | f2405ed | 2017-03-16 19:58:25 +0100 | [diff] [blame] | 2087 | sb_text_end_cmdline(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2088 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2089 | { |
| 2090 | char_u *p = ccline.cmdbuff; |
| 2091 | |
| 2092 | /* Make ccline empty, getcmdline() may try to use it. */ |
| 2093 | ccline.cmdbuff = NULL; |
| 2094 | return p; |
| 2095 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2096 | } |
| 2097 | |
| 2098 | #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) |
| 2099 | /* |
| 2100 | * Get a command line with a prompt. |
| 2101 | * This is prepared to be called recursively from getcmdline() (e.g. by |
| 2102 | * f_input() when evaluating an expression from CTRL-R =). |
| 2103 | * Returns the command line in allocated memory, or NULL. |
| 2104 | */ |
| 2105 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2106 | getcmdline_prompt( |
| 2107 | int firstc, |
| 2108 | char_u *prompt, /* command line prompt */ |
| 2109 | int attr, /* attributes for prompt */ |
| 2110 | int xp_context, /* type of expansion */ |
| 2111 | char_u *xp_arg) /* user-defined expansion argument */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2112 | { |
| 2113 | char_u *s; |
| 2114 | struct cmdline_info save_ccline; |
| 2115 | int msg_col_save = msg_col; |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2116 | int msg_silent_save = msg_silent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2117 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2118 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2119 | ccline.cmdprompt = prompt; |
| 2120 | ccline.cmdattr = attr; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2121 | # ifdef FEAT_EVAL |
| 2122 | ccline.xp_context = xp_context; |
| 2123 | ccline.xp_arg = xp_arg; |
| 2124 | ccline.input_fn = (firstc == '@'); |
| 2125 | # endif |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2126 | msg_silent = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2127 | s = getcmdline(firstc, 1L, 0); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2128 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2129 | msg_silent = msg_silent_save; |
Bram Moolenaar | 1db1f77 | 2011-08-17 16:25:48 +0200 | [diff] [blame] | 2130 | /* Restore msg_col, the prompt from input() may have changed it. |
| 2131 | * But only if called recursively and the commandline is therefore being |
| 2132 | * restored to an old one; if not, the input() prompt stays on the screen, |
| 2133 | * so we need its modified msg_col left intact. */ |
| 2134 | if (ccline.cmdbuff != NULL) |
| 2135 | msg_col = msg_col_save; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2136 | |
| 2137 | return s; |
| 2138 | } |
| 2139 | #endif |
| 2140 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2141 | /* |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2142 | * Return TRUE when the text must not be changed and we can't switch to |
| 2143 | * another window or buffer. Used when editing the command line, evaluating |
| 2144 | * 'balloonexpr', etc. |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2145 | */ |
| 2146 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2147 | text_locked(void) |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2148 | { |
| 2149 | #ifdef FEAT_CMDWIN |
| 2150 | if (cmdwin_type != 0) |
| 2151 | return TRUE; |
| 2152 | #endif |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2153 | return textlock != 0; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2154 | } |
| 2155 | |
| 2156 | /* |
| 2157 | * Give an error message for a command that isn't allowed while the cmdline |
| 2158 | * window is open or editing the cmdline in another way. |
| 2159 | */ |
| 2160 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2161 | text_locked_msg(void) |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2162 | { |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2163 | EMSG(_(get_text_locked_msg())); |
| 2164 | } |
| 2165 | |
| 2166 | char_u * |
| 2167 | get_text_locked_msg(void) |
| 2168 | { |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2169 | #ifdef FEAT_CMDWIN |
| 2170 | if (cmdwin_type != 0) |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2171 | return e_cmdwin; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2172 | #endif |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2173 | return e_secure; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2176 | #if defined(FEAT_AUTOCMD) || defined(PROTO) |
| 2177 | /* |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2178 | * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
| 2179 | * and give an error message. |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2180 | */ |
| 2181 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2182 | curbuf_locked(void) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2183 | { |
| 2184 | if (curbuf_lock > 0) |
| 2185 | { |
| 2186 | EMSG(_("E788: Not allowed to edit another buffer now")); |
| 2187 | return TRUE; |
| 2188 | } |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2189 | return allbuf_locked(); |
| 2190 | } |
| 2191 | |
| 2192 | /* |
| 2193 | * Check if "allbuf_lock" is set and return TRUE when it is and give an error |
| 2194 | * message. |
| 2195 | */ |
| 2196 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2197 | allbuf_locked(void) |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2198 | { |
| 2199 | if (allbuf_lock > 0) |
| 2200 | { |
| 2201 | EMSG(_("E811: Not allowed to change buffer information now")); |
| 2202 | return TRUE; |
| 2203 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2204 | return FALSE; |
| 2205 | } |
| 2206 | #endif |
| 2207 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2208 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2209 | cmdline_charsize(int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2210 | { |
| 2211 | #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 2212 | if (cmdline_star > 0) /* showing '*', always 1 position */ |
| 2213 | return 1; |
| 2214 | #endif |
| 2215 | return ptr2cells(ccline.cmdbuff + idx); |
| 2216 | } |
| 2217 | |
| 2218 | /* |
| 2219 | * Compute the offset of the cursor on the command line for the prompt and |
| 2220 | * indent. |
| 2221 | */ |
| 2222 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2223 | set_cmdspos(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2224 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2225 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2226 | ccline.cmdspos = 1 + ccline.cmdindent; |
| 2227 | else |
| 2228 | ccline.cmdspos = 0 + ccline.cmdindent; |
| 2229 | } |
| 2230 | |
| 2231 | /* |
| 2232 | * Compute the screen position for the cursor on the command line. |
| 2233 | */ |
| 2234 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2235 | set_cmdspos_cursor(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2236 | { |
| 2237 | int i, m, c; |
| 2238 | |
| 2239 | set_cmdspos(); |
| 2240 | if (KeyTyped) |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 2241 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2242 | m = Columns * Rows; |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 2243 | if (m < 0) /* overflow, Columns or Rows at weird value */ |
| 2244 | m = MAXCOL; |
| 2245 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2246 | else |
| 2247 | m = MAXCOL; |
| 2248 | for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) |
| 2249 | { |
| 2250 | c = cmdline_charsize(i); |
| 2251 | #ifdef FEAT_MBYTE |
| 2252 | /* Count ">" for double-wide multi-byte char that doesn't fit. */ |
| 2253 | if (has_mbyte) |
| 2254 | correct_cmdspos(i, c); |
| 2255 | #endif |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 2256 | /* If the cmdline doesn't fit, show cursor on last visible char. |
| 2257 | * Don't move the cursor itself, so we can still append. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2258 | if ((ccline.cmdspos += c) >= m) |
| 2259 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2260 | ccline.cmdspos -= c; |
| 2261 | break; |
| 2262 | } |
| 2263 | #ifdef FEAT_MBYTE |
| 2264 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2265 | i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2266 | #endif |
| 2267 | } |
| 2268 | } |
| 2269 | |
| 2270 | #ifdef FEAT_MBYTE |
| 2271 | /* |
| 2272 | * Check if the character at "idx", which is "cells" wide, is a multi-byte |
| 2273 | * character that doesn't fit, so that a ">" must be displayed. |
| 2274 | */ |
| 2275 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2276 | correct_cmdspos(int idx, int cells) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2277 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2278 | if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2279 | && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
| 2280 | && ccline.cmdspos % Columns + cells > Columns) |
| 2281 | ccline.cmdspos++; |
| 2282 | } |
| 2283 | #endif |
| 2284 | |
| 2285 | /* |
| 2286 | * Get an Ex command line for the ":" command. |
| 2287 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2288 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2289 | getexline( |
| 2290 | int c, /* normally ':', NUL for ":append" */ |
| 2291 | void *cookie UNUSED, |
| 2292 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2293 | { |
| 2294 | /* When executing a register, remove ':' that's in front of each line. */ |
| 2295 | if (exec_from_reg && vpeekc() == ':') |
| 2296 | (void)vgetc(); |
| 2297 | return getcmdline(c, 1L, indent); |
| 2298 | } |
| 2299 | |
| 2300 | /* |
| 2301 | * Get an Ex command line for Ex mode. |
| 2302 | * In Ex mode we only use the OS supplied line editing features and no |
| 2303 | * mappings or abbreviations. |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2304 | * Returns a string in allocated memory or NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2305 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2306 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2307 | getexmodeline( |
| 2308 | int promptc, /* normally ':', NUL for ":append" and '?' for |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2309 | :s prompt */ |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2310 | void *cookie UNUSED, |
| 2311 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2312 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2313 | garray_T line_ga; |
| 2314 | char_u *pend; |
| 2315 | int startcol = 0; |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2316 | int c1 = 0; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2317 | int escaped = FALSE; /* CTRL-V typed */ |
| 2318 | int vcol = 0; |
| 2319 | char_u *p; |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2320 | int prev_char; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2321 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2322 | |
| 2323 | /* Switch cursor on now. This avoids that it happens after the "\n", which |
| 2324 | * confuses the system function that computes tabstops. */ |
| 2325 | cursor_on(); |
| 2326 | |
| 2327 | /* always start in column 0; write a newline if necessary */ |
| 2328 | compute_cmdrow(); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2329 | if ((msg_col || msg_didout) && promptc != '?') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2330 | msg_putchar('\n'); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2331 | if (promptc == ':') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2332 | { |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2333 | /* indent that is only displayed, not in the line itself */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2334 | if (p_prompt) |
| 2335 | msg_putchar(':'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2336 | while (indent-- > 0) |
| 2337 | msg_putchar(' '); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2338 | startcol = msg_col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2339 | } |
| 2340 | |
| 2341 | ga_init2(&line_ga, 1, 30); |
| 2342 | |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2343 | /* autoindent for :insert and :append is in the line itself */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2344 | if (promptc <= 0) |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2345 | { |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2346 | vcol = indent; |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2347 | while (indent >= 8) |
| 2348 | { |
| 2349 | ga_append(&line_ga, TAB); |
| 2350 | msg_puts((char_u *)" "); |
| 2351 | indent -= 8; |
| 2352 | } |
| 2353 | while (indent-- > 0) |
| 2354 | { |
| 2355 | ga_append(&line_ga, ' '); |
| 2356 | msg_putchar(' '); |
| 2357 | } |
| 2358 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2359 | ++no_mapping; |
| 2360 | ++allow_keys; |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2361 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2362 | /* |
| 2363 | * Get the line, one character at a time. |
| 2364 | */ |
| 2365 | got_int = FALSE; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2366 | while (!got_int) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2367 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2368 | long sw; |
| 2369 | char_u *s; |
| 2370 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2371 | if (ga_grow(&line_ga, 40) == FAIL) |
| 2372 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2373 | |
Bram Moolenaar | ba748c8 | 2017-02-26 14:00:07 +0100 | [diff] [blame] | 2374 | /* |
| 2375 | * Get one character at a time. |
| 2376 | */ |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2377 | prev_char = c1; |
Bram Moolenaar | ba748c8 | 2017-02-26 14:00:07 +0100 | [diff] [blame] | 2378 | |
| 2379 | /* Check for a ":normal" command and no more characters left. */ |
| 2380 | if (ex_normal_busy > 0 && typebuf.tb_len == 0) |
| 2381 | c1 = '\n'; |
| 2382 | else |
| 2383 | c1 = vgetc(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2384 | |
| 2385 | /* |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2386 | * Handle line editing. |
| 2387 | * Previously this was left to the system, putting the terminal in |
| 2388 | * cooked mode, but then CTRL-D and CTRL-T can't be used properly. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2389 | */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2390 | if (got_int) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2391 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2392 | msg_putchar('\n'); |
| 2393 | break; |
| 2394 | } |
| 2395 | |
Bram Moolenaar | abbc448 | 2017-01-24 15:57:55 +0100 | [diff] [blame] | 2396 | if (c1 == K_PS) |
| 2397 | { |
| 2398 | bracketed_paste(PASTE_EX, FALSE, &line_ga); |
| 2399 | goto redraw; |
| 2400 | } |
| 2401 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2402 | if (!escaped) |
| 2403 | { |
| 2404 | /* CR typed means "enter", which is NL */ |
| 2405 | if (c1 == '\r') |
| 2406 | c1 = '\n'; |
| 2407 | |
| 2408 | if (c1 == BS || c1 == K_BS |
| 2409 | || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2410 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2411 | if (line_ga.ga_len > 0) |
| 2412 | { |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2413 | #ifdef FEAT_MBYTE |
| 2414 | if (has_mbyte) |
| 2415 | { |
| 2416 | p = (char_u *)line_ga.ga_data; |
| 2417 | p[line_ga.ga_len] = NUL; |
| 2418 | len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; |
| 2419 | line_ga.ga_len -= len; |
| 2420 | } |
| 2421 | else |
| 2422 | #endif |
| 2423 | --line_ga.ga_len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2424 | goto redraw; |
| 2425 | } |
| 2426 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2427 | } |
| 2428 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2429 | if (c1 == Ctrl_U) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2430 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2431 | msg_col = startcol; |
| 2432 | msg_clr_eos(); |
| 2433 | line_ga.ga_len = 0; |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2434 | goto redraw; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2435 | } |
| 2436 | |
| 2437 | if (c1 == Ctrl_T) |
| 2438 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2439 | sw = get_sw_value(curbuf); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2440 | p = (char_u *)line_ga.ga_data; |
| 2441 | p[line_ga.ga_len] = NUL; |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2442 | indent = get_indent_str(p, 8, FALSE); |
Bram Moolenaar | 14f2474 | 2012-08-08 18:01:05 +0200 | [diff] [blame] | 2443 | indent += sw - indent % sw; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2444 | add_indent: |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2445 | while (get_indent_str(p, 8, FALSE) < indent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2446 | { |
Bram Moolenaar | cde8854 | 2015-08-11 19:14:00 +0200 | [diff] [blame] | 2447 | (void)ga_grow(&line_ga, 2); /* one more for the NUL */ |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2448 | p = (char_u *)line_ga.ga_data; |
| 2449 | s = skipwhite(p); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2450 | mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
| 2451 | *s = ' '; |
| 2452 | ++line_ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2453 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2454 | redraw: |
| 2455 | /* redraw the line */ |
| 2456 | msg_col = startcol; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2457 | vcol = 0; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2458 | p = (char_u *)line_ga.ga_data; |
| 2459 | p[line_ga.ga_len] = NUL; |
| 2460 | while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2461 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2462 | if (*p == TAB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2463 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2464 | do |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2465 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2466 | msg_putchar(' '); |
| 2467 | } while (++vcol % 8); |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2468 | ++p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2469 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2470 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2471 | { |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2472 | len = MB_PTR2LEN(p); |
| 2473 | msg_outtrans_len(p, len); |
| 2474 | vcol += ptr2cells(p); |
| 2475 | p += len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2476 | } |
| 2477 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2478 | msg_clr_eos(); |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2479 | windgoto(msg_row, msg_col); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2480 | continue; |
| 2481 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2482 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2483 | if (c1 == Ctrl_D) |
| 2484 | { |
| 2485 | /* Delete one shiftwidth. */ |
| 2486 | p = (char_u *)line_ga.ga_data; |
| 2487 | if (prev_char == '0' || prev_char == '^') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2488 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2489 | if (prev_char == '^') |
| 2490 | ex_keep_indent = TRUE; |
| 2491 | indent = 0; |
| 2492 | p[--line_ga.ga_len] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2493 | } |
| 2494 | else |
| 2495 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2496 | p[line_ga.ga_len] = NUL; |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2497 | indent = get_indent_str(p, 8, FALSE); |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2498 | if (indent > 0) |
| 2499 | { |
| 2500 | --indent; |
| 2501 | indent -= indent % get_sw_value(curbuf); |
| 2502 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2503 | } |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2504 | while (get_indent_str(p, 8, FALSE) > indent) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2505 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2506 | s = skipwhite(p); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2507 | mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
| 2508 | --line_ga.ga_len; |
| 2509 | } |
| 2510 | goto add_indent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2511 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2512 | |
| 2513 | if (c1 == Ctrl_V || c1 == Ctrl_Q) |
| 2514 | { |
| 2515 | escaped = TRUE; |
| 2516 | continue; |
| 2517 | } |
| 2518 | |
| 2519 | /* Ignore special key codes: mouse movement, K_IGNORE, etc. */ |
| 2520 | if (IS_SPECIAL(c1)) |
| 2521 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2522 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2523 | |
| 2524 | if (IS_SPECIAL(c1)) |
| 2525 | c1 = '?'; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2526 | #ifdef FEAT_MBYTE |
| 2527 | if (has_mbyte) |
| 2528 | len = (*mb_char2bytes)(c1, |
| 2529 | (char_u *)line_ga.ga_data + line_ga.ga_len); |
| 2530 | else |
| 2531 | #endif |
| 2532 | { |
| 2533 | len = 1; |
| 2534 | ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; |
| 2535 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2536 | if (c1 == '\n') |
| 2537 | msg_putchar('\n'); |
| 2538 | else if (c1 == TAB) |
| 2539 | { |
| 2540 | /* Don't use chartabsize(), 'ts' can be different */ |
| 2541 | do |
| 2542 | { |
| 2543 | msg_putchar(' '); |
| 2544 | } while (++vcol % 8); |
| 2545 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2546 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2547 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2548 | msg_outtrans_len( |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2549 | ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2550 | vcol += char2cells(c1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2551 | } |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2552 | line_ga.ga_len += len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2553 | escaped = FALSE; |
| 2554 | |
| 2555 | windgoto(msg_row, msg_col); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2556 | pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2557 | |
Bram Moolenaar | 417f5e7 | 2010-09-29 15:50:30 +0200 | [diff] [blame] | 2558 | /* We are done when a NL is entered, but not when it comes after an |
| 2559 | * odd number of backslashes, that results in a NUL. */ |
| 2560 | if (line_ga.ga_len > 0 && pend[-1] == '\n') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2561 | { |
Bram Moolenaar | 417f5e7 | 2010-09-29 15:50:30 +0200 | [diff] [blame] | 2562 | int bcount = 0; |
| 2563 | |
| 2564 | while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') |
| 2565 | ++bcount; |
| 2566 | |
| 2567 | if (bcount > 0) |
| 2568 | { |
| 2569 | /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> |
| 2570 | * "\NL", etc. */ |
| 2571 | line_ga.ga_len -= (bcount + 1) / 2; |
| 2572 | pend -= (bcount + 1) / 2; |
| 2573 | pend[-1] = '\n'; |
| 2574 | } |
| 2575 | |
| 2576 | if ((bcount & 1) == 0) |
| 2577 | { |
| 2578 | --line_ga.ga_len; |
| 2579 | --pend; |
| 2580 | *pend = NUL; |
| 2581 | break; |
| 2582 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2583 | } |
| 2584 | } |
| 2585 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2586 | --no_mapping; |
| 2587 | --allow_keys; |
| 2588 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2589 | /* make following messages go to the next line */ |
| 2590 | msg_didout = FALSE; |
| 2591 | msg_col = 0; |
| 2592 | if (msg_row < Rows - 1) |
| 2593 | ++msg_row; |
| 2594 | emsg_on_display = FALSE; /* don't want ui_delay() */ |
| 2595 | |
| 2596 | if (got_int) |
| 2597 | ga_clear(&line_ga); |
| 2598 | |
| 2599 | return (char_u *)line_ga.ga_data; |
| 2600 | } |
| 2601 | |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 2602 | # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
| 2603 | || defined(FEAT_MOUSESHAPE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2604 | /* |
| 2605 | * Return TRUE if ccline.overstrike is on. |
| 2606 | */ |
| 2607 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2608 | cmdline_overstrike(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2609 | { |
| 2610 | return ccline.overstrike; |
| 2611 | } |
| 2612 | |
| 2613 | /* |
| 2614 | * Return TRUE if the cursor is at the end of the cmdline. |
| 2615 | */ |
| 2616 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2617 | cmdline_at_end(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2618 | { |
| 2619 | return (ccline.cmdpos >= ccline.cmdlen); |
| 2620 | } |
| 2621 | #endif |
| 2622 | |
Bram Moolenaar | 9372a11 | 2005-12-06 19:59:18 +0000 | [diff] [blame] | 2623 | #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2624 | /* |
| 2625 | * Return the virtual column number at the current cursor position. |
| 2626 | * This is used by the IM code to obtain the start of the preedit string. |
| 2627 | */ |
| 2628 | colnr_T |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2629 | cmdline_getvcol_cursor(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2630 | { |
| 2631 | if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) |
| 2632 | return MAXCOL; |
| 2633 | |
| 2634 | # ifdef FEAT_MBYTE |
| 2635 | if (has_mbyte) |
| 2636 | { |
| 2637 | colnr_T col; |
| 2638 | int i = 0; |
| 2639 | |
| 2640 | for (col = 0; i < ccline.cmdpos; ++col) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2641 | i += (*mb_ptr2len)(ccline.cmdbuff + i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2642 | |
| 2643 | return col; |
| 2644 | } |
| 2645 | else |
| 2646 | # endif |
| 2647 | return ccline.cmdpos; |
| 2648 | } |
| 2649 | #endif |
| 2650 | |
| 2651 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
| 2652 | /* |
| 2653 | * If part of the command line is an IM preedit string, redraw it with |
| 2654 | * IM feedback attributes. The cursor position is restored after drawing. |
| 2655 | */ |
| 2656 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2657 | redrawcmd_preedit(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2658 | { |
| 2659 | if ((State & CMDLINE) |
| 2660 | && xic != NULL |
Bram Moolenaar | 494c82a | 2006-09-14 08:25:49 +0000 | [diff] [blame] | 2661 | /* && im_get_status() doesn't work when using SCIM */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2662 | && !p_imdisable |
| 2663 | && im_is_preediting()) |
| 2664 | { |
| 2665 | int cmdpos = 0; |
| 2666 | int cmdspos; |
| 2667 | int old_row; |
| 2668 | int old_col; |
| 2669 | colnr_T col; |
| 2670 | |
| 2671 | old_row = msg_row; |
| 2672 | old_col = msg_col; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2673 | cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2674 | |
| 2675 | # ifdef FEAT_MBYTE |
| 2676 | if (has_mbyte) |
| 2677 | { |
| 2678 | for (col = 0; col < preedit_start_col |
| 2679 | && cmdpos < ccline.cmdlen; ++col) |
| 2680 | { |
| 2681 | cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2682 | cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2683 | } |
| 2684 | } |
| 2685 | else |
| 2686 | # endif |
| 2687 | { |
| 2688 | cmdspos += preedit_start_col; |
| 2689 | cmdpos += preedit_start_col; |
| 2690 | } |
| 2691 | |
| 2692 | msg_row = cmdline_row + (cmdspos / (int)Columns); |
| 2693 | msg_col = cmdspos % (int)Columns; |
| 2694 | if (msg_row >= Rows) |
| 2695 | msg_row = Rows - 1; |
| 2696 | |
| 2697 | for (col = 0; cmdpos < ccline.cmdlen; ++col) |
| 2698 | { |
| 2699 | int char_len; |
| 2700 | int char_attr; |
| 2701 | |
| 2702 | char_attr = im_get_feedback_attr(col); |
| 2703 | if (char_attr < 0) |
| 2704 | break; /* end of preedit string */ |
| 2705 | |
| 2706 | # ifdef FEAT_MBYTE |
| 2707 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2708 | char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2709 | else |
| 2710 | # endif |
| 2711 | char_len = 1; |
| 2712 | |
| 2713 | msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); |
| 2714 | cmdpos += char_len; |
| 2715 | } |
| 2716 | |
| 2717 | msg_row = old_row; |
| 2718 | msg_col = old_col; |
| 2719 | } |
| 2720 | } |
| 2721 | #endif /* FEAT_XIM && FEAT_GUI_GTK */ |
| 2722 | |
| 2723 | /* |
| 2724 | * Allocate a new command line buffer. |
| 2725 | * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. |
| 2726 | * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen. |
| 2727 | */ |
| 2728 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2729 | alloc_cmdbuff(int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2730 | { |
| 2731 | /* |
| 2732 | * give some extra space to avoid having to allocate all the time |
| 2733 | */ |
| 2734 | if (len < 80) |
| 2735 | len = 100; |
| 2736 | else |
| 2737 | len += 20; |
| 2738 | |
| 2739 | ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */ |
| 2740 | ccline.cmdbufflen = len; |
| 2741 | } |
| 2742 | |
| 2743 | /* |
| 2744 | * Re-allocate the command line to length len + something extra. |
| 2745 | * return FAIL for failure, OK otherwise |
| 2746 | */ |
| 2747 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2748 | realloc_cmdbuff(int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2749 | { |
| 2750 | char_u *p; |
| 2751 | |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 2752 | if (len < ccline.cmdbufflen) |
| 2753 | return OK; /* no need to resize */ |
| 2754 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2755 | p = ccline.cmdbuff; |
| 2756 | alloc_cmdbuff(len); /* will get some more */ |
| 2757 | if (ccline.cmdbuff == NULL) /* out of memory */ |
| 2758 | { |
| 2759 | ccline.cmdbuff = p; /* keep the old one */ |
| 2760 | return FAIL; |
| 2761 | } |
Bram Moolenaar | 35a3423 | 2010-08-13 16:51:26 +0200 | [diff] [blame] | 2762 | /* There isn't always a NUL after the command, but it may need to be |
| 2763 | * there, thus copy up to the NUL and add a NUL. */ |
| 2764 | mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen); |
| 2765 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2766 | vim_free(p); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2767 | |
| 2768 | if (ccline.xpc != NULL |
| 2769 | && ccline.xpc->xp_pattern != NULL |
| 2770 | && ccline.xpc->xp_context != EXPAND_NOTHING |
| 2771 | && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) |
| 2772 | { |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 2773 | int i = (int)(ccline.xpc->xp_pattern - p); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2774 | |
| 2775 | /* If xp_pattern points inside the old cmdbuff it needs to be adjusted |
| 2776 | * to point into the newly allocated memory. */ |
| 2777 | if (i >= 0 && i <= ccline.cmdlen) |
| 2778 | ccline.xpc->xp_pattern = ccline.cmdbuff + i; |
| 2779 | } |
| 2780 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2781 | return OK; |
| 2782 | } |
| 2783 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2784 | #if defined(FEAT_ARABIC) || defined(PROTO) |
| 2785 | static char_u *arshape_buf = NULL; |
| 2786 | |
| 2787 | # if defined(EXITFREE) || defined(PROTO) |
| 2788 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2789 | free_cmdline_buf(void) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2790 | { |
| 2791 | vim_free(arshape_buf); |
| 2792 | } |
| 2793 | # endif |
| 2794 | #endif |
| 2795 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2796 | /* |
| 2797 | * Draw part of the cmdline at the current cursor position. But draw stars |
| 2798 | * when cmdline_star is TRUE. |
| 2799 | */ |
| 2800 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2801 | draw_cmdline(int start, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2802 | { |
| 2803 | #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 2804 | int i; |
| 2805 | |
| 2806 | if (cmdline_star > 0) |
| 2807 | for (i = 0; i < len; ++i) |
| 2808 | { |
| 2809 | msg_putchar('*'); |
| 2810 | # ifdef FEAT_MBYTE |
| 2811 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2812 | i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2813 | # endif |
| 2814 | } |
| 2815 | else |
| 2816 | #endif |
| 2817 | #ifdef FEAT_ARABIC |
| 2818 | if (p_arshape && !p_tbidi && enc_utf8 && len > 0) |
| 2819 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2820 | static int buflen = 0; |
| 2821 | char_u *p; |
| 2822 | int j; |
| 2823 | int newlen = 0; |
| 2824 | int mb_l; |
Bram Moolenaar | 4ea8fe1 | 2006-03-09 22:32:39 +0000 | [diff] [blame] | 2825 | int pc, pc1 = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2826 | int prev_c = 0; |
| 2827 | int prev_c1 = 0; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2828 | int u8c; |
| 2829 | int u8cc[MAX_MCO]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2830 | int nc = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2831 | |
| 2832 | /* |
| 2833 | * Do arabic shaping into a temporary buffer. This is very |
| 2834 | * inefficient! |
| 2835 | */ |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2836 | if (len * 2 + 2 > buflen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2837 | { |
| 2838 | /* Re-allocate the buffer. We keep it around to avoid a lot of |
| 2839 | * alloc()/free() calls. */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2840 | vim_free(arshape_buf); |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2841 | buflen = len * 2 + 2; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2842 | arshape_buf = alloc(buflen); |
| 2843 | if (arshape_buf == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2844 | return; /* out of memory */ |
| 2845 | } |
| 2846 | |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2847 | if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
| 2848 | { |
| 2849 | /* Prepend a space to draw the leading composing char on. */ |
| 2850 | arshape_buf[0] = ' '; |
| 2851 | newlen = 1; |
| 2852 | } |
| 2853 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2854 | for (j = start; j < start + len; j += mb_l) |
| 2855 | { |
| 2856 | p = ccline.cmdbuff + j; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2857 | u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2858 | mb_l = utfc_ptr2len_len(p, start + len - j); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2859 | if (ARABIC_CHAR(u8c)) |
| 2860 | { |
| 2861 | /* Do Arabic shaping. */ |
| 2862 | if (cmdmsg_rl) |
| 2863 | { |
| 2864 | /* displaying from right to left */ |
| 2865 | pc = prev_c; |
| 2866 | pc1 = prev_c1; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2867 | prev_c1 = u8cc[0]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2868 | if (j + mb_l >= start + len) |
| 2869 | nc = NUL; |
| 2870 | else |
| 2871 | nc = utf_ptr2char(p + mb_l); |
| 2872 | } |
| 2873 | else |
| 2874 | { |
| 2875 | /* displaying from left to right */ |
| 2876 | if (j + mb_l >= start + len) |
| 2877 | pc = NUL; |
| 2878 | else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2879 | { |
| 2880 | int pcc[MAX_MCO]; |
| 2881 | |
| 2882 | pc = utfc_ptr2char_len(p + mb_l, pcc, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2883 | start + len - j - mb_l); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2884 | pc1 = pcc[0]; |
| 2885 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2886 | nc = prev_c; |
| 2887 | } |
| 2888 | prev_c = u8c; |
| 2889 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2890 | u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2891 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2892 | newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2893 | if (u8cc[0] != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2894 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2895 | newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
| 2896 | if (u8cc[1] != 0) |
| 2897 | newlen += (*mb_char2bytes)(u8cc[1], |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2898 | arshape_buf + newlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2899 | } |
| 2900 | } |
| 2901 | else |
| 2902 | { |
| 2903 | prev_c = u8c; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2904 | mch_memmove(arshape_buf + newlen, p, mb_l); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2905 | newlen += mb_l; |
| 2906 | } |
| 2907 | } |
| 2908 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2909 | msg_outtrans_len(arshape_buf, newlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2910 | } |
| 2911 | else |
| 2912 | #endif |
| 2913 | msg_outtrans_len(ccline.cmdbuff + start, len); |
| 2914 | } |
| 2915 | |
| 2916 | /* |
| 2917 | * Put a character on the command line. Shifts the following text to the |
| 2918 | * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. |
| 2919 | * "c" must be printable (fit in one display cell)! |
| 2920 | */ |
| 2921 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2922 | putcmdline(int c, int shift) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2923 | { |
| 2924 | if (cmd_silent) |
| 2925 | return; |
| 2926 | msg_no_more = TRUE; |
| 2927 | msg_putchar(c); |
| 2928 | if (shift) |
| 2929 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 2930 | msg_no_more = FALSE; |
| 2931 | cursorcmd(); |
| 2932 | } |
| 2933 | |
| 2934 | /* |
| 2935 | * Undo a putcmdline(c, FALSE). |
| 2936 | */ |
| 2937 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2938 | unputcmdline(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2939 | { |
| 2940 | if (cmd_silent) |
| 2941 | return; |
| 2942 | msg_no_more = TRUE; |
| 2943 | if (ccline.cmdlen == ccline.cmdpos) |
| 2944 | msg_putchar(' '); |
Bram Moolenaar | 64fdf5c | 2012-06-06 12:03:06 +0200 | [diff] [blame] | 2945 | #ifdef FEAT_MBYTE |
| 2946 | else if (has_mbyte) |
| 2947 | draw_cmdline(ccline.cmdpos, |
| 2948 | (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); |
| 2949 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2950 | else |
| 2951 | draw_cmdline(ccline.cmdpos, 1); |
| 2952 | msg_no_more = FALSE; |
| 2953 | cursorcmd(); |
| 2954 | } |
| 2955 | |
| 2956 | /* |
| 2957 | * Put the given string, of the given length, onto the command line. |
| 2958 | * If len is -1, then STRLEN() is used to calculate the length. |
| 2959 | * If 'redraw' is TRUE then the new part of the command line, and the remaining |
| 2960 | * part will be redrawn, otherwise it will not. If this function is called |
| 2961 | * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be |
| 2962 | * called afterwards. |
| 2963 | */ |
| 2964 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2965 | put_on_cmdline(char_u *str, int len, int redraw) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2966 | { |
| 2967 | int retval; |
| 2968 | int i; |
| 2969 | int m; |
| 2970 | int c; |
| 2971 | |
| 2972 | if (len < 0) |
| 2973 | len = (int)STRLEN(str); |
| 2974 | |
| 2975 | /* Check if ccline.cmdbuff needs to be longer */ |
| 2976 | if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen) |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 2977 | retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2978 | else |
| 2979 | retval = OK; |
| 2980 | if (retval == OK) |
| 2981 | { |
| 2982 | if (!ccline.overstrike) |
| 2983 | { |
| 2984 | mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, |
| 2985 | ccline.cmdbuff + ccline.cmdpos, |
| 2986 | (size_t)(ccline.cmdlen - ccline.cmdpos)); |
| 2987 | ccline.cmdlen += len; |
| 2988 | } |
| 2989 | else |
| 2990 | { |
| 2991 | #ifdef FEAT_MBYTE |
| 2992 | if (has_mbyte) |
| 2993 | { |
| 2994 | /* Count nr of characters in the new string. */ |
| 2995 | m = 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2996 | for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2997 | ++m; |
| 2998 | /* Count nr of bytes in cmdline that are overwritten by these |
| 2999 | * characters. */ |
| 3000 | for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3001 | i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3002 | --m; |
| 3003 | if (i < ccline.cmdlen) |
| 3004 | { |
| 3005 | mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, |
| 3006 | ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); |
| 3007 | ccline.cmdlen += ccline.cmdpos + len - i; |
| 3008 | } |
| 3009 | else |
| 3010 | ccline.cmdlen = ccline.cmdpos + len; |
| 3011 | } |
| 3012 | else |
| 3013 | #endif |
| 3014 | if (ccline.cmdpos + len > ccline.cmdlen) |
| 3015 | ccline.cmdlen = ccline.cmdpos + len; |
| 3016 | } |
| 3017 | mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); |
| 3018 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
| 3019 | |
| 3020 | #ifdef FEAT_MBYTE |
| 3021 | if (enc_utf8) |
| 3022 | { |
| 3023 | /* When the inserted text starts with a composing character, |
| 3024 | * backup to the character before it. There could be two of them. |
| 3025 | */ |
| 3026 | i = 0; |
| 3027 | c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); |
| 3028 | while (ccline.cmdpos > 0 && utf_iscomposing(c)) |
| 3029 | { |
| 3030 | i = (*mb_head_off)(ccline.cmdbuff, |
| 3031 | ccline.cmdbuff + ccline.cmdpos - 1) + 1; |
| 3032 | ccline.cmdpos -= i; |
| 3033 | len += i; |
| 3034 | c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); |
| 3035 | } |
| 3036 | # ifdef FEAT_ARABIC |
| 3037 | if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) |
| 3038 | { |
| 3039 | /* Check the previous character for Arabic combining pair. */ |
| 3040 | i = (*mb_head_off)(ccline.cmdbuff, |
| 3041 | ccline.cmdbuff + ccline.cmdpos - 1) + 1; |
| 3042 | if (arabic_combine(utf_ptr2char(ccline.cmdbuff |
| 3043 | + ccline.cmdpos - i), c)) |
| 3044 | { |
| 3045 | ccline.cmdpos -= i; |
| 3046 | len += i; |
| 3047 | } |
| 3048 | else |
| 3049 | i = 0; |
| 3050 | } |
| 3051 | # endif |
| 3052 | if (i != 0) |
| 3053 | { |
| 3054 | /* Also backup the cursor position. */ |
| 3055 | i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); |
| 3056 | ccline.cmdspos -= i; |
| 3057 | msg_col -= i; |
| 3058 | if (msg_col < 0) |
| 3059 | { |
| 3060 | msg_col += Columns; |
| 3061 | --msg_row; |
| 3062 | } |
| 3063 | } |
| 3064 | } |
| 3065 | #endif |
| 3066 | |
| 3067 | if (redraw && !cmd_silent) |
| 3068 | { |
| 3069 | msg_no_more = TRUE; |
| 3070 | i = cmdline_row; |
Bram Moolenaar | 73dc59a | 2011-09-30 17:46:21 +0200 | [diff] [blame] | 3071 | cursorcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3072 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 3073 | /* Avoid clearing the rest of the line too often. */ |
| 3074 | if (cmdline_row != i || ccline.overstrike) |
| 3075 | msg_clr_eos(); |
| 3076 | msg_no_more = FALSE; |
| 3077 | } |
| 3078 | #ifdef FEAT_FKMAP |
| 3079 | /* |
| 3080 | * If we are in Farsi command mode, the character input must be in |
| 3081 | * Insert mode. So do not advance the cmdpos. |
| 3082 | */ |
| 3083 | if (!cmd_fkmap) |
| 3084 | #endif |
| 3085 | { |
| 3086 | if (KeyTyped) |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 3087 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3088 | m = Columns * Rows; |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 3089 | if (m < 0) /* overflow, Columns or Rows at weird value */ |
| 3090 | m = MAXCOL; |
| 3091 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3092 | else |
| 3093 | m = MAXCOL; |
| 3094 | for (i = 0; i < len; ++i) |
| 3095 | { |
| 3096 | c = cmdline_charsize(ccline.cmdpos); |
| 3097 | #ifdef FEAT_MBYTE |
| 3098 | /* count ">" for a double-wide char that doesn't fit. */ |
| 3099 | if (has_mbyte) |
| 3100 | correct_cmdspos(ccline.cmdpos, c); |
| 3101 | #endif |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 3102 | /* Stop cursor at the end of the screen, but do increment the |
| 3103 | * insert position, so that entering a very long command |
| 3104 | * works, even though you can't see it. */ |
| 3105 | if (ccline.cmdspos + c < m) |
| 3106 | ccline.cmdspos += c; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3107 | #ifdef FEAT_MBYTE |
| 3108 | if (has_mbyte) |
| 3109 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3110 | c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3111 | if (c > len - i - 1) |
| 3112 | c = len - i - 1; |
| 3113 | ccline.cmdpos += c; |
| 3114 | i += c; |
| 3115 | } |
| 3116 | #endif |
| 3117 | ++ccline.cmdpos; |
| 3118 | } |
| 3119 | } |
| 3120 | } |
| 3121 | if (redraw) |
| 3122 | msg_check(); |
| 3123 | return retval; |
| 3124 | } |
| 3125 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3126 | static struct cmdline_info prev_ccline; |
| 3127 | static int prev_ccline_used = FALSE; |
| 3128 | |
| 3129 | /* |
| 3130 | * Save ccline, because obtaining the "=" register may execute "normal :cmd" |
| 3131 | * and overwrite it. But get_cmdline_str() may need it, thus make it |
| 3132 | * available globally in prev_ccline. |
| 3133 | */ |
| 3134 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3135 | save_cmdline(struct cmdline_info *ccp) |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3136 | { |
| 3137 | if (!prev_ccline_used) |
| 3138 | { |
| 3139 | vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info)); |
| 3140 | prev_ccline_used = TRUE; |
| 3141 | } |
| 3142 | *ccp = prev_ccline; |
| 3143 | prev_ccline = ccline; |
| 3144 | ccline.cmdbuff = NULL; |
| 3145 | ccline.cmdprompt = NULL; |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 3146 | ccline.xpc = NULL; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3147 | } |
| 3148 | |
| 3149 | /* |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 3150 | * Restore ccline after it has been saved with save_cmdline(). |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3151 | */ |
| 3152 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3153 | restore_cmdline(struct cmdline_info *ccp) |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3154 | { |
| 3155 | ccline = prev_ccline; |
| 3156 | prev_ccline = *ccp; |
| 3157 | } |
| 3158 | |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3159 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 3160 | /* |
| 3161 | * Save the command line into allocated memory. Returns a pointer to be |
| 3162 | * passed to restore_cmdline_alloc() later. |
| 3163 | * Returns NULL when failed. |
| 3164 | */ |
| 3165 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3166 | save_cmdline_alloc(void) |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3167 | { |
| 3168 | struct cmdline_info *p; |
| 3169 | |
| 3170 | p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info)); |
| 3171 | if (p != NULL) |
| 3172 | save_cmdline(p); |
| 3173 | return (char_u *)p; |
| 3174 | } |
| 3175 | |
| 3176 | /* |
| 3177 | * Restore the command line from the return value of save_cmdline_alloc(). |
| 3178 | */ |
| 3179 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3180 | restore_cmdline_alloc(char_u *p) |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3181 | { |
| 3182 | if (p != NULL) |
| 3183 | { |
| 3184 | restore_cmdline((struct cmdline_info *)p); |
| 3185 | vim_free(p); |
| 3186 | } |
| 3187 | } |
| 3188 | #endif |
| 3189 | |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3190 | /* |
Bram Moolenaar | 6f62fed | 2015-12-17 14:04:24 +0100 | [diff] [blame] | 3191 | * Paste a yank register into the command line. |
| 3192 | * Used by CTRL-R command in command-line mode. |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3193 | * insert_reg() can't be used here, because special characters from the |
| 3194 | * register contents will be interpreted as commands. |
| 3195 | * |
Bram Moolenaar | 6f62fed | 2015-12-17 14:04:24 +0100 | [diff] [blame] | 3196 | * Return FAIL for failure, OK otherwise. |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3197 | */ |
| 3198 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3199 | cmdline_paste( |
| 3200 | int regname, |
| 3201 | int literally, /* Insert text literally instead of "as typed" */ |
| 3202 | int remcr) /* remove trailing CR */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3203 | { |
| 3204 | long i; |
| 3205 | char_u *arg; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3206 | char_u *p; |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3207 | int allocated; |
| 3208 | struct cmdline_info save_ccline; |
| 3209 | |
| 3210 | /* check for valid regname; also accept special characters for CTRL-R in |
| 3211 | * the command line */ |
| 3212 | if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W |
| 3213 | && regname != Ctrl_A && !valid_yank_reg(regname, FALSE)) |
| 3214 | return FAIL; |
| 3215 | |
| 3216 | /* A register containing CTRL-R can cause an endless loop. Allow using |
| 3217 | * CTRL-C to break the loop. */ |
| 3218 | line_breakcheck(); |
| 3219 | if (got_int) |
| 3220 | return FAIL; |
| 3221 | |
| 3222 | #ifdef FEAT_CLIPBOARD |
| 3223 | regname = may_get_selection(regname); |
| 3224 | #endif |
| 3225 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3226 | /* Need to save and restore ccline. And set "textlock" to avoid nasty |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3227 | * things like going to another buffer when evaluating an expression. */ |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3228 | save_cmdline(&save_ccline); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3229 | ++textlock; |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3230 | i = get_spec_reg(regname, &arg, &allocated, TRUE); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3231 | --textlock; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3232 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3233 | |
| 3234 | if (i) |
| 3235 | { |
| 3236 | /* Got the value of a special register in "arg". */ |
| 3237 | if (arg == NULL) |
| 3238 | return FAIL; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3239 | |
| 3240 | /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate |
| 3241 | * part of the word. */ |
| 3242 | p = arg; |
| 3243 | if (p_is && regname == Ctrl_W) |
| 3244 | { |
| 3245 | char_u *w; |
| 3246 | int len; |
| 3247 | |
| 3248 | /* Locate start of last word in the cmd buffer. */ |
Bram Moolenaar | 80ae7b2 | 2011-07-07 16:44:37 +0200 | [diff] [blame] | 3249 | for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3250 | { |
| 3251 | #ifdef FEAT_MBYTE |
| 3252 | if (has_mbyte) |
| 3253 | { |
| 3254 | len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; |
| 3255 | if (!vim_iswordc(mb_ptr2char(w - len))) |
| 3256 | break; |
| 3257 | w -= len; |
| 3258 | } |
| 3259 | else |
| 3260 | #endif |
| 3261 | { |
| 3262 | if (!vim_iswordc(w[-1])) |
| 3263 | break; |
| 3264 | --w; |
| 3265 | } |
| 3266 | } |
Bram Moolenaar | 80ae7b2 | 2011-07-07 16:44:37 +0200 | [diff] [blame] | 3267 | len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3268 | if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
| 3269 | p += len; |
| 3270 | } |
| 3271 | |
| 3272 | cmdline_paste_str(p, literally); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3273 | if (allocated) |
| 3274 | vim_free(arg); |
| 3275 | return OK; |
| 3276 | } |
| 3277 | |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 3278 | return cmdline_paste_reg(regname, literally, remcr); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3279 | } |
| 3280 | |
| 3281 | /* |
| 3282 | * Put a string on the command line. |
| 3283 | * When "literally" is TRUE, insert literally. |
| 3284 | * When "literally" is FALSE, insert as typed, but don't leave the command |
| 3285 | * line. |
| 3286 | */ |
| 3287 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3288 | cmdline_paste_str(char_u *s, int literally) |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3289 | { |
| 3290 | int c, cv; |
| 3291 | |
| 3292 | if (literally) |
| 3293 | put_on_cmdline(s, -1, TRUE); |
| 3294 | else |
| 3295 | while (*s != NUL) |
| 3296 | { |
| 3297 | cv = *s; |
| 3298 | if (cv == Ctrl_V && s[1]) |
| 3299 | ++s; |
| 3300 | #ifdef FEAT_MBYTE |
| 3301 | if (has_mbyte) |
Bram Moolenaar | 48be32b | 2008-06-20 10:56:16 +0000 | [diff] [blame] | 3302 | c = mb_cptr2char_adv(&s); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3303 | else |
| 3304 | #endif |
| 3305 | c = *s++; |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 3306 | if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
| 3307 | || c == CAR || c == NL || c == Ctrl_L |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3308 | #ifdef UNIX |
| 3309 | || c == intr_char |
| 3310 | #endif |
| 3311 | || (c == Ctrl_BSL && *s == Ctrl_N)) |
| 3312 | stuffcharReadbuff(Ctrl_V); |
| 3313 | stuffcharReadbuff(c); |
| 3314 | } |
| 3315 | } |
| 3316 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3317 | #ifdef FEAT_WILDMENU |
| 3318 | /* |
| 3319 | * Delete characters on the command line, from "from" to the current |
| 3320 | * position. |
| 3321 | */ |
| 3322 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3323 | cmdline_del(int from) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3324 | { |
| 3325 | mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos, |
| 3326 | (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); |
| 3327 | ccline.cmdlen -= ccline.cmdpos - from; |
| 3328 | ccline.cmdpos = from; |
| 3329 | } |
| 3330 | #endif |
| 3331 | |
| 3332 | /* |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 3333 | * This function is called when the screen size changes and with incremental |
| 3334 | * search and in other situations where the command line may have been |
| 3335 | * overwritten. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3336 | */ |
| 3337 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3338 | redrawcmdline(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3339 | { |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame] | 3340 | redrawcmdline_ex(TRUE); |
| 3341 | } |
| 3342 | |
| 3343 | void |
| 3344 | redrawcmdline_ex(int do_compute_cmdrow) |
| 3345 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3346 | if (cmd_silent) |
| 3347 | return; |
| 3348 | need_wait_return = FALSE; |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame] | 3349 | if (do_compute_cmdrow) |
| 3350 | compute_cmdrow(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3351 | redrawcmd(); |
| 3352 | cursorcmd(); |
| 3353 | } |
| 3354 | |
| 3355 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3356 | redrawcmdprompt(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3357 | { |
| 3358 | int i; |
| 3359 | |
| 3360 | if (cmd_silent) |
| 3361 | return; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 3362 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3363 | msg_putchar(ccline.cmdfirstc); |
| 3364 | if (ccline.cmdprompt != NULL) |
| 3365 | { |
| 3366 | msg_puts_attr(ccline.cmdprompt, ccline.cmdattr); |
| 3367 | ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; |
| 3368 | /* do the reverse of set_cmdspos() */ |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 3369 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3370 | --ccline.cmdindent; |
| 3371 | } |
| 3372 | else |
| 3373 | for (i = ccline.cmdindent; i > 0; --i) |
| 3374 | msg_putchar(' '); |
| 3375 | } |
| 3376 | |
| 3377 | /* |
| 3378 | * Redraw what is currently on the command line. |
| 3379 | */ |
| 3380 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3381 | redrawcmd(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3382 | { |
| 3383 | if (cmd_silent) |
| 3384 | return; |
| 3385 | |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 3386 | /* when 'incsearch' is set there may be no command line while redrawing */ |
| 3387 | if (ccline.cmdbuff == NULL) |
| 3388 | { |
| 3389 | windgoto(cmdline_row, 0); |
| 3390 | msg_clr_eos(); |
| 3391 | return; |
| 3392 | } |
| 3393 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3394 | msg_start(); |
| 3395 | redrawcmdprompt(); |
| 3396 | |
| 3397 | /* Don't use more prompt, truncate the cmdline if it doesn't fit. */ |
| 3398 | msg_no_more = TRUE; |
| 3399 | draw_cmdline(0, ccline.cmdlen); |
| 3400 | msg_clr_eos(); |
| 3401 | msg_no_more = FALSE; |
| 3402 | |
| 3403 | set_cmdspos_cursor(); |
| 3404 | |
| 3405 | /* |
| 3406 | * An emsg() before may have set msg_scroll. This is used in normal mode, |
| 3407 | * in cmdline mode we can reset them now. |
| 3408 | */ |
| 3409 | msg_scroll = FALSE; /* next message overwrites cmdline */ |
| 3410 | |
| 3411 | /* Typing ':' at the more prompt may set skip_redraw. We don't want this |
| 3412 | * in cmdline mode */ |
| 3413 | skip_redraw = FALSE; |
| 3414 | } |
| 3415 | |
| 3416 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3417 | compute_cmdrow(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3418 | { |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 3419 | if (exmode_active || msg_scrolled != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3420 | cmdline_row = Rows - 1; |
| 3421 | else |
| 3422 | cmdline_row = W_WINROW(lastwin) + lastwin->w_height |
| 3423 | + W_STATUS_HEIGHT(lastwin); |
| 3424 | } |
| 3425 | |
| 3426 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3427 | cursorcmd(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3428 | { |
| 3429 | if (cmd_silent) |
| 3430 | return; |
| 3431 | |
| 3432 | #ifdef FEAT_RIGHTLEFT |
| 3433 | if (cmdmsg_rl) |
| 3434 | { |
| 3435 | msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); |
| 3436 | msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; |
| 3437 | if (msg_row <= 0) |
| 3438 | msg_row = Rows - 1; |
| 3439 | } |
| 3440 | else |
| 3441 | #endif |
| 3442 | { |
| 3443 | msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); |
| 3444 | msg_col = ccline.cmdspos % (int)Columns; |
| 3445 | if (msg_row >= Rows) |
| 3446 | msg_row = Rows - 1; |
| 3447 | } |
| 3448 | |
| 3449 | windgoto(msg_row, msg_col); |
| 3450 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
| 3451 | redrawcmd_preedit(); |
| 3452 | #endif |
| 3453 | #ifdef MCH_CURSOR_SHAPE |
| 3454 | mch_update_cursor(); |
| 3455 | #endif |
| 3456 | } |
| 3457 | |
| 3458 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3459 | gotocmdline(int clr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3460 | { |
| 3461 | msg_start(); |
| 3462 | #ifdef FEAT_RIGHTLEFT |
| 3463 | if (cmdmsg_rl) |
| 3464 | msg_col = Columns - 1; |
| 3465 | else |
| 3466 | #endif |
| 3467 | msg_col = 0; /* always start in column 0 */ |
| 3468 | if (clr) /* clear the bottom line(s) */ |
| 3469 | msg_clr_eos(); /* will reset clear_cmdline */ |
| 3470 | windgoto(cmdline_row, 0); |
| 3471 | } |
| 3472 | |
| 3473 | /* |
| 3474 | * Check the word in front of the cursor for an abbreviation. |
| 3475 | * Called when the non-id character "c" has been entered. |
| 3476 | * When an abbreviation is recognized it is removed from the text with |
| 3477 | * backspaces and the replacement string is inserted, followed by "c". |
| 3478 | */ |
| 3479 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3480 | ccheck_abbr(int c) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3481 | { |
| 3482 | if (p_paste || no_abbr) /* no abbreviations or in paste mode */ |
| 3483 | return FALSE; |
| 3484 | |
| 3485 | return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0); |
| 3486 | } |
| 3487 | |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 3488 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 3489 | static int |
| 3490 | #ifdef __BORLANDC__ |
| 3491 | _RTLENTRYF |
| 3492 | #endif |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3493 | sort_func_compare(const void *s1, const void *s2) |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 3494 | { |
| 3495 | char_u *p1 = *(char_u **)s1; |
| 3496 | char_u *p2 = *(char_u **)s2; |
| 3497 | |
| 3498 | if (*p1 != '<' && *p2 == '<') return -1; |
| 3499 | if (*p1 == '<' && *p2 != '<') return 1; |
| 3500 | return STRCMP(p1, p2); |
| 3501 | } |
| 3502 | #endif |
| 3503 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3504 | /* |
| 3505 | * Return FAIL if this is not an appropriate context in which to do |
| 3506 | * completion of anything, return OK if it is (even if there are no matches). |
| 3507 | * For the caller, this means that the character is just passed through like a |
| 3508 | * normal character (instead of being expanded). This allows :s/^I^D etc. |
| 3509 | */ |
| 3510 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3511 | nextwild( |
| 3512 | expand_T *xp, |
| 3513 | int type, |
| 3514 | int options, /* extra options for ExpandOne() */ |
| 3515 | int escape) /* if TRUE, escape the returned matches */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3516 | { |
| 3517 | int i, j; |
| 3518 | char_u *p1; |
| 3519 | char_u *p2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3520 | int difflen; |
| 3521 | int v; |
| 3522 | |
| 3523 | if (xp->xp_numfiles == -1) |
| 3524 | { |
| 3525 | set_expand_context(xp); |
| 3526 | cmd_showtail = expand_showtail(xp); |
| 3527 | } |
| 3528 | |
| 3529 | if (xp->xp_context == EXPAND_UNSUCCESSFUL) |
| 3530 | { |
| 3531 | beep_flush(); |
| 3532 | return OK; /* Something illegal on command line */ |
| 3533 | } |
| 3534 | if (xp->xp_context == EXPAND_NOTHING) |
| 3535 | { |
| 3536 | /* Caller can use the character as a normal char instead */ |
| 3537 | return FAIL; |
| 3538 | } |
| 3539 | |
| 3540 | MSG_PUTS("..."); /* show that we are busy */ |
| 3541 | out_flush(); |
| 3542 | |
| 3543 | i = (int)(xp->xp_pattern - ccline.cmdbuff); |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3544 | xp->xp_pattern_len = ccline.cmdpos - i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3545 | |
| 3546 | if (type == WILD_NEXT || type == WILD_PREV) |
| 3547 | { |
| 3548 | /* |
| 3549 | * Get next/previous match for a previous expanded pattern. |
| 3550 | */ |
| 3551 | p2 = ExpandOne(xp, NULL, NULL, 0, type); |
| 3552 | } |
| 3553 | else |
| 3554 | { |
| 3555 | /* |
| 3556 | * Translate string into pattern and expand it. |
| 3557 | */ |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3558 | if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, |
| 3559 | xp->xp_context)) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3560 | p2 = NULL; |
| 3561 | else |
| 3562 | { |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3563 | int use_options = options | |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 3564 | WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT; |
| 3565 | if (escape) |
| 3566 | use_options |= WILD_ESCAPE; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3567 | |
| 3568 | if (p_wic) |
| 3569 | use_options += WILD_ICASE; |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3570 | p2 = ExpandOne(xp, p1, |
| 3571 | vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len), |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3572 | use_options, type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3573 | vim_free(p1); |
Bram Moolenaar | 2660c0e | 2010-01-19 14:59:56 +0100 | [diff] [blame] | 3574 | /* longest match: make sure it is not shorter, happens with :help */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3575 | if (p2 != NULL && type == WILD_LONGEST) |
| 3576 | { |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3577 | for (j = 0; j < xp->xp_pattern_len; ++j) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3578 | if (ccline.cmdbuff[i + j] == '*' |
| 3579 | || ccline.cmdbuff[i + j] == '?') |
| 3580 | break; |
| 3581 | if ((int)STRLEN(p2) < j) |
| 3582 | { |
| 3583 | vim_free(p2); |
| 3584 | p2 = NULL; |
| 3585 | } |
| 3586 | } |
| 3587 | } |
| 3588 | } |
| 3589 | |
| 3590 | if (p2 != NULL && !got_int) |
| 3591 | { |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3592 | difflen = (int)STRLEN(p2) - xp->xp_pattern_len; |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 3593 | if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3594 | { |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 3595 | v = realloc_cmdbuff(ccline.cmdlen + difflen + 4); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3596 | xp->xp_pattern = ccline.cmdbuff + i; |
| 3597 | } |
| 3598 | else |
| 3599 | v = OK; |
| 3600 | if (v == OK) |
| 3601 | { |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3602 | mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen], |
| 3603 | &ccline.cmdbuff[ccline.cmdpos], |
| 3604 | (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); |
| 3605 | mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3606 | ccline.cmdlen += difflen; |
| 3607 | ccline.cmdpos += difflen; |
| 3608 | } |
| 3609 | } |
| 3610 | vim_free(p2); |
| 3611 | |
| 3612 | redrawcmd(); |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 3613 | cursorcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3614 | |
| 3615 | /* When expanding a ":map" command and no matches are found, assume that |
| 3616 | * the key is supposed to be inserted literally */ |
| 3617 | if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) |
| 3618 | return FAIL; |
| 3619 | |
| 3620 | if (xp->xp_numfiles <= 0 && p2 == NULL) |
| 3621 | beep_flush(); |
| 3622 | else if (xp->xp_numfiles == 1) |
| 3623 | /* free expanded pattern */ |
| 3624 | (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); |
| 3625 | |
| 3626 | return OK; |
| 3627 | } |
| 3628 | |
| 3629 | /* |
| 3630 | * Do wildcard expansion on the string 'str'. |
| 3631 | * Chars that should not be expanded must be preceded with a backslash. |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 3632 | * Return a pointer to allocated memory containing the new string. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3633 | * Return NULL for failure. |
| 3634 | * |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3635 | * "orig" is the originally expanded string, copied to allocated memory. It |
| 3636 | * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or |
| 3637 | * WILD_PREV "orig" should be NULL. |
| 3638 | * |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 3639 | * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode" |
| 3640 | * is WILD_EXPAND_FREE or WILD_ALL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3641 | * |
| 3642 | * mode = WILD_FREE: just free previously expanded matches |
| 3643 | * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches |
| 3644 | * mode = WILD_EXPAND_KEEP: normal expansion, keep matches |
| 3645 | * mode = WILD_NEXT: use next match in multiple match, wrap to first |
| 3646 | * mode = WILD_PREV: use previous match in multiple match, wrap to first |
| 3647 | * mode = WILD_ALL: return all matches concatenated |
| 3648 | * mode = WILD_LONGEST: return longest matched part |
Bram Moolenaar | 146e9c3 | 2012-03-07 19:18:23 +0100 | [diff] [blame] | 3649 | * mode = WILD_ALL_KEEP: get all matches, keep matches |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3650 | * |
| 3651 | * options = WILD_LIST_NOTFOUND: list entries without a match |
| 3652 | * options = WILD_HOME_REPLACE: do home_replace() for buffer names |
| 3653 | * options = WILD_USE_NL: Use '\n' for WILD_ALL |
| 3654 | * options = WILD_NO_BEEP: Don't beep for multiple matches |
| 3655 | * options = WILD_ADD_SLASH: add a slash after directory names |
| 3656 | * options = WILD_KEEP_ALL: don't remove 'wildignore' entries |
| 3657 | * options = WILD_SILENT: don't print warning messages |
| 3658 | * options = WILD_ESCAPE: put backslash before special chars |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3659 | * options = WILD_ICASE: ignore case for files |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3660 | * |
| 3661 | * The variables xp->xp_context and xp->xp_backslash must have been set! |
| 3662 | */ |
| 3663 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3664 | ExpandOne( |
| 3665 | expand_T *xp, |
| 3666 | char_u *str, |
| 3667 | char_u *orig, /* allocated copy of original of expanded string */ |
| 3668 | int options, |
| 3669 | int mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3670 | { |
| 3671 | char_u *ss = NULL; |
| 3672 | static int findex; |
| 3673 | static char_u *orig_save = NULL; /* kept value of orig */ |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3674 | int orig_saved = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3675 | int i; |
| 3676 | long_u len; |
| 3677 | int non_suf_match; /* number without matching suffix */ |
| 3678 | |
| 3679 | /* |
| 3680 | * first handle the case of using an old match |
| 3681 | */ |
| 3682 | if (mode == WILD_NEXT || mode == WILD_PREV) |
| 3683 | { |
| 3684 | if (xp->xp_numfiles > 0) |
| 3685 | { |
| 3686 | if (mode == WILD_PREV) |
| 3687 | { |
| 3688 | if (findex == -1) |
| 3689 | findex = xp->xp_numfiles; |
| 3690 | --findex; |
| 3691 | } |
| 3692 | else /* mode == WILD_NEXT */ |
| 3693 | ++findex; |
| 3694 | |
| 3695 | /* |
| 3696 | * When wrapping around, return the original string, set findex to |
| 3697 | * -1. |
| 3698 | */ |
| 3699 | if (findex < 0) |
| 3700 | { |
| 3701 | if (orig_save == NULL) |
| 3702 | findex = xp->xp_numfiles - 1; |
| 3703 | else |
| 3704 | findex = -1; |
| 3705 | } |
| 3706 | if (findex >= xp->xp_numfiles) |
| 3707 | { |
| 3708 | if (orig_save == NULL) |
| 3709 | findex = 0; |
| 3710 | else |
| 3711 | findex = -1; |
| 3712 | } |
| 3713 | #ifdef FEAT_WILDMENU |
| 3714 | if (p_wmnu) |
| 3715 | win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files, |
| 3716 | findex, cmd_showtail); |
| 3717 | #endif |
| 3718 | if (findex == -1) |
| 3719 | return vim_strsave(orig_save); |
| 3720 | return vim_strsave(xp->xp_files[findex]); |
| 3721 | } |
| 3722 | else |
| 3723 | return NULL; |
| 3724 | } |
| 3725 | |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3726 | /* free old names */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3727 | if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST) |
| 3728 | { |
| 3729 | FreeWild(xp->xp_numfiles, xp->xp_files); |
| 3730 | xp->xp_numfiles = -1; |
| 3731 | vim_free(orig_save); |
| 3732 | orig_save = NULL; |
| 3733 | } |
| 3734 | findex = 0; |
| 3735 | |
| 3736 | if (mode == WILD_FREE) /* only release file name */ |
| 3737 | return NULL; |
| 3738 | |
| 3739 | if (xp->xp_numfiles == -1) |
| 3740 | { |
| 3741 | vim_free(orig_save); |
| 3742 | orig_save = orig; |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3743 | orig_saved = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3744 | |
| 3745 | /* |
| 3746 | * Do the expansion. |
| 3747 | */ |
| 3748 | if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files, |
| 3749 | options) == FAIL) |
| 3750 | { |
| 3751 | #ifdef FNAME_ILLEGAL |
| 3752 | /* Illegal file name has been silently skipped. But when there |
| 3753 | * are wildcards, the real problem is that there was no match, |
| 3754 | * causing the pattern to be added, which has illegal characters. |
| 3755 | */ |
| 3756 | if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND)) |
| 3757 | EMSG2(_(e_nomatch2), str); |
| 3758 | #endif |
| 3759 | } |
| 3760 | else if (xp->xp_numfiles == 0) |
| 3761 | { |
| 3762 | if (!(options & WILD_SILENT)) |
| 3763 | EMSG2(_(e_nomatch2), str); |
| 3764 | } |
| 3765 | else |
| 3766 | { |
| 3767 | /* Escape the matches for use on the command line. */ |
| 3768 | ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options); |
| 3769 | |
| 3770 | /* |
| 3771 | * Check for matching suffixes in file names. |
| 3772 | */ |
Bram Moolenaar | 146e9c3 | 2012-03-07 19:18:23 +0100 | [diff] [blame] | 3773 | if (mode != WILD_ALL && mode != WILD_ALL_KEEP |
| 3774 | && mode != WILD_LONGEST) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | { |
| 3776 | if (xp->xp_numfiles) |
| 3777 | non_suf_match = xp->xp_numfiles; |
| 3778 | else |
| 3779 | non_suf_match = 1; |
| 3780 | if ((xp->xp_context == EXPAND_FILES |
| 3781 | || xp->xp_context == EXPAND_DIRECTORIES) |
| 3782 | && xp->xp_numfiles > 1) |
| 3783 | { |
| 3784 | /* |
| 3785 | * More than one match; check suffix. |
| 3786 | * The files will have been sorted on matching suffix in |
| 3787 | * expand_wildcards, only need to check the first two. |
| 3788 | */ |
| 3789 | non_suf_match = 0; |
| 3790 | for (i = 0; i < 2; ++i) |
| 3791 | if (match_suffix(xp->xp_files[i])) |
| 3792 | ++non_suf_match; |
| 3793 | } |
| 3794 | if (non_suf_match != 1) |
| 3795 | { |
| 3796 | /* Can we ever get here unless it's while expanding |
| 3797 | * interactively? If not, we can get rid of this all |
| 3798 | * together. Don't really want to wait for this message |
| 3799 | * (and possibly have to hit return to continue!). |
| 3800 | */ |
| 3801 | if (!(options & WILD_SILENT)) |
| 3802 | EMSG(_(e_toomany)); |
| 3803 | else if (!(options & WILD_NO_BEEP)) |
| 3804 | beep_flush(); |
| 3805 | } |
| 3806 | if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE)) |
| 3807 | ss = vim_strsave(xp->xp_files[0]); |
| 3808 | } |
| 3809 | } |
| 3810 | } |
| 3811 | |
| 3812 | /* Find longest common part */ |
| 3813 | if (mode == WILD_LONGEST && xp->xp_numfiles > 0) |
| 3814 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3815 | int mb_len = 1; |
| 3816 | int c0, ci; |
| 3817 | |
| 3818 | for (len = 0; xp->xp_files[0][len]; len += mb_len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3819 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3820 | #ifdef FEAT_MBYTE |
| 3821 | if (has_mbyte) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3822 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3823 | mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]); |
| 3824 | c0 =(* mb_ptr2char)(&xp->xp_files[0][len]); |
| 3825 | } |
| 3826 | else |
| 3827 | #endif |
Bram Moolenaar | e4eda3b | 2015-11-21 16:28:50 +0100 | [diff] [blame] | 3828 | c0 = xp->xp_files[0][len]; |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3829 | for (i = 1; i < xp->xp_numfiles; ++i) |
| 3830 | { |
| 3831 | #ifdef FEAT_MBYTE |
| 3832 | if (has_mbyte) |
| 3833 | ci =(* mb_ptr2char)(&xp->xp_files[i][len]); |
| 3834 | else |
| 3835 | #endif |
| 3836 | ci = xp->xp_files[i][len]; |
Bram Moolenaar | 71afbfe | 2013-03-19 16:49:16 +0100 | [diff] [blame] | 3837 | if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3838 | || xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3839 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 71afbfe | 2013-03-19 16:49:16 +0100 | [diff] [blame] | 3840 | || xp->xp_context == EXPAND_BUFFERS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3841 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3842 | if (MB_TOLOWER(c0) != MB_TOLOWER(ci)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3843 | break; |
| 3844 | } |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3845 | else if (c0 != ci) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3846 | break; |
| 3847 | } |
| 3848 | if (i < xp->xp_numfiles) |
| 3849 | { |
| 3850 | if (!(options & WILD_NO_BEEP)) |
Bram Moolenaar | 165bc69 | 2015-07-21 17:53:25 +0200 | [diff] [blame] | 3851 | vim_beep(BO_WILD); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3852 | break; |
| 3853 | } |
| 3854 | } |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3855 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3856 | ss = alloc((unsigned)len + 1); |
| 3857 | if (ss) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 3858 | vim_strncpy(ss, xp->xp_files[0], (size_t)len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3859 | findex = -1; /* next p_wc gets first one */ |
| 3860 | } |
| 3861 | |
| 3862 | /* Concatenate all matching names */ |
| 3863 | if (mode == WILD_ALL && xp->xp_numfiles > 0) |
| 3864 | { |
| 3865 | len = 0; |
| 3866 | for (i = 0; i < xp->xp_numfiles; ++i) |
| 3867 | len += (long_u)STRLEN(xp->xp_files[i]) + 1; |
| 3868 | ss = lalloc(len, TRUE); |
| 3869 | if (ss != NULL) |
| 3870 | { |
| 3871 | *ss = NUL; |
| 3872 | for (i = 0; i < xp->xp_numfiles; ++i) |
| 3873 | { |
| 3874 | STRCAT(ss, xp->xp_files[i]); |
| 3875 | if (i != xp->xp_numfiles - 1) |
| 3876 | STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " "); |
| 3877 | } |
| 3878 | } |
| 3879 | } |
| 3880 | |
| 3881 | if (mode == WILD_EXPAND_FREE || mode == WILD_ALL) |
| 3882 | ExpandCleanup(xp); |
| 3883 | |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3884 | /* Free "orig" if it wasn't stored in "orig_save". */ |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3885 | if (!orig_saved) |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3886 | vim_free(orig); |
| 3887 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3888 | return ss; |
| 3889 | } |
| 3890 | |
| 3891 | /* |
| 3892 | * Prepare an expand structure for use. |
| 3893 | */ |
| 3894 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3895 | ExpandInit(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3896 | { |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 3897 | xp->xp_pattern = NULL; |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3898 | xp->xp_pattern_len = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3899 | xp->xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3900 | #ifndef BACKSLASH_IN_FILENAME |
| 3901 | xp->xp_shell = FALSE; |
| 3902 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3903 | xp->xp_numfiles = -1; |
| 3904 | xp->xp_files = NULL; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3905 | #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) |
| 3906 | xp->xp_arg = NULL; |
| 3907 | #endif |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 3908 | xp->xp_line = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3909 | } |
| 3910 | |
| 3911 | /* |
| 3912 | * Cleanup an expand structure after use. |
| 3913 | */ |
| 3914 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3915 | ExpandCleanup(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3916 | { |
| 3917 | if (xp->xp_numfiles >= 0) |
| 3918 | { |
| 3919 | FreeWild(xp->xp_numfiles, xp->xp_files); |
| 3920 | xp->xp_numfiles = -1; |
| 3921 | } |
| 3922 | } |
| 3923 | |
| 3924 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3925 | ExpandEscape( |
| 3926 | expand_T *xp, |
| 3927 | char_u *str, |
| 3928 | int numfiles, |
| 3929 | char_u **files, |
| 3930 | int options) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3931 | { |
| 3932 | int i; |
| 3933 | char_u *p; |
| 3934 | |
| 3935 | /* |
| 3936 | * May change home directory back to "~" |
| 3937 | */ |
| 3938 | if (options & WILD_HOME_REPLACE) |
| 3939 | tilde_replace(str, numfiles, files); |
| 3940 | |
| 3941 | if (options & WILD_ESCAPE) |
| 3942 | { |
| 3943 | if (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | cca92ec | 2011-04-28 17:21:53 +0200 | [diff] [blame] | 3944 | || xp->xp_context == EXPAND_FILES_IN_PATH |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3945 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3946 | || xp->xp_context == EXPAND_BUFFERS |
| 3947 | || xp->xp_context == EXPAND_DIRECTORIES) |
| 3948 | { |
| 3949 | /* |
| 3950 | * Insert a backslash into a file name before a space, \, %, # |
| 3951 | * and wildmatch characters, except '~'. |
| 3952 | */ |
| 3953 | for (i = 0; i < numfiles; ++i) |
| 3954 | { |
| 3955 | /* for ":set path=" we need to escape spaces twice */ |
| 3956 | if (xp->xp_backslash == XP_BS_THREE) |
| 3957 | { |
| 3958 | p = vim_strsave_escaped(files[i], (char_u *)" "); |
| 3959 | if (p != NULL) |
| 3960 | { |
| 3961 | vim_free(files[i]); |
| 3962 | files[i] = p; |
Bram Moolenaar | 4ea8fe1 | 2006-03-09 22:32:39 +0000 | [diff] [blame] | 3963 | #if defined(BACKSLASH_IN_FILENAME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3964 | p = vim_strsave_escaped(files[i], (char_u *)" "); |
| 3965 | if (p != NULL) |
| 3966 | { |
| 3967 | vim_free(files[i]); |
| 3968 | files[i] = p; |
| 3969 | } |
| 3970 | #endif |
| 3971 | } |
| 3972 | } |
Bram Moolenaar | 0356c8c | 2008-05-28 20:02:48 +0000 | [diff] [blame] | 3973 | #ifdef BACKSLASH_IN_FILENAME |
| 3974 | p = vim_strsave_fnameescape(files[i], FALSE); |
| 3975 | #else |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 3976 | p = vim_strsave_fnameescape(files[i], xp->xp_shell); |
Bram Moolenaar | 0356c8c | 2008-05-28 20:02:48 +0000 | [diff] [blame] | 3977 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3978 | if (p != NULL) |
| 3979 | { |
| 3980 | vim_free(files[i]); |
| 3981 | files[i] = p; |
| 3982 | } |
| 3983 | |
| 3984 | /* If 'str' starts with "\~", replace "~" at start of |
| 3985 | * files[i] with "\~". */ |
| 3986 | if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~') |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 3987 | escape_fname(&files[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3988 | } |
| 3989 | xp->xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 3990 | |
| 3991 | /* If the first file starts with a '+' escape it. Otherwise it |
| 3992 | * could be seen as "+cmd". */ |
| 3993 | if (*files[0] == '+') |
| 3994 | escape_fname(&files[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3995 | } |
| 3996 | else if (xp->xp_context == EXPAND_TAGS) |
| 3997 | { |
| 3998 | /* |
| 3999 | * Insert a backslash before characters in a tag name that |
| 4000 | * would terminate the ":tag" command. |
| 4001 | */ |
| 4002 | for (i = 0; i < numfiles; ++i) |
| 4003 | { |
| 4004 | p = vim_strsave_escaped(files[i], (char_u *)"\\|\""); |
| 4005 | if (p != NULL) |
| 4006 | { |
| 4007 | vim_free(files[i]); |
| 4008 | files[i] = p; |
| 4009 | } |
| 4010 | } |
| 4011 | } |
| 4012 | } |
| 4013 | } |
| 4014 | |
| 4015 | /* |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4016 | * Escape special characters in "fname" for when used as a file name argument |
| 4017 | * after a Vim command, or, when "shell" is non-zero, a shell command. |
| 4018 | * Returns the result in allocated memory. |
| 4019 | */ |
| 4020 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4021 | vim_strsave_fnameescape(char_u *fname, int shell) |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4022 | { |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 4023 | char_u *p; |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4024 | #ifdef BACKSLASH_IN_FILENAME |
| 4025 | char_u buf[20]; |
| 4026 | int j = 0; |
| 4027 | |
Bram Moolenaar | 8f5610d | 2013-11-12 05:28:26 +0100 | [diff] [blame] | 4028 | /* Don't escape '[', '{' and '!' if they are in 'isfname'. */ |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4029 | for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
Bram Moolenaar | 8f5610d | 2013-11-12 05:28:26 +0100 | [diff] [blame] | 4030 | if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4031 | buf[j++] = *p; |
| 4032 | buf[j] = NUL; |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4033 | p = vim_strsave_escaped(fname, buf); |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4034 | #else |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 4035 | p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
| 4036 | if (shell && csh_like_shell() && p != NULL) |
| 4037 | { |
| 4038 | char_u *s; |
| 4039 | |
| 4040 | /* For csh and similar shells need to put two backslashes before '!'. |
| 4041 | * One is taken by Vim, one by the shell. */ |
| 4042 | s = vim_strsave_escaped(p, (char_u *)"!"); |
| 4043 | vim_free(p); |
| 4044 | p = s; |
| 4045 | } |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4046 | #endif |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4047 | |
| 4048 | /* '>' and '+' are special at the start of some commands, e.g. ":edit" and |
| 4049 | * ":write". "cd -" has a special meaning. */ |
Bram Moolenaar | a9d52e3 | 2010-07-31 16:44:19 +0200 | [diff] [blame] | 4050 | if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4051 | escape_fname(&p); |
| 4052 | |
| 4053 | return p; |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4054 | } |
| 4055 | |
| 4056 | /* |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4057 | * Put a backslash before the file name in "pp", which is in allocated memory. |
| 4058 | */ |
| 4059 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4060 | escape_fname(char_u **pp) |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4061 | { |
| 4062 | char_u *p; |
| 4063 | |
| 4064 | p = alloc((unsigned)(STRLEN(*pp) + 2)); |
| 4065 | if (p != NULL) |
| 4066 | { |
| 4067 | p[0] = '\\'; |
| 4068 | STRCPY(p + 1, *pp); |
| 4069 | vim_free(*pp); |
| 4070 | *pp = p; |
| 4071 | } |
| 4072 | } |
| 4073 | |
| 4074 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4075 | * For each file name in files[num_files]: |
| 4076 | * If 'orig_pat' starts with "~/", replace the home directory with "~". |
| 4077 | */ |
| 4078 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4079 | tilde_replace( |
| 4080 | char_u *orig_pat, |
| 4081 | int num_files, |
| 4082 | char_u **files) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4083 | { |
| 4084 | int i; |
| 4085 | char_u *p; |
| 4086 | |
| 4087 | if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) |
| 4088 | { |
| 4089 | for (i = 0; i < num_files; ++i) |
| 4090 | { |
| 4091 | p = home_replace_save(NULL, files[i]); |
| 4092 | if (p != NULL) |
| 4093 | { |
| 4094 | vim_free(files[i]); |
| 4095 | files[i] = p; |
| 4096 | } |
| 4097 | } |
| 4098 | } |
| 4099 | } |
| 4100 | |
| 4101 | /* |
| 4102 | * Show all matches for completion on the command line. |
| 4103 | * Returns EXPAND_NOTHING when the character that triggered expansion should |
| 4104 | * be inserted like a normal character. |
| 4105 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4106 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4107 | showmatches(expand_T *xp, int wildmenu UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4108 | { |
| 4109 | #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) |
| 4110 | int num_files; |
| 4111 | char_u **files_found; |
| 4112 | int i, j, k; |
| 4113 | int maxlen; |
| 4114 | int lines; |
| 4115 | int columns; |
| 4116 | char_u *p; |
| 4117 | int lastlen; |
| 4118 | int attr; |
| 4119 | int showtail; |
| 4120 | |
| 4121 | if (xp->xp_numfiles == -1) |
| 4122 | { |
| 4123 | set_expand_context(xp); |
| 4124 | i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos, |
| 4125 | &num_files, &files_found); |
| 4126 | showtail = expand_showtail(xp); |
| 4127 | if (i != EXPAND_OK) |
| 4128 | return i; |
| 4129 | |
| 4130 | } |
| 4131 | else |
| 4132 | { |
| 4133 | num_files = xp->xp_numfiles; |
| 4134 | files_found = xp->xp_files; |
| 4135 | showtail = cmd_showtail; |
| 4136 | } |
| 4137 | |
| 4138 | #ifdef FEAT_WILDMENU |
| 4139 | if (!wildmenu) |
| 4140 | { |
| 4141 | #endif |
| 4142 | msg_didany = FALSE; /* lines_left will be set */ |
| 4143 | msg_start(); /* prepare for paging */ |
| 4144 | msg_putchar('\n'); |
| 4145 | out_flush(); |
| 4146 | cmdline_row = msg_row; |
| 4147 | msg_didany = FALSE; /* lines_left will be set again */ |
| 4148 | msg_start(); /* prepare for paging */ |
| 4149 | #ifdef FEAT_WILDMENU |
| 4150 | } |
| 4151 | #endif |
| 4152 | |
| 4153 | if (got_int) |
| 4154 | got_int = FALSE; /* only int. the completion, not the cmd line */ |
| 4155 | #ifdef FEAT_WILDMENU |
| 4156 | else if (wildmenu) |
Bram Moolenaar | ef8eb08 | 2017-03-30 22:04:55 +0200 | [diff] [blame] | 4157 | win_redr_status_matches(xp, num_files, files_found, -1, showtail); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4158 | #endif |
| 4159 | else |
| 4160 | { |
| 4161 | /* find the length of the longest file name */ |
| 4162 | maxlen = 0; |
| 4163 | for (i = 0; i < num_files; ++i) |
| 4164 | { |
| 4165 | if (!showtail && (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4166 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4167 | || xp->xp_context == EXPAND_BUFFERS)) |
| 4168 | { |
| 4169 | home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE); |
| 4170 | j = vim_strsize(NameBuff); |
| 4171 | } |
| 4172 | else |
| 4173 | j = vim_strsize(L_SHOWFILE(i)); |
| 4174 | if (j > maxlen) |
| 4175 | maxlen = j; |
| 4176 | } |
| 4177 | |
| 4178 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4179 | lines = num_files; |
| 4180 | else |
| 4181 | { |
| 4182 | /* compute the number of columns and lines for the listing */ |
| 4183 | maxlen += 2; /* two spaces between file names */ |
| 4184 | columns = ((int)Columns + 2) / maxlen; |
| 4185 | if (columns < 1) |
| 4186 | columns = 1; |
| 4187 | lines = (num_files + columns - 1) / columns; |
| 4188 | } |
| 4189 | |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4190 | attr = HL_ATTR(HLF_D); /* find out highlighting for directories */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4191 | |
| 4192 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4193 | { |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4194 | MSG_PUTS_ATTR(_("tagname"), HL_ATTR(HLF_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4195 | msg_clr_eos(); |
| 4196 | msg_advance(maxlen - 3); |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4197 | MSG_PUTS_ATTR(_(" kind file\n"), HL_ATTR(HLF_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4198 | } |
| 4199 | |
| 4200 | /* list the files line by line */ |
| 4201 | for (i = 0; i < lines; ++i) |
| 4202 | { |
| 4203 | lastlen = 999; |
| 4204 | for (k = i; k < num_files; k += lines) |
| 4205 | { |
| 4206 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4207 | { |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4208 | msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4209 | p = files_found[k] + STRLEN(files_found[k]) + 1; |
| 4210 | msg_advance(maxlen + 1); |
| 4211 | msg_puts(p); |
| 4212 | msg_advance(maxlen + 3); |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4213 | msg_puts_long_attr(p + 2, HL_ATTR(HLF_D)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4214 | break; |
| 4215 | } |
| 4216 | for (j = maxlen - lastlen; --j >= 0; ) |
| 4217 | msg_putchar(' '); |
| 4218 | if (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4219 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4220 | || xp->xp_context == EXPAND_BUFFERS) |
| 4221 | { |
Bram Moolenaar | b91e59b | 2010-03-17 19:13:27 +0100 | [diff] [blame] | 4222 | /* highlight directories */ |
Bram Moolenaar | 63fa526 | 2010-03-23 18:06:52 +0100 | [diff] [blame] | 4223 | if (xp->xp_numfiles != -1) |
| 4224 | { |
| 4225 | char_u *halved_slash; |
| 4226 | char_u *exp_path; |
| 4227 | |
| 4228 | /* Expansion was done before and special characters |
| 4229 | * were escaped, need to halve backslashes. Also |
| 4230 | * $HOME has been replaced with ~/. */ |
| 4231 | exp_path = expand_env_save_opt(files_found[k], TRUE); |
| 4232 | halved_slash = backslash_halve_save( |
| 4233 | exp_path != NULL ? exp_path : files_found[k]); |
| 4234 | j = mch_isdir(halved_slash != NULL ? halved_slash |
| 4235 | : files_found[k]); |
| 4236 | vim_free(exp_path); |
| 4237 | vim_free(halved_slash); |
| 4238 | } |
| 4239 | else |
| 4240 | /* Expansion was done here, file names are literal. */ |
| 4241 | j = mch_isdir(files_found[k]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4242 | if (showtail) |
| 4243 | p = L_SHOWFILE(k); |
| 4244 | else |
| 4245 | { |
| 4246 | home_replace(NULL, files_found[k], NameBuff, MAXPATHL, |
| 4247 | TRUE); |
| 4248 | p = NameBuff; |
| 4249 | } |
| 4250 | } |
| 4251 | else |
| 4252 | { |
| 4253 | j = FALSE; |
| 4254 | p = L_SHOWFILE(k); |
| 4255 | } |
| 4256 | lastlen = msg_outtrans_attr(p, j ? attr : 0); |
| 4257 | } |
| 4258 | if (msg_col > 0) /* when not wrapped around */ |
| 4259 | { |
| 4260 | msg_clr_eos(); |
| 4261 | msg_putchar('\n'); |
| 4262 | } |
| 4263 | out_flush(); /* show one line at a time */ |
| 4264 | if (got_int) |
| 4265 | { |
| 4266 | got_int = FALSE; |
| 4267 | break; |
| 4268 | } |
| 4269 | } |
| 4270 | |
| 4271 | /* |
| 4272 | * we redraw the command below the lines that we have just listed |
| 4273 | * This is a bit tricky, but it saves a lot of screen updating. |
| 4274 | */ |
| 4275 | cmdline_row = msg_row; /* will put it back later */ |
| 4276 | } |
| 4277 | |
| 4278 | if (xp->xp_numfiles == -1) |
| 4279 | FreeWild(num_files, files_found); |
| 4280 | |
| 4281 | return EXPAND_OK; |
| 4282 | } |
| 4283 | |
| 4284 | /* |
| 4285 | * Private gettail for showmatches() (and win_redr_status_matches()): |
| 4286 | * Find tail of file name path, but ignore trailing "/". |
| 4287 | */ |
| 4288 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4289 | sm_gettail(char_u *s) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4290 | { |
| 4291 | char_u *p; |
| 4292 | char_u *t = s; |
| 4293 | int had_sep = FALSE; |
| 4294 | |
| 4295 | for (p = s; *p != NUL; ) |
| 4296 | { |
| 4297 | if (vim_ispathsep(*p) |
| 4298 | #ifdef BACKSLASH_IN_FILENAME |
| 4299 | && !rem_backslash(p) |
| 4300 | #endif |
| 4301 | ) |
| 4302 | had_sep = TRUE; |
| 4303 | else if (had_sep) |
| 4304 | { |
| 4305 | t = p; |
| 4306 | had_sep = FALSE; |
| 4307 | } |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 4308 | MB_PTR_ADV(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4309 | } |
| 4310 | return t; |
| 4311 | } |
| 4312 | |
| 4313 | /* |
| 4314 | * Return TRUE if we only need to show the tail of completion matches. |
| 4315 | * When not completing file names or there is a wildcard in the path FALSE is |
| 4316 | * returned. |
| 4317 | */ |
| 4318 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4319 | expand_showtail(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4320 | { |
| 4321 | char_u *s; |
| 4322 | char_u *end; |
| 4323 | |
| 4324 | /* When not completing file names a "/" may mean something different. */ |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4325 | if (xp->xp_context != EXPAND_FILES |
| 4326 | && xp->xp_context != EXPAND_SHELLCMD |
| 4327 | && xp->xp_context != EXPAND_DIRECTORIES) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4328 | return FALSE; |
| 4329 | |
| 4330 | end = gettail(xp->xp_pattern); |
| 4331 | if (end == xp->xp_pattern) /* there is no path separator */ |
| 4332 | return FALSE; |
| 4333 | |
| 4334 | for (s = xp->xp_pattern; s < end; s++) |
| 4335 | { |
| 4336 | /* Skip escaped wildcards. Only when the backslash is not a path |
| 4337 | * separator, on DOS the '*' "path\*\file" must not be skipped. */ |
| 4338 | if (rem_backslash(s)) |
| 4339 | ++s; |
| 4340 | else if (vim_strchr((char_u *)"*?[", *s) != NULL) |
| 4341 | return FALSE; |
| 4342 | } |
| 4343 | return TRUE; |
| 4344 | } |
| 4345 | |
| 4346 | /* |
| 4347 | * Prepare a string for expansion. |
| 4348 | * When expanding file names: The string will be used with expand_wildcards(). |
Bram Moolenaar | 6bcbcc5 | 2013-11-05 07:13:41 +0100 | [diff] [blame] | 4349 | * Copy "fname[len]" into allocated memory and add a '*' at the end. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4350 | * When expanding other names: The string will be used with regcomp(). Copy |
| 4351 | * the name into allocated memory and prepend "^". |
| 4352 | */ |
| 4353 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4354 | addstar( |
| 4355 | char_u *fname, |
| 4356 | int len, |
| 4357 | int context) /* EXPAND_FILES etc. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4358 | { |
| 4359 | char_u *retval; |
| 4360 | int i, j; |
| 4361 | int new_len; |
| 4362 | char_u *tail; |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4363 | int ends_in_star; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4364 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4365 | if (context != EXPAND_FILES |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4366 | && context != EXPAND_FILES_IN_PATH |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4367 | && context != EXPAND_SHELLCMD |
| 4368 | && context != EXPAND_DIRECTORIES) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4369 | { |
| 4370 | /* |
| 4371 | * Matching will be done internally (on something other than files). |
| 4372 | * So we convert the file-matching-type wildcards into our kind for |
| 4373 | * use with vim_regcomp(). First work out how long it will be: |
| 4374 | */ |
| 4375 | |
| 4376 | /* For help tags the translation is done in find_help_tags(). |
| 4377 | * For a tag pattern starting with "/" no translation is needed. */ |
| 4378 | if (context == EXPAND_HELP |
| 4379 | || context == EXPAND_COLORS |
| 4380 | || context == EXPAND_COMPILER |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4381 | || context == EXPAND_OWNSYNTAX |
Bram Moolenaar | 883f5d0 | 2010-06-21 06:24:34 +0200 | [diff] [blame] | 4382 | || context == EXPAND_FILETYPE |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 4383 | || context == EXPAND_PACKADD |
Bram Moolenaar | ba47b51 | 2017-01-24 21:18:19 +0100 | [diff] [blame] | 4384 | || ((context == EXPAND_TAGS_LISTFILES |
| 4385 | || context == EXPAND_TAGS) |
| 4386 | && fname[0] == '/')) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4387 | retval = vim_strnsave(fname, len); |
| 4388 | else |
| 4389 | { |
| 4390 | new_len = len + 2; /* +2 for '^' at start, NUL at end */ |
| 4391 | for (i = 0; i < len; i++) |
| 4392 | { |
| 4393 | if (fname[i] == '*' || fname[i] == '~') |
| 4394 | new_len++; /* '*' needs to be replaced by ".*" |
| 4395 | '~' needs to be replaced by "\~" */ |
| 4396 | |
| 4397 | /* Buffer names are like file names. "." should be literal */ |
| 4398 | if (context == EXPAND_BUFFERS && fname[i] == '.') |
| 4399 | new_len++; /* "." becomes "\." */ |
| 4400 | |
| 4401 | /* Custom expansion takes care of special things, match |
| 4402 | * backslashes literally (perhaps also for other types?) */ |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4403 | if ((context == EXPAND_USER_DEFINED |
| 4404 | || context == EXPAND_USER_LIST) && fname[i] == '\\') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4405 | new_len++; /* '\' becomes "\\" */ |
| 4406 | } |
| 4407 | retval = alloc(new_len); |
| 4408 | if (retval != NULL) |
| 4409 | { |
| 4410 | retval[0] = '^'; |
| 4411 | j = 1; |
| 4412 | for (i = 0; i < len; i++, j++) |
| 4413 | { |
| 4414 | /* Skip backslash. But why? At least keep it for custom |
| 4415 | * expansion. */ |
| 4416 | if (context != EXPAND_USER_DEFINED |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4417 | && context != EXPAND_USER_LIST |
| 4418 | && fname[i] == '\\' |
| 4419 | && ++i == len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4420 | break; |
| 4421 | |
| 4422 | switch (fname[i]) |
| 4423 | { |
| 4424 | case '*': retval[j++] = '.'; |
| 4425 | break; |
| 4426 | case '~': retval[j++] = '\\'; |
| 4427 | break; |
| 4428 | case '?': retval[j] = '.'; |
| 4429 | continue; |
| 4430 | case '.': if (context == EXPAND_BUFFERS) |
| 4431 | retval[j++] = '\\'; |
| 4432 | break; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4433 | case '\\': if (context == EXPAND_USER_DEFINED |
| 4434 | || context == EXPAND_USER_LIST) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4435 | retval[j++] = '\\'; |
| 4436 | break; |
| 4437 | } |
| 4438 | retval[j] = fname[i]; |
| 4439 | } |
| 4440 | retval[j] = NUL; |
| 4441 | } |
| 4442 | } |
| 4443 | } |
| 4444 | else |
| 4445 | { |
| 4446 | retval = alloc(len + 4); |
| 4447 | if (retval != NULL) |
| 4448 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4449 | vim_strncpy(retval, fname, len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4450 | |
| 4451 | /* |
Bram Moolenaar | c6249bb | 2006-04-15 20:25:09 +0000 | [diff] [blame] | 4452 | * Don't add a star to *, ~, ~user, $var or `cmd`. |
| 4453 | * * would become **, which walks the whole tree. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4454 | * ~ would be at the start of the file name, but not the tail. |
| 4455 | * $ could be anywhere in the tail. |
| 4456 | * ` could be anywhere in the file name. |
Bram Moolenaar | 066b622 | 2008-01-04 14:17:47 +0000 | [diff] [blame] | 4457 | * When the name ends in '$' don't add a star, remove the '$'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4458 | */ |
| 4459 | tail = gettail(retval); |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4460 | ends_in_star = (len > 0 && retval[len - 1] == '*'); |
| 4461 | #ifndef BACKSLASH_IN_FILENAME |
| 4462 | for (i = len - 2; i >= 0; --i) |
| 4463 | { |
| 4464 | if (retval[i] != '\\') |
| 4465 | break; |
| 4466 | ends_in_star = !ends_in_star; |
| 4467 | } |
| 4468 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4469 | if ((*retval != '~' || tail != retval) |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4470 | && !ends_in_star |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4471 | && vim_strchr(tail, '$') == NULL |
| 4472 | && vim_strchr(retval, '`') == NULL) |
| 4473 | retval[len++] = '*'; |
Bram Moolenaar | 066b622 | 2008-01-04 14:17:47 +0000 | [diff] [blame] | 4474 | else if (len > 0 && retval[len - 1] == '$') |
| 4475 | --len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4476 | retval[len] = NUL; |
| 4477 | } |
| 4478 | } |
| 4479 | return retval; |
| 4480 | } |
| 4481 | |
| 4482 | /* |
| 4483 | * Must parse the command line so far to work out what context we are in. |
| 4484 | * Completion can then be done based on that context. |
| 4485 | * This routine sets the variables: |
| 4486 | * xp->xp_pattern The start of the pattern to be expanded within |
| 4487 | * the command line (ends at the cursor). |
| 4488 | * xp->xp_context The type of thing to expand. Will be one of: |
| 4489 | * |
| 4490 | * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on |
| 4491 | * the command line, like an unknown command. Caller |
| 4492 | * should beep. |
| 4493 | * EXPAND_NOTHING Unrecognised context for completion, use char like |
| 4494 | * a normal char, rather than for completion. eg |
| 4495 | * :s/^I/ |
| 4496 | * EXPAND_COMMANDS Cursor is still touching the command, so complete |
| 4497 | * it. |
| 4498 | * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. |
| 4499 | * EXPAND_FILES After command with XFILE set, or after setting |
| 4500 | * with P_EXPAND set. eg :e ^I, :w>>^I |
| 4501 | * EXPAND_DIRECTORIES In some cases this is used instead of the latter |
| 4502 | * when we know only directories are of interest. eg |
| 4503 | * :set dir=^I |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4504 | * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4505 | * EXPAND_SETTINGS Complete variable names. eg :set d^I |
| 4506 | * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I |
| 4507 | * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I |
| 4508 | * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect |
| 4509 | * EXPAND_HELP Complete tags from the file 'helpfile'/tags |
| 4510 | * EXPAND_EVENTS Complete event names |
| 4511 | * EXPAND_SYNTAX Complete :syntax command arguments |
| 4512 | * EXPAND_HIGHLIGHT Complete highlight (syntax) group names |
| 4513 | * EXPAND_AUGROUP Complete autocommand group names |
| 4514 | * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I |
| 4515 | * EXPAND_MAPPINGS Complete mapping and abbreviation names, |
| 4516 | * eg :unmap a^I , :cunab x^I |
| 4517 | * EXPAND_FUNCTIONS Complete internal or user defined function names, |
| 4518 | * eg :call sub^I |
| 4519 | * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I |
| 4520 | * EXPAND_EXPRESSION Complete internal or user defined function/variable |
| 4521 | * names in expressions, eg :while s^I |
| 4522 | * EXPAND_ENV_VARS Complete environment variable names |
Bram Moolenaar | 2430586 | 2012-08-15 14:05:05 +0200 | [diff] [blame] | 4523 | * EXPAND_USER Complete user names |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4524 | */ |
| 4525 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4526 | set_expand_context(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4527 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4528 | /* only expansion for ':', '>' and '=' command-lines */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4529 | if (ccline.cmdfirstc != ':' |
| 4530 | #ifdef FEAT_EVAL |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4531 | && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '=' |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4532 | && !ccline.input_fn |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4533 | #endif |
| 4534 | ) |
| 4535 | { |
| 4536 | xp->xp_context = EXPAND_NOTHING; |
| 4537 | return; |
| 4538 | } |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4539 | set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4540 | } |
| 4541 | |
| 4542 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4543 | set_cmd_context( |
| 4544 | expand_T *xp, |
| 4545 | char_u *str, /* start of command line */ |
| 4546 | int len, /* length of command line (excl. NUL) */ |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4547 | int col, /* position of cursor */ |
| 4548 | int use_ccline UNUSED) /* use ccline for info */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4549 | { |
| 4550 | int old_char = NUL; |
| 4551 | char_u *nextcomm; |
| 4552 | |
| 4553 | /* |
| 4554 | * Avoid a UMR warning from Purify, only save the character if it has been |
| 4555 | * written before. |
| 4556 | */ |
| 4557 | if (col < len) |
| 4558 | old_char = str[col]; |
| 4559 | str[col] = NUL; |
| 4560 | nextcomm = str; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4561 | |
| 4562 | #ifdef FEAT_EVAL |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4563 | if (use_ccline && ccline.cmdfirstc == '=') |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4564 | { |
| 4565 | # ifdef FEAT_CMDL_COMPL |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4566 | /* pass CMD_SIZE because there is no real command */ |
| 4567 | set_context_for_expression(xp, str, CMD_SIZE); |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4568 | # endif |
| 4569 | } |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4570 | else if (use_ccline && ccline.input_fn) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4571 | { |
| 4572 | xp->xp_context = ccline.xp_context; |
| 4573 | xp->xp_pattern = ccline.cmdbuff; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4574 | # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4575 | xp->xp_arg = ccline.xp_arg; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4576 | # endif |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4577 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4578 | else |
| 4579 | #endif |
| 4580 | while (nextcomm != NULL) |
| 4581 | nextcomm = set_one_cmd_context(xp, nextcomm); |
| 4582 | |
Bram Moolenaar | a4c8dcb | 2013-06-30 12:21:24 +0200 | [diff] [blame] | 4583 | /* Store the string here so that call_user_expand_func() can get to them |
| 4584 | * easily. */ |
| 4585 | xp->xp_line = str; |
| 4586 | xp->xp_col = col; |
| 4587 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4588 | str[col] = old_char; |
| 4589 | } |
| 4590 | |
| 4591 | /* |
| 4592 | * Expand the command line "str" from context "xp". |
| 4593 | * "xp" must have been set by set_cmd_context(). |
| 4594 | * xp->xp_pattern points into "str", to where the text that is to be expanded |
| 4595 | * starts. |
| 4596 | * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the |
| 4597 | * cursor. |
| 4598 | * Returns EXPAND_NOTHING when there is nothing to expand, might insert the |
| 4599 | * key that triggered expansion literally. |
| 4600 | * Returns EXPAND_OK otherwise. |
| 4601 | */ |
| 4602 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4603 | expand_cmdline( |
| 4604 | expand_T *xp, |
| 4605 | char_u *str, /* start of command line */ |
| 4606 | int col, /* position of cursor */ |
| 4607 | int *matchcount, /* return: nr of matches */ |
| 4608 | char_u ***matches) /* return: array of pointers to matches */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4609 | { |
| 4610 | char_u *file_str = NULL; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4611 | int options = WILD_ADD_SLASH|WILD_SILENT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4612 | |
| 4613 | if (xp->xp_context == EXPAND_UNSUCCESSFUL) |
| 4614 | { |
| 4615 | beep_flush(); |
| 4616 | return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */ |
| 4617 | } |
| 4618 | if (xp->xp_context == EXPAND_NOTHING) |
| 4619 | { |
| 4620 | /* Caller can use the character as a normal char instead */ |
| 4621 | return EXPAND_NOTHING; |
| 4622 | } |
| 4623 | |
| 4624 | /* add star to file name, or convert to regexp if not exp. files. */ |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 4625 | xp->xp_pattern_len = (int)(str + col - xp->xp_pattern); |
| 4626 | file_str = addstar(xp->xp_pattern, xp->xp_pattern_len, xp->xp_context); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4627 | if (file_str == NULL) |
| 4628 | return EXPAND_UNSUCCESSFUL; |
| 4629 | |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4630 | if (p_wic) |
| 4631 | options += WILD_ICASE; |
| 4632 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4633 | /* find all files that match the description */ |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4634 | if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4635 | { |
| 4636 | *matchcount = 0; |
| 4637 | *matches = NULL; |
| 4638 | } |
| 4639 | vim_free(file_str); |
| 4640 | |
| 4641 | return EXPAND_OK; |
| 4642 | } |
| 4643 | |
| 4644 | #ifdef FEAT_MULTI_LANG |
| 4645 | /* |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4646 | * Cleanup matches for help tags: |
| 4647 | * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first |
| 4648 | * tag matches it. Otherwise remove "@en" if "en" is the only language. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4649 | */ |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 4650 | static void cleanup_help_tags(int num_file, char_u **file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4651 | |
| 4652 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4653 | cleanup_help_tags(int num_file, char_u **file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4654 | { |
| 4655 | int i, j; |
| 4656 | int len; |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4657 | char_u buf[4]; |
| 4658 | char_u *p = buf; |
| 4659 | |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 4660 | if (p_hlg[0] != NUL && (p_hlg[0] != 'e' || p_hlg[1] != 'n')) |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4661 | { |
| 4662 | *p++ = '@'; |
| 4663 | *p++ = p_hlg[0]; |
| 4664 | *p++ = p_hlg[1]; |
| 4665 | } |
| 4666 | *p = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4667 | |
| 4668 | for (i = 0; i < num_file; ++i) |
| 4669 | { |
| 4670 | len = (int)STRLEN(file[i]) - 3; |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4671 | if (len <= 0) |
| 4672 | continue; |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4673 | if (STRCMP(file[i] + len, "@en") == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4674 | { |
| 4675 | /* Sorting on priority means the same item in another language may |
| 4676 | * be anywhere. Search all items for a match up to the "@en". */ |
| 4677 | for (j = 0; j < num_file; ++j) |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4678 | if (j != i && (int)STRLEN(file[j]) == len + 3 |
| 4679 | && STRNCMP(file[i], file[j], len + 1) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4680 | break; |
| 4681 | if (j == num_file) |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 4682 | /* item only exists with @en, remove it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4683 | file[i][len] = NUL; |
| 4684 | } |
| 4685 | } |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4686 | |
| 4687 | if (*buf != NUL) |
| 4688 | for (i = 0; i < num_file; ++i) |
| 4689 | { |
| 4690 | len = (int)STRLEN(file[i]) - 3; |
| 4691 | if (len <= 0) |
| 4692 | continue; |
| 4693 | if (STRCMP(file[i] + len, buf) == 0) |
| 4694 | { |
| 4695 | /* remove the default language */ |
| 4696 | file[i][len] = NUL; |
| 4697 | } |
| 4698 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4699 | } |
| 4700 | #endif |
| 4701 | |
| 4702 | /* |
| 4703 | * Do the expansion based on xp->xp_context and "pat". |
| 4704 | */ |
| 4705 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4706 | ExpandFromContext( |
| 4707 | expand_T *xp, |
| 4708 | char_u *pat, |
| 4709 | int *num_file, |
| 4710 | char_u ***file, |
| 4711 | int options) /* EW_ flags */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4712 | { |
| 4713 | #ifdef FEAT_CMDL_COMPL |
| 4714 | regmatch_T regmatch; |
| 4715 | #endif |
| 4716 | int ret; |
| 4717 | int flags; |
| 4718 | |
| 4719 | flags = EW_DIR; /* include directories */ |
| 4720 | if (options & WILD_LIST_NOTFOUND) |
| 4721 | flags |= EW_NOTFOUND; |
| 4722 | if (options & WILD_ADD_SLASH) |
| 4723 | flags |= EW_ADDSLASH; |
| 4724 | if (options & WILD_KEEP_ALL) |
| 4725 | flags |= EW_KEEPALL; |
| 4726 | if (options & WILD_SILENT) |
| 4727 | flags |= EW_SILENT; |
Bram Moolenaar | a245bc7 | 2015-03-05 19:35:25 +0100 | [diff] [blame] | 4728 | if (options & WILD_ALLLINKS) |
| 4729 | flags |= EW_ALLLINKS; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4730 | |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4731 | if (xp->xp_context == EXPAND_FILES |
| 4732 | || xp->xp_context == EXPAND_DIRECTORIES |
| 4733 | || xp->xp_context == EXPAND_FILES_IN_PATH) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4734 | { |
| 4735 | /* |
| 4736 | * Expand file or directory names. |
| 4737 | */ |
| 4738 | int free_pat = FALSE; |
| 4739 | int i; |
| 4740 | |
| 4741 | /* for ":set path=" and ":set tags=" halve backslashes for escaped |
| 4742 | * space */ |
| 4743 | if (xp->xp_backslash != XP_BS_NONE) |
| 4744 | { |
| 4745 | free_pat = TRUE; |
| 4746 | pat = vim_strsave(pat); |
| 4747 | for (i = 0; pat[i]; ++i) |
| 4748 | if (pat[i] == '\\') |
| 4749 | { |
| 4750 | if (xp->xp_backslash == XP_BS_THREE |
| 4751 | && pat[i + 1] == '\\' |
| 4752 | && pat[i + 2] == '\\' |
| 4753 | && pat[i + 3] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4754 | STRMOVE(pat + i, pat + i + 3); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4755 | if (xp->xp_backslash == XP_BS_ONE |
| 4756 | && pat[i + 1] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4757 | STRMOVE(pat + i, pat + i + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4758 | } |
| 4759 | } |
| 4760 | |
| 4761 | if (xp->xp_context == EXPAND_FILES) |
| 4762 | flags |= EW_FILE; |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4763 | else if (xp->xp_context == EXPAND_FILES_IN_PATH) |
| 4764 | flags |= (EW_FILE | EW_PATH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4765 | else |
| 4766 | flags = (flags | EW_DIR) & ~EW_FILE; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4767 | if (options & WILD_ICASE) |
| 4768 | flags |= EW_ICASE; |
| 4769 | |
Bram Moolenaar | d7834d3 | 2009-12-02 16:14:36 +0000 | [diff] [blame] | 4770 | /* Expand wildcards, supporting %:h and the like. */ |
| 4771 | ret = expand_wildcards_eval(&pat, num_file, file, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4772 | if (free_pat) |
| 4773 | vim_free(pat); |
| 4774 | return ret; |
| 4775 | } |
| 4776 | |
| 4777 | *file = (char_u **)""; |
| 4778 | *num_file = 0; |
| 4779 | if (xp->xp_context == EXPAND_HELP) |
| 4780 | { |
Bram Moolenaar | c62e2fe | 2008-08-06 13:03:07 +0000 | [diff] [blame] | 4781 | /* With an empty argument we would get all the help tags, which is |
| 4782 | * very slow. Get matches for "help" instead. */ |
| 4783 | if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat, |
| 4784 | num_file, file, FALSE) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4785 | { |
| 4786 | #ifdef FEAT_MULTI_LANG |
| 4787 | cleanup_help_tags(*num_file, *file); |
| 4788 | #endif |
| 4789 | return OK; |
| 4790 | } |
| 4791 | return FAIL; |
| 4792 | } |
| 4793 | |
| 4794 | #ifndef FEAT_CMDL_COMPL |
| 4795 | return FAIL; |
| 4796 | #else |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 4797 | if (xp->xp_context == EXPAND_SHELLCMD) |
| 4798 | return expand_shellcmd(pat, num_file, file, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4799 | if (xp->xp_context == EXPAND_OLD_SETTING) |
| 4800 | return ExpandOldSetting(num_file, file); |
| 4801 | if (xp->xp_context == EXPAND_BUFFERS) |
| 4802 | return ExpandBufnames(pat, num_file, file, options); |
| 4803 | if (xp->xp_context == EXPAND_TAGS |
| 4804 | || xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4805 | return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file); |
| 4806 | if (xp->xp_context == EXPAND_COLORS) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4807 | { |
| 4808 | char *directories[] = {"colors", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4809 | return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file, |
| 4810 | directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4811 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4812 | if (xp->xp_context == EXPAND_COMPILER) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4813 | { |
Bram Moolenaar | a627c96 | 2011-09-30 16:23:32 +0200 | [diff] [blame] | 4814 | char *directories[] = {"compiler", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4815 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4816 | } |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4817 | if (xp->xp_context == EXPAND_OWNSYNTAX) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4818 | { |
| 4819 | char *directories[] = {"syntax", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4820 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4821 | } |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4822 | if (xp->xp_context == EXPAND_FILETYPE) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4823 | { |
| 4824 | char *directories[] = {"syntax", "indent", "ftplugin", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4825 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4826 | } |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4827 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
| 4828 | if (xp->xp_context == EXPAND_USER_LIST) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4829 | return ExpandUserList(xp, num_file, file); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4830 | # endif |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 4831 | if (xp->xp_context == EXPAND_PACKADD) |
| 4832 | return ExpandPackAddDir(pat, num_file, file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4833 | |
| 4834 | regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); |
| 4835 | if (regmatch.regprog == NULL) |
| 4836 | return FAIL; |
| 4837 | |
| 4838 | /* set ignore-case according to p_ic, p_scs and pat */ |
| 4839 | regmatch.rm_ic = ignorecase(pat); |
| 4840 | |
| 4841 | if (xp->xp_context == EXPAND_SETTINGS |
| 4842 | || xp->xp_context == EXPAND_BOOL_SETTINGS) |
| 4843 | ret = ExpandSettings(xp, ®match, num_file, file); |
| 4844 | else if (xp->xp_context == EXPAND_MAPPINGS) |
| 4845 | ret = ExpandMappings(®match, num_file, file); |
| 4846 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
| 4847 | else if (xp->xp_context == EXPAND_USER_DEFINED) |
| 4848 | ret = ExpandUserDefined(xp, ®match, num_file, file); |
| 4849 | # endif |
| 4850 | else |
| 4851 | { |
| 4852 | static struct expgen |
| 4853 | { |
| 4854 | int context; |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 4855 | char_u *((*func)(expand_T *, int)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4856 | int ic; |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4857 | int escaped; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4858 | } tab[] = |
| 4859 | { |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4860 | {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, |
| 4861 | {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE}, |
Bram Moolenaar | 9e507ca | 2016-10-15 15:39:39 +0200 | [diff] [blame] | 4862 | {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE}, |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 4863 | #ifdef FEAT_CMDHIST |
| 4864 | {EXPAND_HISTORY, get_history_arg, TRUE, TRUE}, |
| 4865 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4866 | #ifdef FEAT_USR_CMDS |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4867 | {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE}, |
Bram Moolenaar | f1d6ccf | 2014-12-08 04:16:44 +0100 | [diff] [blame] | 4868 | {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE}, |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4869 | {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE}, |
| 4870 | {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE}, |
| 4871 | {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4872 | #endif |
| 4873 | #ifdef FEAT_EVAL |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4874 | {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE}, |
| 4875 | {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE}, |
| 4876 | {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE}, |
| 4877 | {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4878 | #endif |
| 4879 | #ifdef FEAT_MENU |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4880 | {EXPAND_MENUS, get_menu_name, FALSE, TRUE}, |
| 4881 | {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4882 | #endif |
| 4883 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4884 | {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4885 | #endif |
Bram Moolenaar | cd9c462 | 2013-06-08 15:24:48 +0200 | [diff] [blame] | 4886 | #ifdef FEAT_PROFILE |
| 4887 | {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE}, |
| 4888 | #endif |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4889 | {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4890 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4891 | {EXPAND_EVENTS, get_event_name, TRUE, TRUE}, |
| 4892 | {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4893 | #endif |
Bram Moolenaar | f4580d8 | 2009-03-18 11:52:53 +0000 | [diff] [blame] | 4894 | #ifdef FEAT_CSCOPE |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4895 | {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE}, |
Bram Moolenaar | f4580d8 | 2009-03-18 11:52:53 +0000 | [diff] [blame] | 4896 | #endif |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 4897 | #ifdef FEAT_SIGNS |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4898 | {EXPAND_SIGN, get_sign_name, TRUE, TRUE}, |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 4899 | #endif |
Bram Moolenaar | f86f26c | 2010-02-03 15:14:22 +0100 | [diff] [blame] | 4900 | #ifdef FEAT_PROFILE |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4901 | {EXPAND_PROFILE, get_profile_name, TRUE, TRUE}, |
Bram Moolenaar | f86f26c | 2010-02-03 15:14:22 +0100 | [diff] [blame] | 4902 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4903 | #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ |
| 4904 | && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4905 | {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE}, |
| 4906 | {EXPAND_LOCALES, get_locales, TRUE, FALSE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4907 | #endif |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4908 | {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE}, |
Bram Moolenaar | 2430586 | 2012-08-15 14:05:05 +0200 | [diff] [blame] | 4909 | {EXPAND_USER, get_users, TRUE, FALSE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4910 | }; |
| 4911 | int i; |
| 4912 | |
| 4913 | /* |
| 4914 | * Find a context in the table and call the ExpandGeneric() with the |
| 4915 | * right function to do the expansion. |
| 4916 | */ |
| 4917 | ret = FAIL; |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 4918 | for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4919 | if (xp->xp_context == tab[i].context) |
| 4920 | { |
| 4921 | if (tab[i].ic) |
| 4922 | regmatch.rm_ic = TRUE; |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4923 | ret = ExpandGeneric(xp, ®match, num_file, file, |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 4924 | tab[i].func, tab[i].escaped); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4925 | break; |
| 4926 | } |
| 4927 | } |
| 4928 | |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 4929 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4930 | |
| 4931 | return ret; |
| 4932 | #endif /* FEAT_CMDL_COMPL */ |
| 4933 | } |
| 4934 | |
| 4935 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 4936 | /* |
| 4937 | * Expand a list of names. |
| 4938 | * |
| 4939 | * Generic function for command line completion. It calls a function to |
| 4940 | * obtain strings, one by one. The strings are matched against a regexp |
| 4941 | * program. Matching strings are copied into an array, which is returned. |
| 4942 | * |
| 4943 | * Returns OK when no problems encountered, FAIL for error (out of memory). |
| 4944 | */ |
| 4945 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4946 | ExpandGeneric( |
| 4947 | expand_T *xp, |
| 4948 | regmatch_T *regmatch, |
| 4949 | int *num_file, |
| 4950 | char_u ***file, |
| 4951 | char_u *((*func)(expand_T *, int)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4952 | /* returns a string from the list */ |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4953 | int escaped) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4954 | { |
| 4955 | int i; |
| 4956 | int count = 0; |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 4957 | int round; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4958 | char_u *str; |
| 4959 | |
| 4960 | /* do this loop twice: |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 4961 | * round == 0: count the number of matching names |
| 4962 | * round == 1: copy the matching names into allocated memory |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4963 | */ |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 4964 | for (round = 0; round <= 1; ++round) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4965 | { |
| 4966 | for (i = 0; ; ++i) |
| 4967 | { |
| 4968 | str = (*func)(xp, i); |
| 4969 | if (str == NULL) /* end of list */ |
| 4970 | break; |
| 4971 | if (*str == NUL) /* skip empty strings */ |
| 4972 | continue; |
| 4973 | |
| 4974 | if (vim_regexec(regmatch, str, (colnr_T)0)) |
| 4975 | { |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 4976 | if (round) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4977 | { |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4978 | if (escaped) |
| 4979 | str = vim_strsave_escaped(str, (char_u *)" \t\\."); |
| 4980 | else |
| 4981 | str = vim_strsave(str); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4982 | (*file)[count] = str; |
| 4983 | #ifdef FEAT_MENU |
| 4984 | if (func == get_menu_names && str != NULL) |
| 4985 | { |
| 4986 | /* test for separator added by get_menu_names() */ |
| 4987 | str += STRLEN(str) - 1; |
| 4988 | if (*str == '\001') |
| 4989 | *str = '.'; |
| 4990 | } |
| 4991 | #endif |
| 4992 | } |
| 4993 | ++count; |
| 4994 | } |
| 4995 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 4996 | if (round == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4997 | { |
| 4998 | if (count == 0) |
| 4999 | return OK; |
| 5000 | *num_file = count; |
| 5001 | *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); |
| 5002 | if (*file == NULL) |
| 5003 | { |
| 5004 | *file = (char_u **)""; |
| 5005 | return FAIL; |
| 5006 | } |
| 5007 | count = 0; |
| 5008 | } |
| 5009 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5010 | |
Bram Moolenaar | 7fc904b | 2006-04-13 20:37:35 +0000 | [diff] [blame] | 5011 | /* Sort the results. Keep menu's in the specified order. */ |
| 5012 | if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS) |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 5013 | { |
| 5014 | if (xp->xp_context == EXPAND_EXPRESSION |
| 5015 | || xp->xp_context == EXPAND_FUNCTIONS |
| 5016 | || xp->xp_context == EXPAND_USER_FUNC) |
| 5017 | /* <SNR> functions should be sorted to the end. */ |
| 5018 | qsort((void *)*file, (size_t)*num_file, sizeof(char_u *), |
| 5019 | sort_func_compare); |
| 5020 | else |
| 5021 | sort_strings(*file, *num_file); |
| 5022 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5023 | |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 5024 | #ifdef FEAT_CMDL_COMPL |
| 5025 | /* Reset the variables used for special highlight names expansion, so that |
| 5026 | * they don't show up when getting normal highlight names by ID. */ |
| 5027 | reset_expand_highlight(); |
| 5028 | #endif |
| 5029 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5030 | return OK; |
| 5031 | } |
| 5032 | |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5033 | /* |
| 5034 | * Complete a shell command. |
| 5035 | * Returns FAIL or OK; |
| 5036 | */ |
| 5037 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5038 | expand_shellcmd( |
| 5039 | char_u *filepat, /* pattern to match with command names */ |
| 5040 | int *num_file, /* return: number of matches */ |
| 5041 | char_u ***file, /* return: array with matches */ |
| 5042 | int flagsarg) /* EW_ flags */ |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5043 | { |
| 5044 | char_u *pat; |
| 5045 | int i; |
| 5046 | char_u *path; |
| 5047 | int mustfree = FALSE; |
| 5048 | garray_T ga; |
| 5049 | char_u *buf = alloc(MAXPATHL); |
| 5050 | size_t l; |
| 5051 | char_u *s, *e; |
| 5052 | int flags = flagsarg; |
| 5053 | int ret; |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5054 | int did_curdir = FALSE; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5055 | |
| 5056 | if (buf == NULL) |
| 5057 | return FAIL; |
| 5058 | |
| 5059 | /* for ":set path=" and ":set tags=" halve backslashes for escaped |
| 5060 | * space */ |
| 5061 | pat = vim_strsave(filepat); |
| 5062 | for (i = 0; pat[i]; ++i) |
| 5063 | if (pat[i] == '\\' && pat[i + 1] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 5064 | STRMOVE(pat + i, pat + i + 1); |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5065 | |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5066 | flags |= EW_FILE | EW_EXEC | EW_SHELLCMD; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5067 | |
| 5068 | /* For an absolute name we don't use $PATH. */ |
Bram Moolenaar | 68c3174 | 2006-09-02 15:54:18 +0000 | [diff] [blame] | 5069 | if (mch_isFullName(pat)) |
| 5070 | path = (char_u *)" "; |
| 5071 | else if ((pat[0] == '.' && (vim_ispathsep(pat[1]) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5072 | || (pat[1] == '.' && vim_ispathsep(pat[2]))))) |
| 5073 | path = (char_u *)"."; |
| 5074 | else |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 5075 | { |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5076 | path = vim_getenv((char_u *)"PATH", &mustfree); |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 5077 | if (path == NULL) |
| 5078 | path = (char_u *)""; |
| 5079 | } |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5080 | |
| 5081 | /* |
| 5082 | * Go over all directories in $PATH. Expand matches in that directory and |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5083 | * collect them in "ga". When "." is not in $PATH also expand for the |
| 5084 | * current directory, to find "subdir/cmd". |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5085 | */ |
| 5086 | ga_init2(&ga, (int)sizeof(char *), 10); |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5087 | for (s = path; ; s = e) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5088 | { |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5089 | if (*s == NUL) |
| 5090 | { |
| 5091 | if (did_curdir) |
| 5092 | break; |
| 5093 | /* Find directories in the current directory, path is empty. */ |
| 5094 | did_curdir = TRUE; |
| 5095 | } |
| 5096 | else if (*s == '.') |
| 5097 | did_curdir = TRUE; |
| 5098 | |
Bram Moolenaar | 68c3174 | 2006-09-02 15:54:18 +0000 | [diff] [blame] | 5099 | if (*s == ' ') |
| 5100 | ++s; /* Skip space used for absolute path name. */ |
| 5101 | |
Bram Moolenaar | 48e330a | 2016-02-23 14:53:34 +0100 | [diff] [blame] | 5102 | #if defined(MSWIN) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5103 | e = vim_strchr(s, ';'); |
| 5104 | #else |
| 5105 | e = vim_strchr(s, ':'); |
| 5106 | #endif |
| 5107 | if (e == NULL) |
| 5108 | e = s + STRLEN(s); |
| 5109 | |
| 5110 | l = e - s; |
| 5111 | if (l > MAXPATHL - 5) |
| 5112 | break; |
| 5113 | vim_strncpy(buf, s, l); |
| 5114 | add_pathsep(buf); |
| 5115 | l = STRLEN(buf); |
| 5116 | vim_strncpy(buf + l, pat, MAXPATHL - 1 - l); |
| 5117 | |
| 5118 | /* Expand matches in one directory of $PATH. */ |
| 5119 | ret = expand_wildcards(1, &buf, num_file, file, flags); |
| 5120 | if (ret == OK) |
| 5121 | { |
| 5122 | if (ga_grow(&ga, *num_file) == FAIL) |
| 5123 | FreeWild(*num_file, *file); |
| 5124 | else |
| 5125 | { |
| 5126 | for (i = 0; i < *num_file; ++i) |
| 5127 | { |
| 5128 | s = (*file)[i]; |
| 5129 | if (STRLEN(s) > l) |
| 5130 | { |
| 5131 | /* Remove the path again. */ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 5132 | STRMOVE(s, s + l); |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5133 | ((char_u **)ga.ga_data)[ga.ga_len++] = s; |
| 5134 | } |
| 5135 | else |
| 5136 | vim_free(s); |
| 5137 | } |
| 5138 | vim_free(*file); |
| 5139 | } |
| 5140 | } |
| 5141 | if (*e != NUL) |
| 5142 | ++e; |
| 5143 | } |
| 5144 | *file = ga.ga_data; |
| 5145 | *num_file = ga.ga_len; |
| 5146 | |
| 5147 | vim_free(buf); |
| 5148 | vim_free(pat); |
| 5149 | if (mustfree) |
| 5150 | vim_free(path); |
| 5151 | return OK; |
| 5152 | } |
| 5153 | |
| 5154 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5155 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 5156 | static void * call_user_expand_func(void *(*user_expand_func)(char_u *, int, char_u **, int), expand_T *xp, int *num_file, char_u ***file); |
Bram Moolenaar | 3b56eb3 | 2005-07-11 22:40:32 +0000 | [diff] [blame] | 5157 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5158 | /* |
Bram Moolenaar | b544f3c | 2017-02-23 19:03:28 +0100 | [diff] [blame] | 5159 | * Call "user_expand_func()" to invoke a user defined Vim script function and |
| 5160 | * return the result (either a string or a List). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5161 | */ |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5162 | static void * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5163 | call_user_expand_func( |
| 5164 | void *(*user_expand_func)(char_u *, int, char_u **, int), |
| 5165 | expand_T *xp, |
| 5166 | int *num_file, |
| 5167 | char_u ***file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5168 | { |
Bram Moolenaar | 673b9a3 | 2013-06-30 22:43:27 +0200 | [diff] [blame] | 5169 | int keep = 0; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5170 | char_u num[50]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5171 | char_u *args[3]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5172 | int save_current_SID = current_SID; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5173 | void *ret; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5174 | struct cmdline_info save_ccline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5175 | |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5176 | if (xp->xp_arg == NULL || xp->xp_arg[0] == '\0' || xp->xp_line == NULL) |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5177 | return NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5178 | *num_file = 0; |
| 5179 | *file = NULL; |
| 5180 | |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5181 | if (ccline.cmdbuff != NULL) |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5182 | { |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5183 | keep = ccline.cmdbuff[ccline.cmdlen]; |
| 5184 | ccline.cmdbuff[ccline.cmdlen] = 0; |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5185 | } |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5186 | |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 5187 | args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len); |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5188 | args[1] = xp->xp_line; |
| 5189 | sprintf((char *)num, "%d", xp->xp_col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5190 | args[2] = num; |
| 5191 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5192 | /* Save the cmdline, we don't know what the function may do. */ |
| 5193 | save_ccline = ccline; |
| 5194 | ccline.cmdbuff = NULL; |
| 5195 | ccline.cmdprompt = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5196 | current_SID = xp->xp_scriptID; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5197 | |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5198 | ret = user_expand_func(xp->xp_arg, 3, args, FALSE); |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5199 | |
| 5200 | ccline = save_ccline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5201 | current_SID = save_current_SID; |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5202 | if (ccline.cmdbuff != NULL) |
| 5203 | ccline.cmdbuff[ccline.cmdlen] = keep; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5204 | |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 5205 | vim_free(args[0]); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5206 | return ret; |
| 5207 | } |
| 5208 | |
| 5209 | /* |
| 5210 | * Expand names with a function defined by the user. |
| 5211 | */ |
| 5212 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5213 | ExpandUserDefined( |
| 5214 | expand_T *xp, |
| 5215 | regmatch_T *regmatch, |
| 5216 | int *num_file, |
| 5217 | char_u ***file) |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5218 | { |
| 5219 | char_u *retstr; |
| 5220 | char_u *s; |
| 5221 | char_u *e; |
| 5222 | char_u keep; |
| 5223 | garray_T ga; |
| 5224 | |
| 5225 | retstr = call_user_expand_func(call_func_retstr, xp, num_file, file); |
| 5226 | if (retstr == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5227 | return FAIL; |
| 5228 | |
| 5229 | ga_init2(&ga, (int)sizeof(char *), 3); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5230 | for (s = retstr; *s != NUL; s = e) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5231 | { |
| 5232 | e = vim_strchr(s, '\n'); |
| 5233 | if (e == NULL) |
| 5234 | e = s + STRLEN(s); |
| 5235 | keep = *e; |
| 5236 | *e = 0; |
| 5237 | |
| 5238 | if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0) |
| 5239 | { |
| 5240 | *e = keep; |
| 5241 | if (*e != NUL) |
| 5242 | ++e; |
| 5243 | continue; |
| 5244 | } |
| 5245 | |
| 5246 | if (ga_grow(&ga, 1) == FAIL) |
| 5247 | break; |
| 5248 | |
| 5249 | ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s)); |
| 5250 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5251 | |
| 5252 | *e = keep; |
| 5253 | if (*e != NUL) |
| 5254 | ++e; |
| 5255 | } |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5256 | vim_free(retstr); |
| 5257 | *file = ga.ga_data; |
| 5258 | *num_file = ga.ga_len; |
| 5259 | return OK; |
| 5260 | } |
| 5261 | |
| 5262 | /* |
| 5263 | * Expand names with a list returned by a function defined by the user. |
| 5264 | */ |
| 5265 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5266 | ExpandUserList( |
| 5267 | expand_T *xp, |
| 5268 | int *num_file, |
| 5269 | char_u ***file) |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5270 | { |
| 5271 | list_T *retlist; |
| 5272 | listitem_T *li; |
| 5273 | garray_T ga; |
| 5274 | |
| 5275 | retlist = call_user_expand_func(call_func_retlist, xp, num_file, file); |
| 5276 | if (retlist == NULL) |
| 5277 | return FAIL; |
| 5278 | |
| 5279 | ga_init2(&ga, (int)sizeof(char *), 3); |
| 5280 | /* Loop over the items in the list. */ |
| 5281 | for (li = retlist->lv_first; li != NULL; li = li->li_next) |
| 5282 | { |
Bram Moolenaar | 8d3b8c4 | 2009-06-24 15:05:00 +0000 | [diff] [blame] | 5283 | if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) |
| 5284 | continue; /* Skip non-string items and empty strings */ |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5285 | |
| 5286 | if (ga_grow(&ga, 1) == FAIL) |
| 5287 | break; |
| 5288 | |
| 5289 | ((char_u **)ga.ga_data)[ga.ga_len] = |
Bram Moolenaar | 8d3b8c4 | 2009-06-24 15:05:00 +0000 | [diff] [blame] | 5290 | vim_strsave(li->li_tv.vval.v_string); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5291 | ++ga.ga_len; |
| 5292 | } |
| 5293 | list_unref(retlist); |
| 5294 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5295 | *file = ga.ga_data; |
| 5296 | *num_file = ga.ga_len; |
| 5297 | return OK; |
| 5298 | } |
| 5299 | #endif |
| 5300 | |
| 5301 | /* |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5302 | * Expand color scheme, compiler or filetype names. |
| 5303 | * Search from 'runtimepath': |
| 5304 | * 'runtimepath'/{dirnames}/{pat}.vim |
| 5305 | * When "flags" has DIP_START: search also from 'start' of 'packpath': |
| 5306 | * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim |
| 5307 | * When "flags" has DIP_OPT: search also from 'opt' of 'packpath': |
| 5308 | * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5309 | * "dirnames" is an array with one or more directory names. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5310 | */ |
| 5311 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5312 | ExpandRTDir( |
| 5313 | char_u *pat, |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5314 | int flags, |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5315 | int *num_file, |
| 5316 | char_u ***file, |
| 5317 | char *dirnames[]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5318 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5319 | char_u *s; |
| 5320 | char_u *e; |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5321 | char_u *match; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5322 | garray_T ga; |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5323 | int i; |
| 5324 | int pat_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5325 | |
| 5326 | *num_file = 0; |
| 5327 | *file = NULL; |
Bram Moolenaar | 5cfe2d7 | 2011-07-07 15:04:52 +0200 | [diff] [blame] | 5328 | pat_len = (int)STRLEN(pat); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5329 | ga_init2(&ga, (int)sizeof(char *), 10); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5330 | |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5331 | for (i = 0; dirnames[i] != NULL; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5332 | { |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5333 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7)); |
| 5334 | if (s == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5335 | { |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5336 | ga_clear_strings(&ga); |
| 5337 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5338 | } |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5339 | sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat); |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5340 | globpath(p_rtp, s, &ga, 0); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5341 | vim_free(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5342 | } |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5343 | |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5344 | if (flags & DIP_START) { |
| 5345 | for (i = 0; dirnames[i] != NULL; ++i) |
| 5346 | { |
| 5347 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22)); |
| 5348 | if (s == NULL) |
| 5349 | { |
| 5350 | ga_clear_strings(&ga); |
| 5351 | return FAIL; |
| 5352 | } |
| 5353 | sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat); |
| 5354 | globpath(p_pp, s, &ga, 0); |
| 5355 | vim_free(s); |
| 5356 | } |
| 5357 | } |
| 5358 | |
| 5359 | if (flags & DIP_OPT) { |
| 5360 | for (i = 0; dirnames[i] != NULL; ++i) |
| 5361 | { |
| 5362 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20)); |
| 5363 | if (s == NULL) |
| 5364 | { |
| 5365 | ga_clear_strings(&ga); |
| 5366 | return FAIL; |
| 5367 | } |
| 5368 | sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat); |
| 5369 | globpath(p_pp, s, &ga, 0); |
| 5370 | vim_free(s); |
| 5371 | } |
| 5372 | } |
| 5373 | |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5374 | for (i = 0; i < ga.ga_len; ++i) |
| 5375 | { |
| 5376 | match = ((char_u **)ga.ga_data)[i]; |
| 5377 | s = match; |
| 5378 | e = s + STRLEN(s); |
| 5379 | if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0) |
| 5380 | { |
| 5381 | e -= 4; |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 5382 | for (s = e; s > match; MB_PTR_BACK(match, s)) |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5383 | if (s < match || vim_ispathsep(*s)) |
| 5384 | break; |
| 5385 | ++s; |
| 5386 | *e = NUL; |
| 5387 | mch_memmove(match, s, e - s + 1); |
| 5388 | } |
| 5389 | } |
| 5390 | |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5391 | if (ga.ga_len == 0) |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 5392 | return FAIL; |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 5393 | |
| 5394 | /* Sort and remove duplicates which can happen when specifying multiple |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5395 | * directories in dirnames. */ |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 5396 | remove_duplicates(&ga); |
| 5397 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5398 | *file = ga.ga_data; |
| 5399 | *num_file = ga.ga_len; |
| 5400 | return OK; |
| 5401 | } |
| 5402 | |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 5403 | /* |
| 5404 | * Expand loadplugin names: |
| 5405 | * 'packpath'/pack/ * /opt/{pat} |
| 5406 | */ |
| 5407 | static int |
| 5408 | ExpandPackAddDir( |
| 5409 | char_u *pat, |
| 5410 | int *num_file, |
| 5411 | char_u ***file) |
| 5412 | { |
| 5413 | char_u *s; |
| 5414 | char_u *e; |
| 5415 | char_u *match; |
| 5416 | garray_T ga; |
| 5417 | int i; |
| 5418 | int pat_len; |
| 5419 | |
| 5420 | *num_file = 0; |
| 5421 | *file = NULL; |
| 5422 | pat_len = (int)STRLEN(pat); |
| 5423 | ga_init2(&ga, (int)sizeof(char *), 10); |
| 5424 | |
| 5425 | s = alloc((unsigned)(pat_len + 26)); |
| 5426 | if (s == NULL) |
| 5427 | { |
| 5428 | ga_clear_strings(&ga); |
| 5429 | return FAIL; |
| 5430 | } |
| 5431 | sprintf((char *)s, "pack/*/opt/%s*", pat); |
| 5432 | globpath(p_pp, s, &ga, 0); |
| 5433 | vim_free(s); |
| 5434 | |
| 5435 | for (i = 0; i < ga.ga_len; ++i) |
| 5436 | { |
| 5437 | match = ((char_u **)ga.ga_data)[i]; |
| 5438 | s = gettail(match); |
| 5439 | e = s + STRLEN(s); |
| 5440 | mch_memmove(match, s, e - s + 1); |
| 5441 | } |
| 5442 | |
| 5443 | if (ga.ga_len == 0) |
| 5444 | return FAIL; |
| 5445 | |
| 5446 | /* Sort and remove duplicates which can happen when specifying multiple |
| 5447 | * directories in dirnames. */ |
| 5448 | remove_duplicates(&ga); |
| 5449 | |
| 5450 | *file = ga.ga_data; |
| 5451 | *num_file = ga.ga_len; |
| 5452 | return OK; |
| 5453 | } |
| 5454 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5455 | #endif |
| 5456 | |
| 5457 | #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO) |
| 5458 | /* |
| 5459 | * Expand "file" for all comma-separated directories in "path". |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5460 | * Adds the matches to "ga". Caller must init "ga". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5461 | */ |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5462 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5463 | globpath( |
| 5464 | char_u *path, |
| 5465 | char_u *file, |
| 5466 | garray_T *ga, |
| 5467 | int expand_options) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5468 | { |
| 5469 | expand_T xpc; |
| 5470 | char_u *buf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5471 | int i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5472 | int num_p; |
| 5473 | char_u **p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5474 | |
| 5475 | buf = alloc(MAXPATHL); |
| 5476 | if (buf == NULL) |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5477 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5478 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 5479 | ExpandInit(&xpc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5480 | xpc.xp_context = EXPAND_FILES; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 5481 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5482 | /* Loop over all entries in {path}. */ |
| 5483 | while (*path != NUL) |
| 5484 | { |
| 5485 | /* Copy one item of the path to buf[] and concatenate the file name. */ |
| 5486 | copy_option_part(&path, buf, MAXPATHL, ","); |
| 5487 | if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL) |
| 5488 | { |
Bram Moolenaar | 48e330a | 2016-02-23 14:53:34 +0100 | [diff] [blame] | 5489 | # if defined(MSWIN) |
Bram Moolenaar | 84f888a | 2010-08-05 21:40:16 +0200 | [diff] [blame] | 5490 | /* Using the platform's path separator (\) makes vim incorrectly |
| 5491 | * treat it as an escape character, use '/' instead. */ |
| 5492 | if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf))) |
| 5493 | STRCAT(buf, "/"); |
| 5494 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5495 | add_pathsep(buf); |
Bram Moolenaar | 84f888a | 2010-08-05 21:40:16 +0200 | [diff] [blame] | 5496 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5497 | STRCAT(buf, file); |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 5498 | if (ExpandFromContext(&xpc, buf, &num_p, &p, |
| 5499 | WILD_SILENT|expand_options) != FAIL && num_p > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5500 | { |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 5501 | ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5502 | |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5503 | if (ga_grow(ga, num_p) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5504 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5505 | for (i = 0; i < num_p; ++i) |
| 5506 | { |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5507 | ((char_u **)ga->ga_data)[ga->ga_len] = |
Bram Moolenaar | 7116aa0 | 2014-05-29 14:36:29 +0200 | [diff] [blame] | 5508 | vim_strnsave(p[i], (int)STRLEN(p[i])); |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5509 | ++ga->ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5510 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5511 | } |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5512 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5513 | FreeWild(num_p, p); |
| 5514 | } |
| 5515 | } |
| 5516 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5517 | |
| 5518 | vim_free(buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5519 | } |
| 5520 | |
| 5521 | #endif |
| 5522 | |
| 5523 | #if defined(FEAT_CMDHIST) || defined(PROTO) |
| 5524 | |
| 5525 | /********************************* |
| 5526 | * Command line history stuff * |
| 5527 | *********************************/ |
| 5528 | |
| 5529 | /* |
| 5530 | * Translate a history character to the associated type number. |
| 5531 | */ |
| 5532 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5533 | hist_char2type(int c) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5534 | { |
| 5535 | if (c == ':') |
| 5536 | return HIST_CMD; |
| 5537 | if (c == '=') |
| 5538 | return HIST_EXPR; |
| 5539 | if (c == '@') |
| 5540 | return HIST_INPUT; |
| 5541 | if (c == '>') |
| 5542 | return HIST_DEBUG; |
| 5543 | return HIST_SEARCH; /* must be '?' or '/' */ |
| 5544 | } |
| 5545 | |
| 5546 | /* |
| 5547 | * Table of history names. |
| 5548 | * These names are used in :history and various hist...() functions. |
| 5549 | * It is sufficient to give the significant prefix of a history name. |
| 5550 | */ |
| 5551 | |
| 5552 | static char *(history_names[]) = |
| 5553 | { |
| 5554 | "cmd", |
| 5555 | "search", |
| 5556 | "expr", |
| 5557 | "input", |
| 5558 | "debug", |
| 5559 | NULL |
| 5560 | }; |
| 5561 | |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5562 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 5563 | /* |
| 5564 | * Function given to ExpandGeneric() to obtain the possible first |
| 5565 | * arguments of the ":history command. |
| 5566 | */ |
| 5567 | static char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5568 | get_history_arg(expand_T *xp UNUSED, int idx) |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5569 | { |
| 5570 | static char_u compl[2] = { NUL, NUL }; |
| 5571 | char *short_names = ":=@>?/"; |
Bram Moolenaar | 17bd9dc | 2012-05-25 11:02:41 +0200 | [diff] [blame] | 5572 | int short_names_count = (int)STRLEN(short_names); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5573 | int history_name_count = sizeof(history_names) / sizeof(char *) - 1; |
| 5574 | |
| 5575 | if (idx < short_names_count) |
| 5576 | { |
| 5577 | compl[0] = (char_u)short_names[idx]; |
| 5578 | return compl; |
| 5579 | } |
| 5580 | if (idx < short_names_count + history_name_count) |
| 5581 | return (char_u *)history_names[idx - short_names_count]; |
| 5582 | if (idx == short_names_count + history_name_count) |
| 5583 | return (char_u *)"all"; |
| 5584 | return NULL; |
| 5585 | } |
| 5586 | #endif |
| 5587 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5588 | /* |
| 5589 | * init_history() - Initialize the command line history. |
| 5590 | * Also used to re-allocate the history when the size changes. |
| 5591 | */ |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 5592 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5593 | init_history(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5594 | { |
| 5595 | int newlen; /* new length of history table */ |
| 5596 | histentry_T *temp; |
| 5597 | int i; |
| 5598 | int j; |
| 5599 | int type; |
| 5600 | |
| 5601 | /* |
| 5602 | * If size of history table changed, reallocate it |
| 5603 | */ |
| 5604 | newlen = (int)p_hi; |
| 5605 | if (newlen != hislen) /* history length changed */ |
| 5606 | { |
| 5607 | for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */ |
| 5608 | { |
| 5609 | if (newlen) |
| 5610 | { |
| 5611 | temp = (histentry_T *)lalloc( |
| 5612 | (long_u)(newlen * sizeof(histentry_T)), TRUE); |
| 5613 | if (temp == NULL) /* out of memory! */ |
| 5614 | { |
| 5615 | if (type == 0) /* first one: just keep the old length */ |
| 5616 | { |
| 5617 | newlen = hislen; |
| 5618 | break; |
| 5619 | } |
| 5620 | /* Already changed one table, now we can only have zero |
| 5621 | * length for all tables. */ |
| 5622 | newlen = 0; |
| 5623 | type = -1; |
| 5624 | continue; |
| 5625 | } |
| 5626 | } |
| 5627 | else |
| 5628 | temp = NULL; |
| 5629 | if (newlen == 0 || temp != NULL) |
| 5630 | { |
| 5631 | if (hisidx[type] < 0) /* there are no entries yet */ |
| 5632 | { |
| 5633 | for (i = 0; i < newlen; ++i) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5634 | clear_hist_entry(&temp[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5635 | } |
| 5636 | else if (newlen > hislen) /* array becomes bigger */ |
| 5637 | { |
| 5638 | for (i = 0; i <= hisidx[type]; ++i) |
| 5639 | temp[i] = history[type][i]; |
| 5640 | j = i; |
| 5641 | for ( ; i <= newlen - (hislen - hisidx[type]); ++i) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5642 | clear_hist_entry(&temp[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5643 | for ( ; j < hislen; ++i, ++j) |
| 5644 | temp[i] = history[type][j]; |
| 5645 | } |
| 5646 | else /* array becomes smaller or 0 */ |
| 5647 | { |
| 5648 | j = hisidx[type]; |
| 5649 | for (i = newlen - 1; ; --i) |
| 5650 | { |
| 5651 | if (i >= 0) /* copy newest entries */ |
| 5652 | temp[i] = history[type][j]; |
| 5653 | else /* remove older entries */ |
| 5654 | vim_free(history[type][j].hisstr); |
| 5655 | if (--j < 0) |
| 5656 | j = hislen - 1; |
| 5657 | if (j == hisidx[type]) |
| 5658 | break; |
| 5659 | } |
| 5660 | hisidx[type] = newlen - 1; |
| 5661 | } |
| 5662 | vim_free(history[type]); |
| 5663 | history[type] = temp; |
| 5664 | } |
| 5665 | } |
| 5666 | hislen = newlen; |
| 5667 | } |
| 5668 | } |
| 5669 | |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5670 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5671 | clear_hist_entry(histentry_T *hisptr) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5672 | { |
| 5673 | hisptr->hisnum = 0; |
| 5674 | hisptr->viminfo = FALSE; |
| 5675 | hisptr->hisstr = NULL; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 5676 | hisptr->time_set = 0; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5677 | } |
| 5678 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5679 | /* |
| 5680 | * Check if command line 'str' is already in history. |
| 5681 | * If 'move_to_front' is TRUE, matching entry is moved to end of history. |
| 5682 | */ |
| 5683 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5684 | in_history( |
| 5685 | int type, |
| 5686 | char_u *str, |
| 5687 | int move_to_front, /* Move the entry to the front if it exists */ |
| 5688 | int sep, |
| 5689 | int writing) /* ignore entries read from viminfo */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5690 | { |
| 5691 | int i; |
| 5692 | int last_i = -1; |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5693 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5694 | |
| 5695 | if (hisidx[type] < 0) |
| 5696 | return FALSE; |
| 5697 | i = hisidx[type]; |
| 5698 | do |
| 5699 | { |
| 5700 | if (history[type][i].hisstr == NULL) |
| 5701 | return FALSE; |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5702 | |
| 5703 | /* For search history, check that the separator character matches as |
| 5704 | * well. */ |
| 5705 | p = history[type][i].hisstr; |
| 5706 | if (STRCMP(str, p) == 0 |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 5707 | && !(writing && history[type][i].viminfo) |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5708 | && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5709 | { |
| 5710 | if (!move_to_front) |
| 5711 | return TRUE; |
| 5712 | last_i = i; |
| 5713 | break; |
| 5714 | } |
| 5715 | if (--i < 0) |
| 5716 | i = hislen - 1; |
| 5717 | } while (i != hisidx[type]); |
| 5718 | |
| 5719 | if (last_i >= 0) |
| 5720 | { |
| 5721 | str = history[type][i].hisstr; |
| 5722 | while (i != hisidx[type]) |
| 5723 | { |
| 5724 | if (++i >= hislen) |
| 5725 | i = 0; |
| 5726 | history[type][last_i] = history[type][i]; |
| 5727 | last_i = i; |
| 5728 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5729 | history[type][i].hisnum = ++hisnum[type]; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5730 | history[type][i].viminfo = FALSE; |
| 5731 | history[type][i].hisstr = str; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 5732 | history[type][i].time_set = vim_time(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5733 | return TRUE; |
| 5734 | } |
| 5735 | return FALSE; |
| 5736 | } |
| 5737 | |
| 5738 | /* |
| 5739 | * Convert history name (from table above) to its HIST_ equivalent. |
| 5740 | * When "name" is empty, return "cmd" history. |
| 5741 | * Returns -1 for unknown history name. |
| 5742 | */ |
| 5743 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5744 | get_histtype(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5745 | { |
| 5746 | int i; |
| 5747 | int len = (int)STRLEN(name); |
| 5748 | |
| 5749 | /* No argument: use current history. */ |
| 5750 | if (len == 0) |
| 5751 | return hist_char2type(ccline.cmdfirstc); |
| 5752 | |
| 5753 | for (i = 0; history_names[i] != NULL; ++i) |
| 5754 | if (STRNICMP(name, history_names[i], len) == 0) |
| 5755 | return i; |
| 5756 | |
| 5757 | if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL) |
| 5758 | return hist_char2type(name[0]); |
| 5759 | |
| 5760 | return -1; |
| 5761 | } |
| 5762 | |
| 5763 | static int last_maptick = -1; /* last seen maptick */ |
| 5764 | |
| 5765 | /* |
| 5766 | * Add the given string to the given history. If the string is already in the |
| 5767 | * history then it is moved to the front. "histype" may be one of he HIST_ |
| 5768 | * values. |
| 5769 | */ |
| 5770 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5771 | add_to_history( |
| 5772 | int histype, |
| 5773 | char_u *new_entry, |
| 5774 | int in_map, /* consider maptick when inside a mapping */ |
| 5775 | int sep) /* separator character used (search hist) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5776 | { |
| 5777 | histentry_T *hisptr; |
| 5778 | int len; |
| 5779 | |
| 5780 | if (hislen == 0) /* no history */ |
| 5781 | return; |
| 5782 | |
Bram Moolenaar | a939e43 | 2013-11-09 05:30:26 +0100 | [diff] [blame] | 5783 | if (cmdmod.keeppatterns && histype == HIST_SEARCH) |
| 5784 | return; |
| 5785 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5786 | /* |
| 5787 | * Searches inside the same mapping overwrite each other, so that only |
| 5788 | * the last line is kept. Be careful not to remove a line that was moved |
| 5789 | * down, only lines that were added. |
| 5790 | */ |
| 5791 | if (histype == HIST_SEARCH && in_map) |
| 5792 | { |
Bram Moolenaar | 4664371 | 2016-09-09 21:42:36 +0200 | [diff] [blame] | 5793 | if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5794 | { |
| 5795 | /* Current line is from the same mapping, remove it */ |
| 5796 | hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]]; |
| 5797 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5798 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5799 | --hisnum[histype]; |
| 5800 | if (--hisidx[HIST_SEARCH] < 0) |
| 5801 | hisidx[HIST_SEARCH] = hislen - 1; |
| 5802 | } |
| 5803 | last_maptick = -1; |
| 5804 | } |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 5805 | if (!in_history(histype, new_entry, TRUE, sep, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5806 | { |
| 5807 | if (++hisidx[histype] == hislen) |
| 5808 | hisidx[histype] = 0; |
| 5809 | hisptr = &history[histype][hisidx[histype]]; |
| 5810 | vim_free(hisptr->hisstr); |
| 5811 | |
| 5812 | /* Store the separator after the NUL of the string. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5813 | len = (int)STRLEN(new_entry); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5814 | hisptr->hisstr = vim_strnsave(new_entry, len + 2); |
| 5815 | if (hisptr->hisstr != NULL) |
| 5816 | hisptr->hisstr[len + 1] = sep; |
| 5817 | |
| 5818 | hisptr->hisnum = ++hisnum[histype]; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5819 | hisptr->viminfo = FALSE; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 5820 | hisptr->time_set = vim_time(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5821 | if (histype == HIST_SEARCH && in_map) |
| 5822 | last_maptick = maptick; |
| 5823 | } |
| 5824 | } |
| 5825 | |
| 5826 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 5827 | |
| 5828 | /* |
| 5829 | * Get identifier of newest history entry. |
| 5830 | * "histype" may be one of the HIST_ values. |
| 5831 | */ |
| 5832 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5833 | get_history_idx(int histype) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5834 | { |
| 5835 | if (hislen == 0 || histype < 0 || histype >= HIST_COUNT |
| 5836 | || hisidx[histype] < 0) |
| 5837 | return -1; |
| 5838 | |
| 5839 | return history[histype][hisidx[histype]].hisnum; |
| 5840 | } |
| 5841 | |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 5842 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5843 | * Calculate history index from a number: |
| 5844 | * num > 0: seen as identifying number of a history entry |
| 5845 | * num < 0: relative position in history wrt newest entry |
| 5846 | * "histype" may be one of the HIST_ values. |
| 5847 | */ |
| 5848 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5849 | calc_hist_idx(int histype, int num) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5850 | { |
| 5851 | int i; |
| 5852 | histentry_T *hist; |
| 5853 | int wrapped = FALSE; |
| 5854 | |
| 5855 | if (hislen == 0 || histype < 0 || histype >= HIST_COUNT |
| 5856 | || (i = hisidx[histype]) < 0 || num == 0) |
| 5857 | return -1; |
| 5858 | |
| 5859 | hist = history[histype]; |
| 5860 | if (num > 0) |
| 5861 | { |
| 5862 | while (hist[i].hisnum > num) |
| 5863 | if (--i < 0) |
| 5864 | { |
| 5865 | if (wrapped) |
| 5866 | break; |
| 5867 | i += hislen; |
| 5868 | wrapped = TRUE; |
| 5869 | } |
| 5870 | if (hist[i].hisnum == num && hist[i].hisstr != NULL) |
| 5871 | return i; |
| 5872 | } |
| 5873 | else if (-num <= hislen) |
| 5874 | { |
| 5875 | i += num + 1; |
| 5876 | if (i < 0) |
| 5877 | i += hislen; |
| 5878 | if (hist[i].hisstr != NULL) |
| 5879 | return i; |
| 5880 | } |
| 5881 | return -1; |
| 5882 | } |
| 5883 | |
| 5884 | /* |
| 5885 | * Get a history entry by its index. |
| 5886 | * "histype" may be one of the HIST_ values. |
| 5887 | */ |
| 5888 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5889 | get_history_entry(int histype, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5890 | { |
| 5891 | idx = calc_hist_idx(histype, idx); |
| 5892 | if (idx >= 0) |
| 5893 | return history[histype][idx].hisstr; |
| 5894 | else |
| 5895 | return (char_u *)""; |
| 5896 | } |
| 5897 | |
| 5898 | /* |
| 5899 | * Clear all entries of a history. |
| 5900 | * "histype" may be one of the HIST_ values. |
| 5901 | */ |
| 5902 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5903 | clr_history(int histype) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5904 | { |
| 5905 | int i; |
| 5906 | histentry_T *hisptr; |
| 5907 | |
| 5908 | if (hislen != 0 && histype >= 0 && histype < HIST_COUNT) |
| 5909 | { |
| 5910 | hisptr = history[histype]; |
| 5911 | for (i = hislen; i--;) |
| 5912 | { |
| 5913 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5914 | clear_hist_entry(hisptr); |
Bram Moolenaar | 119d469 | 2016-03-05 21:21:24 +0100 | [diff] [blame] | 5915 | hisptr++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5916 | } |
| 5917 | hisidx[histype] = -1; /* mark history as cleared */ |
| 5918 | hisnum[histype] = 0; /* reset identifier counter */ |
| 5919 | return OK; |
| 5920 | } |
| 5921 | return FAIL; |
| 5922 | } |
| 5923 | |
| 5924 | /* |
| 5925 | * Remove all entries matching {str} from a history. |
| 5926 | * "histype" may be one of the HIST_ values. |
| 5927 | */ |
| 5928 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5929 | del_history_entry(int histype, char_u *str) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5930 | { |
| 5931 | regmatch_T regmatch; |
| 5932 | histentry_T *hisptr; |
| 5933 | int idx; |
| 5934 | int i; |
| 5935 | int last; |
| 5936 | int found = FALSE; |
| 5937 | |
| 5938 | regmatch.regprog = NULL; |
| 5939 | regmatch.rm_ic = FALSE; /* always match case */ |
| 5940 | if (hislen != 0 |
| 5941 | && histype >= 0 |
| 5942 | && histype < HIST_COUNT |
| 5943 | && *str != NUL |
| 5944 | && (idx = hisidx[histype]) >= 0 |
| 5945 | && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING)) |
| 5946 | != NULL) |
| 5947 | { |
| 5948 | i = last = idx; |
| 5949 | do |
| 5950 | { |
| 5951 | hisptr = &history[histype][i]; |
| 5952 | if (hisptr->hisstr == NULL) |
| 5953 | break; |
| 5954 | if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) |
| 5955 | { |
| 5956 | found = TRUE; |
| 5957 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5958 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5959 | } |
| 5960 | else |
| 5961 | { |
| 5962 | if (i != last) |
| 5963 | { |
| 5964 | history[histype][last] = *hisptr; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5965 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5966 | } |
| 5967 | if (--last < 0) |
| 5968 | last += hislen; |
| 5969 | } |
| 5970 | if (--i < 0) |
| 5971 | i += hislen; |
| 5972 | } while (i != idx); |
| 5973 | if (history[histype][idx].hisstr == NULL) |
| 5974 | hisidx[histype] = -1; |
| 5975 | } |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 5976 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5977 | return found; |
| 5978 | } |
| 5979 | |
| 5980 | /* |
| 5981 | * Remove an indexed entry from a history. |
| 5982 | * "histype" may be one of the HIST_ values. |
| 5983 | */ |
| 5984 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5985 | del_history_idx(int histype, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5986 | { |
| 5987 | int i, j; |
| 5988 | |
| 5989 | i = calc_hist_idx(histype, idx); |
| 5990 | if (i < 0) |
| 5991 | return FALSE; |
| 5992 | idx = hisidx[histype]; |
| 5993 | vim_free(history[histype][i].hisstr); |
| 5994 | |
| 5995 | /* When deleting the last added search string in a mapping, reset |
| 5996 | * last_maptick, so that the last added search string isn't deleted again. |
| 5997 | */ |
| 5998 | if (histype == HIST_SEARCH && maptick == last_maptick && i == idx) |
| 5999 | last_maptick = -1; |
| 6000 | |
| 6001 | while (i != idx) |
| 6002 | { |
| 6003 | j = (i + 1) % hislen; |
| 6004 | history[histype][i] = history[histype][j]; |
| 6005 | i = j; |
| 6006 | } |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6007 | clear_hist_entry(&history[histype][i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6008 | if (--i < 0) |
| 6009 | i += hislen; |
| 6010 | hisidx[histype] = i; |
| 6011 | return TRUE; |
| 6012 | } |
| 6013 | |
| 6014 | #endif /* FEAT_EVAL */ |
| 6015 | |
| 6016 | #if defined(FEAT_CRYPT) || defined(PROTO) |
| 6017 | /* |
| 6018 | * Very specific function to remove the value in ":set key=val" from the |
| 6019 | * history. |
| 6020 | */ |
| 6021 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6022 | remove_key_from_history(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6023 | { |
| 6024 | char_u *p; |
| 6025 | int i; |
| 6026 | |
| 6027 | i = hisidx[HIST_CMD]; |
| 6028 | if (i < 0) |
| 6029 | return; |
| 6030 | p = history[HIST_CMD][i].hisstr; |
| 6031 | if (p != NULL) |
| 6032 | for ( ; *p; ++p) |
| 6033 | if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3])) |
| 6034 | { |
| 6035 | p = vim_strchr(p + 3, '='); |
| 6036 | if (p == NULL) |
| 6037 | break; |
| 6038 | ++p; |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 6039 | for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6040 | if (p[i] == '\\' && p[i + 1]) |
| 6041 | ++i; |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 6042 | STRMOVE(p, p + i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6043 | --p; |
| 6044 | } |
| 6045 | } |
| 6046 | #endif |
| 6047 | |
| 6048 | #endif /* FEAT_CMDHIST */ |
| 6049 | |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6050 | #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6051 | /* |
| 6052 | * Get pointer to the command line info to use. cmdline_paste() may clear |
| 6053 | * ccline and put the previous value in prev_ccline. |
| 6054 | */ |
| 6055 | static struct cmdline_info * |
| 6056 | get_ccline_ptr(void) |
| 6057 | { |
| 6058 | if ((State & CMDLINE) == 0) |
| 6059 | return NULL; |
| 6060 | if (ccline.cmdbuff != NULL) |
| 6061 | return &ccline; |
| 6062 | if (prev_ccline_used && prev_ccline.cmdbuff != NULL) |
| 6063 | return &prev_ccline; |
| 6064 | return NULL; |
| 6065 | } |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6066 | #endif |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6067 | |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6068 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6069 | /* |
| 6070 | * Get the current command line in allocated memory. |
| 6071 | * Only works when the command line is being edited. |
| 6072 | * Returns NULL when something is wrong. |
| 6073 | */ |
| 6074 | char_u * |
| 6075 | get_cmdline_str(void) |
| 6076 | { |
| 6077 | struct cmdline_info *p = get_ccline_ptr(); |
| 6078 | |
| 6079 | if (p == NULL) |
| 6080 | return NULL; |
| 6081 | return vim_strnsave(p->cmdbuff, p->cmdlen); |
| 6082 | } |
| 6083 | |
| 6084 | /* |
| 6085 | * Get the current command line position, counted in bytes. |
| 6086 | * Zero is the first position. |
| 6087 | * Only works when the command line is being edited. |
| 6088 | * Returns -1 when something is wrong. |
| 6089 | */ |
| 6090 | int |
| 6091 | get_cmdline_pos(void) |
| 6092 | { |
| 6093 | struct cmdline_info *p = get_ccline_ptr(); |
| 6094 | |
| 6095 | if (p == NULL) |
| 6096 | return -1; |
| 6097 | return p->cmdpos; |
| 6098 | } |
| 6099 | |
| 6100 | /* |
| 6101 | * Set the command line byte position to "pos". Zero is the first position. |
| 6102 | * Only works when the command line is being edited. |
| 6103 | * Returns 1 when failed, 0 when OK. |
| 6104 | */ |
| 6105 | int |
| 6106 | set_cmdline_pos( |
| 6107 | int pos) |
| 6108 | { |
| 6109 | struct cmdline_info *p = get_ccline_ptr(); |
| 6110 | |
| 6111 | if (p == NULL) |
| 6112 | return 1; |
| 6113 | |
| 6114 | /* The position is not set directly but after CTRL-\ e or CTRL-R = has |
| 6115 | * changed the command line. */ |
| 6116 | if (pos < 0) |
| 6117 | new_cmdpos = 0; |
| 6118 | else |
| 6119 | new_cmdpos = pos; |
| 6120 | return 0; |
| 6121 | } |
| 6122 | #endif |
| 6123 | |
| 6124 | #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
| 6125 | /* |
| 6126 | * Get the current command-line type. |
| 6127 | * Returns ':' or '/' or '?' or '@' or '>' or '-' |
| 6128 | * Only works when the command line is being edited. |
| 6129 | * Returns NUL when something is wrong. |
| 6130 | */ |
| 6131 | int |
| 6132 | get_cmdline_type(void) |
| 6133 | { |
| 6134 | struct cmdline_info *p = get_ccline_ptr(); |
| 6135 | |
| 6136 | if (p == NULL) |
| 6137 | return NUL; |
| 6138 | if (p->cmdfirstc == NUL) |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6139 | return |
| 6140 | # ifdef FEAT_EVAL |
| 6141 | (p->input_fn) ? '@' : |
| 6142 | # endif |
| 6143 | '-'; |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6144 | return p->cmdfirstc; |
| 6145 | } |
| 6146 | #endif |
| 6147 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6148 | #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO) |
| 6149 | /* |
| 6150 | * Get indices "num1,num2" that specify a range within a list (not a range of |
| 6151 | * text lines in a buffer!) from a string. Used for ":history" and ":clist". |
| 6152 | * Returns OK if parsed successfully, otherwise FAIL. |
| 6153 | */ |
| 6154 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6155 | get_list_range(char_u **str, int *num1, int *num2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6156 | { |
| 6157 | int len; |
| 6158 | int first = FALSE; |
Bram Moolenaar | 22fcfad | 2016-07-01 18:17:26 +0200 | [diff] [blame] | 6159 | varnumber_T num; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6160 | |
| 6161 | *str = skipwhite(*str); |
| 6162 | if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */ |
| 6163 | { |
Bram Moolenaar | 887c1fe | 2016-01-02 17:56:35 +0100 | [diff] [blame] | 6164 | vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6165 | *str += len; |
| 6166 | *num1 = (int)num; |
| 6167 | first = TRUE; |
| 6168 | } |
| 6169 | *str = skipwhite(*str); |
| 6170 | if (**str == ',') /* parse "to" part of range */ |
| 6171 | { |
| 6172 | *str = skipwhite(*str + 1); |
Bram Moolenaar | 887c1fe | 2016-01-02 17:56:35 +0100 | [diff] [blame] | 6173 | vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6174 | if (len > 0) |
| 6175 | { |
| 6176 | *num2 = (int)num; |
| 6177 | *str = skipwhite(*str + len); |
| 6178 | } |
| 6179 | else if (!first) /* no number given at all */ |
| 6180 | return FAIL; |
| 6181 | } |
| 6182 | else if (first) /* only one number given */ |
| 6183 | *num2 = *num1; |
| 6184 | return OK; |
| 6185 | } |
| 6186 | #endif |
| 6187 | |
| 6188 | #if defined(FEAT_CMDHIST) || defined(PROTO) |
| 6189 | /* |
| 6190 | * :history command - print a history |
| 6191 | */ |
| 6192 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6193 | ex_history(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6194 | { |
| 6195 | histentry_T *hist; |
| 6196 | int histype1 = HIST_CMD; |
| 6197 | int histype2 = HIST_CMD; |
| 6198 | int hisidx1 = 1; |
| 6199 | int hisidx2 = -1; |
| 6200 | int idx; |
| 6201 | int i, j, k; |
| 6202 | char_u *end; |
| 6203 | char_u *arg = eap->arg; |
| 6204 | |
| 6205 | if (hislen == 0) |
| 6206 | { |
| 6207 | MSG(_("'history' option is zero")); |
| 6208 | return; |
| 6209 | } |
| 6210 | |
| 6211 | if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ',')) |
| 6212 | { |
| 6213 | end = arg; |
| 6214 | while (ASCII_ISALPHA(*end) |
| 6215 | || vim_strchr((char_u *)":=@>/?", *end) != NULL) |
| 6216 | end++; |
| 6217 | i = *end; |
| 6218 | *end = NUL; |
| 6219 | histype1 = get_histtype(arg); |
| 6220 | if (histype1 == -1) |
| 6221 | { |
Bram Moolenaar | b9c1e96 | 2009-04-22 11:52:33 +0000 | [diff] [blame] | 6222 | if (STRNICMP(arg, "all", STRLEN(arg)) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6223 | { |
| 6224 | histype1 = 0; |
| 6225 | histype2 = HIST_COUNT-1; |
| 6226 | } |
| 6227 | else |
| 6228 | { |
| 6229 | *end = i; |
| 6230 | EMSG(_(e_trailing)); |
| 6231 | return; |
| 6232 | } |
| 6233 | } |
| 6234 | else |
| 6235 | histype2 = histype1; |
| 6236 | *end = i; |
| 6237 | } |
| 6238 | else |
| 6239 | end = arg; |
| 6240 | if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) |
| 6241 | { |
| 6242 | EMSG(_(e_trailing)); |
| 6243 | return; |
| 6244 | } |
| 6245 | |
| 6246 | for (; !got_int && histype1 <= histype2; ++histype1) |
| 6247 | { |
| 6248 | STRCPY(IObuff, "\n # "); |
| 6249 | STRCAT(STRCAT(IObuff, history_names[histype1]), " history"); |
| 6250 | MSG_PUTS_TITLE(IObuff); |
| 6251 | idx = hisidx[histype1]; |
| 6252 | hist = history[histype1]; |
| 6253 | j = hisidx1; |
| 6254 | k = hisidx2; |
| 6255 | if (j < 0) |
| 6256 | j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum; |
| 6257 | if (k < 0) |
| 6258 | k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum; |
| 6259 | if (idx >= 0 && j <= k) |
| 6260 | for (i = idx + 1; !got_int; ++i) |
| 6261 | { |
| 6262 | if (i == hislen) |
| 6263 | i = 0; |
| 6264 | if (hist[i].hisstr != NULL |
| 6265 | && hist[i].hisnum >= j && hist[i].hisnum <= k) |
| 6266 | { |
| 6267 | msg_putchar('\n'); |
| 6268 | sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ', |
| 6269 | hist[i].hisnum); |
| 6270 | if (vim_strsize(hist[i].hisstr) > (int)Columns - 10) |
| 6271 | trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff), |
Bram Moolenaar | 38f5f95 | 2012-01-26 13:01:59 +0100 | [diff] [blame] | 6272 | (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6273 | else |
| 6274 | STRCAT(IObuff, hist[i].hisstr); |
| 6275 | msg_outtrans(IObuff); |
| 6276 | out_flush(); |
| 6277 | } |
| 6278 | if (i == idx) |
| 6279 | break; |
| 6280 | } |
| 6281 | } |
| 6282 | } |
| 6283 | #endif |
| 6284 | |
| 6285 | #if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO) |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6286 | /* |
| 6287 | * Buffers for history read from a viminfo file. Only valid while reading. |
| 6288 | */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6289 | static histentry_T *viminfo_history[HIST_COUNT] = |
| 6290 | {NULL, NULL, NULL, NULL, NULL}; |
| 6291 | static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0}; |
| 6292 | static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0}; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6293 | static int viminfo_add_at_front = FALSE; |
| 6294 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 6295 | static int hist_type2char(int type, int use_question); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6296 | |
| 6297 | /* |
| 6298 | * Translate a history type number to the associated character. |
| 6299 | */ |
| 6300 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6301 | hist_type2char( |
| 6302 | int type, |
| 6303 | int use_question) /* use '?' instead of '/' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6304 | { |
| 6305 | if (type == HIST_CMD) |
| 6306 | return ':'; |
| 6307 | if (type == HIST_SEARCH) |
| 6308 | { |
| 6309 | if (use_question) |
| 6310 | return '?'; |
| 6311 | else |
| 6312 | return '/'; |
| 6313 | } |
| 6314 | if (type == HIST_EXPR) |
| 6315 | return '='; |
| 6316 | return '@'; |
| 6317 | } |
| 6318 | |
| 6319 | /* |
| 6320 | * Prepare for reading the history from the viminfo file. |
| 6321 | * This allocates history arrays to store the read history lines. |
| 6322 | */ |
| 6323 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6324 | prepare_viminfo_history(int asklen, int writing) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6325 | { |
| 6326 | int i; |
| 6327 | int num; |
| 6328 | int type; |
| 6329 | int len; |
| 6330 | |
| 6331 | init_history(); |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6332 | viminfo_add_at_front = (asklen != 0 && !writing); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6333 | if (asklen > hislen) |
| 6334 | asklen = hislen; |
| 6335 | |
| 6336 | for (type = 0; type < HIST_COUNT; ++type) |
| 6337 | { |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6338 | /* Count the number of empty spaces in the history list. Entries read |
| 6339 | * from viminfo previously are also considered empty. If there are |
| 6340 | * more spaces available than we request, then fill them up. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6341 | for (i = 0, num = 0; i < hislen; i++) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6342 | if (history[type][i].hisstr == NULL || history[type][i].viminfo) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6343 | num++; |
| 6344 | len = asklen; |
| 6345 | if (num > len) |
| 6346 | len = num; |
| 6347 | if (len <= 0) |
| 6348 | viminfo_history[type] = NULL; |
| 6349 | else |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6350 | viminfo_history[type] = (histentry_T *)lalloc( |
| 6351 | (long_u)(len * sizeof(histentry_T)), FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6352 | if (viminfo_history[type] == NULL) |
| 6353 | len = 0; |
| 6354 | viminfo_hislen[type] = len; |
| 6355 | viminfo_hisidx[type] = 0; |
| 6356 | } |
| 6357 | } |
| 6358 | |
| 6359 | /* |
| 6360 | * Accept a line from the viminfo, store it in the history array when it's |
| 6361 | * new. |
| 6362 | */ |
| 6363 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6364 | read_viminfo_history(vir_T *virp, int writing) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6365 | { |
| 6366 | int type; |
| 6367 | long_u len; |
| 6368 | char_u *val; |
| 6369 | char_u *p; |
| 6370 | |
| 6371 | type = hist_char2type(virp->vir_line[0]); |
| 6372 | if (viminfo_hisidx[type] < viminfo_hislen[type]) |
| 6373 | { |
| 6374 | val = viminfo_readstring(virp, 1, TRUE); |
| 6375 | if (val != NULL && *val != NUL) |
| 6376 | { |
Bram Moolenaar | d87fbc2 | 2012-02-04 22:44:32 +0100 | [diff] [blame] | 6377 | int sep = (*val == ' ' ? NUL : *val); |
| 6378 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6379 | if (!in_history(type, val + (type == HIST_SEARCH), |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6380 | viminfo_add_at_front, sep, writing)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6381 | { |
| 6382 | /* Need to re-allocate to append the separator byte. */ |
| 6383 | len = STRLEN(val); |
| 6384 | p = lalloc(len + 2, TRUE); |
| 6385 | if (p != NULL) |
| 6386 | { |
| 6387 | if (type == HIST_SEARCH) |
| 6388 | { |
| 6389 | /* Search entry: Move the separator from the first |
| 6390 | * column to after the NUL. */ |
| 6391 | mch_memmove(p, val + 1, (size_t)len); |
Bram Moolenaar | d87fbc2 | 2012-02-04 22:44:32 +0100 | [diff] [blame] | 6392 | p[len] = sep; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6393 | } |
| 6394 | else |
| 6395 | { |
| 6396 | /* Not a search entry: No separator in the viminfo |
| 6397 | * file, add a NUL separator. */ |
| 6398 | mch_memmove(p, val, (size_t)len + 1); |
| 6399 | p[len + 1] = NUL; |
| 6400 | } |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6401 | viminfo_history[type][viminfo_hisidx[type]].hisstr = p; |
| 6402 | viminfo_history[type][viminfo_hisidx[type]].time_set = 0; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6403 | viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE; |
| 6404 | viminfo_history[type][viminfo_hisidx[type]].hisnum = 0; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6405 | viminfo_hisidx[type]++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6406 | } |
| 6407 | } |
| 6408 | } |
| 6409 | vim_free(val); |
| 6410 | } |
| 6411 | return viminfo_readline(virp); |
| 6412 | } |
| 6413 | |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6414 | /* |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6415 | * Accept a new style history line from the viminfo, store it in the history |
| 6416 | * array when it's new. |
| 6417 | */ |
| 6418 | void |
| 6419 | handle_viminfo_history( |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6420 | garray_T *values, |
| 6421 | int writing) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6422 | { |
| 6423 | int type; |
| 6424 | long_u len; |
| 6425 | char_u *val; |
| 6426 | char_u *p; |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6427 | bval_T *vp = (bval_T *)values->ga_data; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6428 | |
| 6429 | /* Check the format: |
| 6430 | * |{bartype},{histtype},{timestamp},{separator},"text" */ |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6431 | if (values->ga_len < 4 |
| 6432 | || vp[0].bv_type != BVAL_NR |
| 6433 | || vp[1].bv_type != BVAL_NR |
| 6434 | || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY) |
| 6435 | || vp[3].bv_type != BVAL_STRING) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6436 | return; |
| 6437 | |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6438 | type = vp[0].bv_nr; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6439 | if (type >= HIST_COUNT) |
| 6440 | return; |
| 6441 | if (viminfo_hisidx[type] < viminfo_hislen[type]) |
| 6442 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6443 | val = vp[3].bv_string; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6444 | if (val != NULL && *val != NUL) |
| 6445 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6446 | int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR |
| 6447 | ? vp[2].bv_nr : NUL; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6448 | int idx; |
| 6449 | int overwrite = FALSE; |
| 6450 | |
| 6451 | if (!in_history(type, val, viminfo_add_at_front, sep, writing)) |
| 6452 | { |
| 6453 | /* If lines were written by an older Vim we need to avoid |
| 6454 | * getting duplicates. See if the entry already exists. */ |
| 6455 | for (idx = 0; idx < viminfo_hisidx[type]; ++idx) |
| 6456 | { |
| 6457 | p = viminfo_history[type][idx].hisstr; |
| 6458 | if (STRCMP(val, p) == 0 |
| 6459 | && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
| 6460 | { |
| 6461 | overwrite = TRUE; |
| 6462 | break; |
| 6463 | } |
| 6464 | } |
| 6465 | |
| 6466 | if (!overwrite) |
| 6467 | { |
| 6468 | /* Need to re-allocate to append the separator byte. */ |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6469 | len = vp[3].bv_len; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6470 | p = lalloc(len + 2, TRUE); |
| 6471 | } |
Bram Moolenaar | 72e697d | 2016-06-13 22:48:01 +0200 | [diff] [blame] | 6472 | else |
| 6473 | len = 0; /* for picky compilers */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6474 | if (p != NULL) |
| 6475 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6476 | viminfo_history[type][idx].time_set = vp[1].bv_nr; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6477 | if (!overwrite) |
| 6478 | { |
| 6479 | mch_memmove(p, val, (size_t)len + 1); |
| 6480 | /* Put the separator after the NUL. */ |
| 6481 | p[len + 1] = sep; |
| 6482 | viminfo_history[type][idx].hisstr = p; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6483 | viminfo_history[type][idx].hisnum = 0; |
| 6484 | viminfo_history[type][idx].viminfo = TRUE; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6485 | viminfo_hisidx[type]++; |
| 6486 | } |
| 6487 | } |
| 6488 | } |
| 6489 | } |
| 6490 | } |
| 6491 | } |
| 6492 | |
| 6493 | /* |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6494 | * Concatenate history lines from viminfo after the lines typed in this Vim. |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6495 | */ |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6496 | static void |
| 6497 | concat_history(int type) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6498 | { |
| 6499 | int idx; |
| 6500 | int i; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6501 | |
| 6502 | idx = hisidx[type] + viminfo_hisidx[type]; |
| 6503 | if (idx >= hislen) |
| 6504 | idx -= hislen; |
| 6505 | else if (idx < 0) |
| 6506 | idx = hislen - 1; |
| 6507 | if (viminfo_add_at_front) |
| 6508 | hisidx[type] = idx; |
| 6509 | else |
| 6510 | { |
| 6511 | if (hisidx[type] == -1) |
| 6512 | hisidx[type] = hislen - 1; |
| 6513 | do |
| 6514 | { |
| 6515 | if (history[type][idx].hisstr != NULL |
| 6516 | || history[type][idx].viminfo) |
| 6517 | break; |
| 6518 | if (++idx == hislen) |
| 6519 | idx = 0; |
| 6520 | } while (idx != hisidx[type]); |
| 6521 | if (idx != hisidx[type] && --idx < 0) |
| 6522 | idx = hislen - 1; |
| 6523 | } |
| 6524 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6525 | { |
| 6526 | vim_free(history[type][idx].hisstr); |
| 6527 | history[type][idx].hisstr = viminfo_history[type][i].hisstr; |
| 6528 | history[type][idx].viminfo = TRUE; |
| 6529 | history[type][idx].time_set = viminfo_history[type][i].time_set; |
| 6530 | if (--idx < 0) |
| 6531 | idx = hislen - 1; |
| 6532 | } |
| 6533 | idx += 1; |
| 6534 | idx %= hislen; |
| 6535 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6536 | { |
| 6537 | history[type][idx++].hisnum = ++hisnum[type]; |
| 6538 | idx %= hislen; |
| 6539 | } |
| 6540 | } |
| 6541 | |
| 6542 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 6543 | static int |
| 6544 | #ifdef __BORLANDC__ |
| 6545 | _RTLENTRYF |
| 6546 | #endif |
| 6547 | sort_hist(const void *s1, const void *s2) |
| 6548 | { |
| 6549 | histentry_T *p1 = *(histentry_T **)s1; |
| 6550 | histentry_T *p2 = *(histentry_T **)s2; |
| 6551 | |
| 6552 | if (p1->time_set < p2->time_set) return -1; |
| 6553 | if (p1->time_set > p2->time_set) return 1; |
| 6554 | return 0; |
| 6555 | } |
| 6556 | #endif |
| 6557 | |
| 6558 | /* |
| 6559 | * Merge history lines from viminfo and lines typed in this Vim based on the |
| 6560 | * timestamp; |
| 6561 | */ |
| 6562 | static void |
| 6563 | merge_history(int type) |
| 6564 | { |
| 6565 | int max_len; |
| 6566 | histentry_T **tot_hist; |
| 6567 | histentry_T *new_hist; |
| 6568 | int i; |
| 6569 | int len; |
| 6570 | |
| 6571 | /* Make one long list with all entries. */ |
| 6572 | max_len = hislen + viminfo_hisidx[type]; |
| 6573 | tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *)); |
| 6574 | new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T)); |
| 6575 | if (tot_hist == NULL || new_hist == NULL) |
| 6576 | { |
| 6577 | vim_free(tot_hist); |
| 6578 | vim_free(new_hist); |
| 6579 | return; |
| 6580 | } |
| 6581 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6582 | tot_hist[i] = &viminfo_history[type][i]; |
| 6583 | len = i; |
| 6584 | for (i = 0; i < hislen; i++) |
| 6585 | if (history[type][i].hisstr != NULL) |
| 6586 | tot_hist[len++] = &history[type][i]; |
| 6587 | |
| 6588 | /* Sort the list on timestamp. */ |
| 6589 | qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist); |
| 6590 | |
| 6591 | /* Keep the newest ones. */ |
| 6592 | for (i = 0; i < hislen; i++) |
| 6593 | { |
| 6594 | if (i < len) |
| 6595 | { |
| 6596 | new_hist[i] = *tot_hist[i]; |
| 6597 | tot_hist[i]->hisstr = NULL; |
| 6598 | if (new_hist[i].hisnum == 0) |
| 6599 | new_hist[i].hisnum = ++hisnum[type]; |
| 6600 | } |
| 6601 | else |
| 6602 | clear_hist_entry(&new_hist[i]); |
| 6603 | } |
Bram Moolenaar | a890f5e | 2016-06-12 23:03:19 +0200 | [diff] [blame] | 6604 | hisidx[type] = (i < len ? i : len) - 1; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6605 | |
| 6606 | /* Free what is not kept. */ |
| 6607 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6608 | vim_free(viminfo_history[type][i].hisstr); |
| 6609 | for (i = 0; i < hislen; i++) |
| 6610 | vim_free(history[type][i].hisstr); |
| 6611 | vim_free(history[type]); |
| 6612 | history[type] = new_hist; |
Bram Moolenaar | 62f8b4e | 2016-06-11 15:31:47 +0200 | [diff] [blame] | 6613 | vim_free(tot_hist); |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6614 | } |
| 6615 | |
| 6616 | /* |
| 6617 | * Finish reading history lines from viminfo. Not used when writing viminfo. |
| 6618 | */ |
| 6619 | void |
| 6620 | finish_viminfo_history(vir_T *virp) |
| 6621 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6622 | int type; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6623 | int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6624 | |
| 6625 | for (type = 0; type < HIST_COUNT; ++type) |
| 6626 | { |
| 6627 | if (history[type] == NULL) |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6628 | continue; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6629 | |
| 6630 | if (merge) |
| 6631 | merge_history(type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6632 | else |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6633 | concat_history(type); |
| 6634 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6635 | vim_free(viminfo_history[type]); |
| 6636 | viminfo_history[type] = NULL; |
Bram Moolenaar | f687cf3 | 2013-04-24 15:39:11 +0200 | [diff] [blame] | 6637 | viminfo_hisidx[type] = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6638 | } |
| 6639 | } |
| 6640 | |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6641 | /* |
| 6642 | * Write history to viminfo file in "fp". |
| 6643 | * When "merge" is TRUE merge history lines with a previously read viminfo |
| 6644 | * file, data is in viminfo_history[]. |
| 6645 | * When "merge" is FALSE just write all history lines. Used for ":wviminfo!". |
| 6646 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6647 | void |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6648 | write_viminfo_history(FILE *fp, int merge) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6649 | { |
| 6650 | int i; |
| 6651 | int type; |
| 6652 | int num_saved; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6653 | int round; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6654 | |
| 6655 | init_history(); |
| 6656 | if (hislen == 0) |
| 6657 | return; |
| 6658 | for (type = 0; type < HIST_COUNT; ++type) |
| 6659 | { |
| 6660 | num_saved = get_viminfo_parameter(hist_type2char(type, FALSE)); |
| 6661 | if (num_saved == 0) |
| 6662 | continue; |
| 6663 | if (num_saved < 0) /* Use default */ |
| 6664 | num_saved = hislen; |
| 6665 | fprintf(fp, _("\n# %s History (newest to oldest):\n"), |
| 6666 | type == HIST_CMD ? _("Command Line") : |
| 6667 | type == HIST_SEARCH ? _("Search String") : |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6668 | type == HIST_EXPR ? _("Expression") : |
| 6669 | type == HIST_INPUT ? _("Input Line") : |
| 6670 | _("Debug Line")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6671 | if (num_saved > hislen) |
| 6672 | num_saved = hislen; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6673 | |
| 6674 | /* |
| 6675 | * Merge typed and viminfo history: |
| 6676 | * round 1: history of typed commands. |
| 6677 | * round 2: history from recently read viminfo. |
| 6678 | */ |
| 6679 | for (round = 1; round <= 2; ++round) |
| 6680 | { |
Bram Moolenaar | a8565fe | 2013-04-15 16:14:22 +0200 | [diff] [blame] | 6681 | if (round == 1) |
| 6682 | /* start at newest entry, somewhere in the list */ |
| 6683 | i = hisidx[type]; |
| 6684 | else if (viminfo_hisidx[type] > 0) |
| 6685 | /* start at newest entry, first in the list */ |
| 6686 | i = 0; |
| 6687 | else |
| 6688 | /* empty list */ |
| 6689 | i = -1; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6690 | if (i >= 0) |
| 6691 | while (num_saved > 0 |
| 6692 | && !(round == 2 && i >= viminfo_hisidx[type])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6693 | { |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6694 | char_u *p; |
| 6695 | time_t timestamp; |
| 6696 | int c = NUL; |
| 6697 | |
| 6698 | if (round == 1) |
| 6699 | { |
| 6700 | p = history[type][i].hisstr; |
| 6701 | timestamp = history[type][i].time_set; |
| 6702 | } |
| 6703 | else |
| 6704 | { |
| 6705 | p = viminfo_history[type] == NULL ? NULL |
| 6706 | : viminfo_history[type][i].hisstr; |
| 6707 | timestamp = viminfo_history[type] == NULL ? 0 |
| 6708 | : viminfo_history[type][i].time_set; |
| 6709 | } |
| 6710 | |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6711 | if (p != NULL && (round == 2 |
| 6712 | || !merge |
| 6713 | || !history[type][i].viminfo)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6714 | { |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6715 | --num_saved; |
| 6716 | fputc(hist_type2char(type, TRUE), fp); |
| 6717 | /* For the search history: put the separator in the |
| 6718 | * second column; use a space if there isn't one. */ |
| 6719 | if (type == HIST_SEARCH) |
| 6720 | { |
| 6721 | c = p[STRLEN(p) + 1]; |
| 6722 | putc(c == NUL ? ' ' : c, fp); |
| 6723 | } |
| 6724 | viminfo_writestring(fp, p); |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6725 | |
| 6726 | { |
| 6727 | char cbuf[NUMBUFLEN]; |
| 6728 | |
| 6729 | /* New style history with a bar line. Format: |
| 6730 | * |{bartype},{histtype},{timestamp},{separator},"text" */ |
| 6731 | if (c == NUL) |
| 6732 | cbuf[0] = NUL; |
| 6733 | else |
| 6734 | sprintf(cbuf, "%d", c); |
| 6735 | fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY, |
| 6736 | type, (long)timestamp, cbuf); |
| 6737 | barline_writestring(fp, p, LSIZE - 20); |
| 6738 | putc('\n', fp); |
| 6739 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6740 | } |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6741 | if (round == 1) |
| 6742 | { |
| 6743 | /* Decrement index, loop around and stop when back at |
| 6744 | * the start. */ |
| 6745 | if (--i < 0) |
| 6746 | i = hislen - 1; |
| 6747 | if (i == hisidx[type]) |
| 6748 | break; |
| 6749 | } |
| 6750 | else |
| 6751 | { |
| 6752 | /* Increment index. Stop at the end in the while. */ |
| 6753 | ++i; |
| 6754 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6755 | } |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6756 | } |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6757 | for (i = 0; i < viminfo_hisidx[type]; ++i) |
Bram Moolenaar | f687cf3 | 2013-04-24 15:39:11 +0200 | [diff] [blame] | 6758 | if (viminfo_history[type] != NULL) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6759 | vim_free(viminfo_history[type][i].hisstr); |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6760 | vim_free(viminfo_history[type]); |
| 6761 | viminfo_history[type] = NULL; |
Bram Moolenaar | b70a473 | 2013-04-15 22:22:57 +0200 | [diff] [blame] | 6762 | viminfo_hisidx[type] = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6763 | } |
| 6764 | } |
| 6765 | #endif /* FEAT_VIMINFO */ |
| 6766 | |
| 6767 | #if defined(FEAT_FKMAP) || defined(PROTO) |
| 6768 | /* |
| 6769 | * Write a character at the current cursor+offset position. |
| 6770 | * It is directly written into the command buffer block. |
| 6771 | */ |
| 6772 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6773 | cmd_pchar(int c, int offset) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6774 | { |
| 6775 | if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) |
| 6776 | { |
| 6777 | EMSG(_("E198: cmd_pchar beyond the command length")); |
| 6778 | return; |
| 6779 | } |
| 6780 | ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c; |
| 6781 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
| 6782 | } |
| 6783 | |
| 6784 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6785 | cmd_gchar(int offset) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6786 | { |
| 6787 | if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) |
| 6788 | { |
| 6789 | /* EMSG(_("cmd_gchar beyond the command length")); */ |
| 6790 | return NUL; |
| 6791 | } |
| 6792 | return (int)ccline.cmdbuff[ccline.cmdpos + offset]; |
| 6793 | } |
| 6794 | #endif |
| 6795 | |
| 6796 | #if defined(FEAT_CMDWIN) || defined(PROTO) |
| 6797 | /* |
| 6798 | * Open a window on the current command line and history. Allow editing in |
| 6799 | * the window. Returns when the window is closed. |
| 6800 | * Returns: |
| 6801 | * CR if the command is to be executed |
| 6802 | * Ctrl_C if it is to be abandoned |
| 6803 | * K_IGNORE if editing continues |
| 6804 | */ |
| 6805 | static int |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 6806 | open_cmdwin(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6807 | { |
| 6808 | struct cmdline_info save_ccline; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6809 | bufref_T old_curbuf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6810 | win_T *old_curwin = curwin; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6811 | bufref_T bufref; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6812 | win_T *wp; |
| 6813 | int i; |
| 6814 | linenr_T lnum; |
| 6815 | int histtype; |
| 6816 | garray_T winsizes; |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 6817 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6818 | char_u typestr[2]; |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 6819 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6820 | int save_restart_edit = restart_edit; |
| 6821 | int save_State = State; |
| 6822 | int save_exmode = exmode_active; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6823 | #ifdef FEAT_RIGHTLEFT |
| 6824 | int save_cmdmsg_rl = cmdmsg_rl; |
| 6825 | #endif |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 6826 | #ifdef FEAT_FOLDING |
| 6827 | int save_KeyTyped; |
| 6828 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6829 | |
| 6830 | /* Can't do this recursively. Can't do it when typing a password. */ |
| 6831 | if (cmdwin_type != 0 |
| 6832 | # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 6833 | || cmdline_star > 0 |
| 6834 | # endif |
| 6835 | ) |
| 6836 | { |
| 6837 | beep_flush(); |
| 6838 | return K_IGNORE; |
| 6839 | } |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6840 | set_bufref(&old_curbuf, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6841 | |
| 6842 | /* Save current window sizes. */ |
| 6843 | win_size_save(&winsizes); |
| 6844 | |
| 6845 | # ifdef FEAT_AUTOCMD |
| 6846 | /* Don't execute autocommands while creating the window. */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6847 | block_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6848 | # endif |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 6849 | /* don't use a new tab page */ |
| 6850 | cmdmod.tab = 0; |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 6851 | cmdmod.noswapfile = 1; |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 6852 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6853 | /* Create a window for the command-line buffer. */ |
| 6854 | if (win_split((int)p_cwh, WSP_BOT) == FAIL) |
| 6855 | { |
| 6856 | beep_flush(); |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6857 | # ifdef FEAT_AUTOCMD |
| 6858 | unblock_autocmds(); |
| 6859 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6860 | return K_IGNORE; |
| 6861 | } |
Bram Moolenaar | e8bd5ce | 2009-03-02 01:12:48 +0000 | [diff] [blame] | 6862 | cmdwin_type = get_cmdline_type(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6863 | |
| 6864 | /* Create the command-line buffer empty. */ |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 6865 | (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 6866 | (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6867 | set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6868 | curbuf->b_p_ma = TRUE; |
Bram Moolenaar | 876f6d7 | 2009-04-29 10:05:51 +0000 | [diff] [blame] | 6869 | #ifdef FEAT_FOLDING |
| 6870 | curwin->w_p_fen = FALSE; |
| 6871 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6872 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6873 | curwin->w_p_rl = cmdmsg_rl; |
| 6874 | cmdmsg_rl = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6875 | # endif |
Bram Moolenaar | 3368ea2 | 2010-09-21 16:56:35 +0200 | [diff] [blame] | 6876 | RESET_BINDING(curwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6877 | |
| 6878 | # ifdef FEAT_AUTOCMD |
| 6879 | /* Do execute autocommands for setting the filetype (load syntax). */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6880 | unblock_autocmds(); |
Bram Moolenaar | 1814183 | 2017-06-25 21:17:25 +0200 | [diff] [blame] | 6881 | /* But don't allow switching to another buffer. */ |
| 6882 | ++curbuf_lock; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6883 | # endif |
| 6884 | |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6885 | /* Showing the prompt may have set need_wait_return, reset it. */ |
| 6886 | need_wait_return = FALSE; |
| 6887 | |
Bram Moolenaar | e8bd5ce | 2009-03-02 01:12:48 +0000 | [diff] [blame] | 6888 | histtype = hist_char2type(cmdwin_type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6889 | if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
| 6890 | { |
| 6891 | if (p_wc == TAB) |
| 6892 | { |
| 6893 | add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); |
| 6894 | add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); |
| 6895 | } |
| 6896 | set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); |
| 6897 | } |
Bram Moolenaar | 1814183 | 2017-06-25 21:17:25 +0200 | [diff] [blame] | 6898 | # ifdef FEAT_AUTOCMD |
| 6899 | --curbuf_lock; |
| 6900 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6901 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 6902 | /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
| 6903 | * sets 'textwidth' to 78). */ |
| 6904 | curbuf->b_p_tw = 0; |
| 6905 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6906 | /* Fill the buffer with the history. */ |
| 6907 | init_history(); |
| 6908 | if (hislen > 0) |
| 6909 | { |
| 6910 | i = hisidx[histtype]; |
| 6911 | if (i >= 0) |
| 6912 | { |
| 6913 | lnum = 0; |
| 6914 | do |
| 6915 | { |
| 6916 | if (++i == hislen) |
| 6917 | i = 0; |
| 6918 | if (history[histtype][i].hisstr != NULL) |
| 6919 | ml_append(lnum++, history[histtype][i].hisstr, |
| 6920 | (colnr_T)0, FALSE); |
| 6921 | } |
| 6922 | while (i != hisidx[histtype]); |
| 6923 | } |
| 6924 | } |
| 6925 | |
| 6926 | /* Replace the empty last line with the current command-line and put the |
| 6927 | * cursor there. */ |
| 6928 | ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); |
| 6929 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 6930 | curwin->w_cursor.col = ccline.cmdpos; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6931 | changed_line_abv_curs(); |
| 6932 | invalidate_botline(); |
Bram Moolenaar | 600dddc | 2006-03-12 22:05:10 +0000 | [diff] [blame] | 6933 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6934 | |
| 6935 | /* Save the command line info, can be used recursively. */ |
Bram Moolenaar | 1d669c2 | 2017-01-11 22:40:19 +0100 | [diff] [blame] | 6936 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6937 | |
| 6938 | /* No Ex mode here! */ |
| 6939 | exmode_active = 0; |
| 6940 | |
| 6941 | State = NORMAL; |
| 6942 | # ifdef FEAT_MOUSE |
| 6943 | setmouse(); |
| 6944 | # endif |
| 6945 | |
| 6946 | # ifdef FEAT_AUTOCMD |
| 6947 | /* Trigger CmdwinEnter autocommands. */ |
| 6948 | typestr[0] = cmdwin_type; |
| 6949 | typestr[1] = NUL; |
| 6950 | apply_autocmds(EVENT_CMDWINENTER, typestr, typestr, FALSE, curbuf); |
Bram Moolenaar | 5495cc9 | 2006-08-16 14:23:04 +0000 | [diff] [blame] | 6951 | if (restart_edit != 0) /* autocmd with ":startinsert" */ |
| 6952 | stuffcharReadbuff(K_NOP); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6953 | # endif |
| 6954 | |
| 6955 | i = RedrawingDisabled; |
| 6956 | RedrawingDisabled = 0; |
| 6957 | |
| 6958 | /* |
| 6959 | * Call the main loop until <CR> or CTRL-C is typed. |
| 6960 | */ |
| 6961 | cmdwin_result = 0; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 6962 | main_loop(TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6963 | |
| 6964 | RedrawingDisabled = i; |
| 6965 | |
| 6966 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 6967 | |
| 6968 | # ifdef FEAT_FOLDING |
| 6969 | save_KeyTyped = KeyTyped; |
| 6970 | # endif |
| 6971 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6972 | /* Trigger CmdwinLeave autocommands. */ |
| 6973 | apply_autocmds(EVENT_CMDWINLEAVE, typestr, typestr, FALSE, curbuf); |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 6974 | |
| 6975 | # ifdef FEAT_FOLDING |
| 6976 | /* Restore KeyTyped in case it is modified by autocommands */ |
| 6977 | KeyTyped = save_KeyTyped; |
| 6978 | # endif |
| 6979 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6980 | # endif |
| 6981 | |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 6982 | /* Restore the command line info. */ |
Bram Moolenaar | 1d669c2 | 2017-01-11 22:40:19 +0100 | [diff] [blame] | 6983 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6984 | cmdwin_type = 0; |
| 6985 | |
| 6986 | exmode_active = save_exmode; |
| 6987 | |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 6988 | /* Safety check: The old window or buffer was deleted: It's a bug when |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6989 | * this happens! */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6990 | if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6991 | { |
| 6992 | cmdwin_result = Ctrl_C; |
| 6993 | EMSG(_("E199: Active window or buffer deleted")); |
| 6994 | } |
| 6995 | else |
| 6996 | { |
| 6997 | # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 6998 | /* autocmds may abort script processing */ |
| 6999 | if (aborting() && cmdwin_result != K_IGNORE) |
| 7000 | cmdwin_result = Ctrl_C; |
| 7001 | # endif |
| 7002 | /* Set the new command line from the cmdline buffer. */ |
| 7003 | vim_free(ccline.cmdbuff); |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7004 | if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7005 | { |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7006 | char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
| 7007 | |
| 7008 | if (histtype == HIST_CMD) |
| 7009 | { |
| 7010 | /* Execute the command directly. */ |
| 7011 | ccline.cmdbuff = vim_strsave((char_u *)p); |
| 7012 | cmdwin_result = CAR; |
| 7013 | } |
| 7014 | else |
| 7015 | { |
| 7016 | /* First need to cancel what we were doing. */ |
| 7017 | ccline.cmdbuff = NULL; |
| 7018 | stuffcharReadbuff(':'); |
| 7019 | stuffReadbuff((char_u *)p); |
| 7020 | stuffcharReadbuff(CAR); |
| 7021 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7022 | } |
| 7023 | else if (cmdwin_result == K_XF2) /* :qa typed */ |
| 7024 | { |
| 7025 | ccline.cmdbuff = vim_strsave((char_u *)"qa"); |
| 7026 | cmdwin_result = CAR; |
| 7027 | } |
Bram Moolenaar | 9bd1a7e | 2011-05-19 14:50:54 +0200 | [diff] [blame] | 7028 | else if (cmdwin_result == Ctrl_C) |
| 7029 | { |
| 7030 | /* :q or :close, don't execute any command |
| 7031 | * and don't modify the cmd window. */ |
| 7032 | ccline.cmdbuff = NULL; |
| 7033 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7034 | else |
| 7035 | ccline.cmdbuff = vim_strsave(ml_get_curline()); |
| 7036 | if (ccline.cmdbuff == NULL) |
| 7037 | cmdwin_result = Ctrl_C; |
| 7038 | else |
| 7039 | { |
| 7040 | ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); |
| 7041 | ccline.cmdbufflen = ccline.cmdlen + 1; |
| 7042 | ccline.cmdpos = curwin->w_cursor.col; |
| 7043 | if (ccline.cmdpos > ccline.cmdlen) |
| 7044 | ccline.cmdpos = ccline.cmdlen; |
| 7045 | if (cmdwin_result == K_IGNORE) |
| 7046 | { |
| 7047 | set_cmdspos_cursor(); |
| 7048 | redrawcmd(); |
| 7049 | } |
| 7050 | } |
| 7051 | |
| 7052 | # ifdef FEAT_AUTOCMD |
| 7053 | /* Don't execute autocommands while deleting the window. */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 7054 | block_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7055 | # endif |
Bram Moolenaar | fa67fbe | 2015-06-25 18:20:36 +0200 | [diff] [blame] | 7056 | # ifdef FEAT_CONCEAL |
| 7057 | /* Avoid command-line window first character being concealed. */ |
| 7058 | curwin->w_p_cole = 0; |
| 7059 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7060 | wp = curwin; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 7061 | set_bufref(&bufref, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7062 | win_goto(old_curwin); |
| 7063 | win_close(wp, TRUE); |
Bram Moolenaar | 8006d69 | 2010-03-02 17:23:21 +0100 | [diff] [blame] | 7064 | |
| 7065 | /* win_close() may have already wiped the buffer when 'bh' is |
| 7066 | * set to 'wipe' */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 7067 | if (bufref_valid(&bufref)) |
| 7068 | close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7069 | |
| 7070 | /* Restore window sizes. */ |
| 7071 | win_size_restore(&winsizes); |
| 7072 | |
| 7073 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 7074 | unblock_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7075 | # endif |
| 7076 | } |
| 7077 | |
| 7078 | ga_clear(&winsizes); |
| 7079 | restart_edit = save_restart_edit; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7080 | # ifdef FEAT_RIGHTLEFT |
| 7081 | cmdmsg_rl = save_cmdmsg_rl; |
| 7082 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7083 | |
| 7084 | State = save_State; |
| 7085 | # ifdef FEAT_MOUSE |
| 7086 | setmouse(); |
| 7087 | # endif |
| 7088 | |
| 7089 | return cmdwin_result; |
| 7090 | } |
| 7091 | #endif /* FEAT_CMDWIN */ |
| 7092 | |
| 7093 | /* |
| 7094 | * Used for commands that either take a simple command string argument, or: |
| 7095 | * cmd << endmarker |
| 7096 | * {script} |
| 7097 | * endmarker |
| 7098 | * Returns a pointer to allocated memory with {script} or NULL. |
| 7099 | */ |
| 7100 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 7101 | script_get(exarg_T *eap, char_u *cmd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7102 | { |
| 7103 | char_u *theline; |
| 7104 | char *end_pattern = NULL; |
| 7105 | char dot[] = "."; |
| 7106 | garray_T ga; |
| 7107 | |
| 7108 | if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) |
| 7109 | return NULL; |
| 7110 | |
| 7111 | ga_init2(&ga, 1, 0x400); |
| 7112 | |
| 7113 | if (cmd[2] != NUL) |
| 7114 | end_pattern = (char *)skipwhite(cmd + 2); |
| 7115 | else |
| 7116 | end_pattern = dot; |
| 7117 | |
| 7118 | for (;;) |
| 7119 | { |
| 7120 | theline = eap->getline( |
| 7121 | #ifdef FEAT_EVAL |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 7122 | eap->cstack->cs_looplevel > 0 ? -1 : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7123 | #endif |
| 7124 | NUL, eap->cookie, 0); |
| 7125 | |
| 7126 | if (theline == NULL || STRCMP(end_pattern, theline) == 0) |
Bram Moolenaar | be555e7 | 2008-08-06 12:19:26 +0000 | [diff] [blame] | 7127 | { |
| 7128 | vim_free(theline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7129 | break; |
Bram Moolenaar | be555e7 | 2008-08-06 12:19:26 +0000 | [diff] [blame] | 7130 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7131 | |
| 7132 | ga_concat(&ga, theline); |
| 7133 | ga_append(&ga, '\n'); |
| 7134 | vim_free(theline); |
| 7135 | } |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 7136 | ga_append(&ga, NUL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7137 | |
| 7138 | return (char_u *)ga.ga_data; |
| 7139 | } |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 7140 | |
| 7141 | #ifdef FEAT_SEARCH_EXTRA |
| 7142 | static void |
| 7143 | set_search_match(pos_T *t) |
| 7144 | { |
| 7145 | /* |
| 7146 | * First move cursor to end of match, then to the start. This |
| 7147 | * moves the whole match onto the screen when 'nowrap' is set. |
| 7148 | */ |
| 7149 | t->lnum += search_match_lines; |
| 7150 | t->col = search_match_endcol; |
| 7151 | if (t->lnum > curbuf->b_ml.ml_line_count) |
| 7152 | { |
| 7153 | t->lnum = curbuf->b_ml.ml_line_count; |
| 7154 | coladvance((colnr_T)MAXCOL); |
| 7155 | } |
| 7156 | } |
| 7157 | #endif |