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 | |
Bram Moolenaar | a92522f | 2017-07-15 15:21:38 +0200 | [diff] [blame] | 55 | static int extra_char = NUL; /* extra character to display when redrawing |
| 56 | * the command line */ |
Bram Moolenaar | 6a77d26 | 2017-07-16 15:24:01 +0200 | [diff] [blame] | 57 | static int extra_char_shift; |
| 58 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 59 | #ifdef FEAT_CMDHIST |
| 60 | typedef struct hist_entry |
| 61 | { |
| 62 | int hisnum; /* identifying number */ |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 63 | int viminfo; /* when TRUE hisstr comes from viminfo */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 64 | char_u *hisstr; /* actual entry, separator char after the NUL */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 65 | time_t time_set; /* when it was typed, zero if unknown */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | } histentry_T; |
| 67 | |
| 68 | static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL}; |
| 69 | static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; /* lastused entry */ |
| 70 | static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0}; |
| 71 | /* identifying (unique) number of newest history entry */ |
| 72 | static int hislen = 0; /* actual length of history tables */ |
| 73 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 74 | static int hist_char2type(int c); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 75 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 76 | static int in_history(int, char_u *, int, int, int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 77 | # ifdef FEAT_EVAL |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 78 | static int calc_hist_idx(int histype, int num); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 79 | # endif |
| 80 | #endif |
| 81 | |
| 82 | #ifdef FEAT_RIGHTLEFT |
| 83 | static int cmd_hkmap = 0; /* Hebrew mapping during command line */ |
| 84 | #endif |
| 85 | |
| 86 | #ifdef FEAT_FKMAP |
| 87 | static int cmd_fkmap = 0; /* Farsi mapping during command line */ |
| 88 | #endif |
| 89 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 90 | static int cmdline_charsize(int idx); |
| 91 | static void set_cmdspos(void); |
| 92 | static void set_cmdspos_cursor(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 93 | #ifdef FEAT_MBYTE |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 94 | static void correct_cmdspos(int idx, int cells); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 95 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 96 | static void alloc_cmdbuff(int len); |
| 97 | static int realloc_cmdbuff(int len); |
| 98 | static void draw_cmdline(int start, int len); |
| 99 | static void save_cmdline(struct cmdline_info *ccp); |
| 100 | static void restore_cmdline(struct cmdline_info *ccp); |
| 101 | static int cmdline_paste(int regname, int literally, int remcr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 102 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 103 | static void redrawcmd_preedit(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | #endif |
| 105 | #ifdef FEAT_WILDMENU |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 106 | static void cmdline_del(int from); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 107 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 108 | static void redrawcmdprompt(void); |
| 109 | static void cursorcmd(void); |
| 110 | static int ccheck_abbr(int); |
| 111 | static int nextwild(expand_T *xp, int type, int options, int escape); |
| 112 | static void escape_fname(char_u **pp); |
| 113 | static int showmatches(expand_T *xp, int wildmenu); |
| 114 | static void set_expand_context(expand_T *xp); |
| 115 | static int ExpandFromContext(expand_T *xp, char_u *, int *, char_u ***, int); |
| 116 | static int expand_showtail(expand_T *xp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 117 | #ifdef FEAT_CMDL_COMPL |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 118 | 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] | 119 | 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] | 120 | static int ExpandPackAddDir(char_u *pat, int *num_file, char_u ***file); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 121 | # ifdef FEAT_CMDHIST |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 122 | static char_u *get_history_arg(expand_T *xp, int idx); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 123 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 124 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 125 | static int ExpandUserDefined(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file); |
| 126 | static int ExpandUserList(expand_T *xp, int *num_file, char_u ***file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 127 | # endif |
| 128 | #endif |
Bram Moolenaar | 25a6df9 | 2013-04-06 14:29:00 +0200 | [diff] [blame] | 129 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 130 | static void clear_hist_entry(histentry_T *hisptr); |
Bram Moolenaar | 25a6df9 | 2013-04-06 14:29:00 +0200 | [diff] [blame] | 131 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 132 | |
| 133 | #ifdef FEAT_CMDWIN |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 134 | static int open_cmdwin(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 135 | #endif |
| 136 | |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 137 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 138 | static int |
| 139 | #ifdef __BORLANDC__ |
| 140 | _RTLENTRYF |
| 141 | #endif |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 142 | sort_func_compare(const void *s1, const void *s2); |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 143 | #endif |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 144 | #ifdef FEAT_SEARCH_EXTRA |
| 145 | static void set_search_match(pos_T *t); |
| 146 | #endif |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 147 | |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 148 | |
| 149 | #ifdef FEAT_AUTOCMD |
| 150 | static void |
| 151 | trigger_cmd_autocmd(int typechar, int evt) |
| 152 | { |
| 153 | char_u typestr[2]; |
| 154 | |
| 155 | typestr[0] = typechar; |
| 156 | typestr[1] = NUL; |
| 157 | apply_autocmds(evt, typestr, typestr, FALSE, curbuf); |
| 158 | } |
| 159 | #endif |
| 160 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 161 | /* |
Bram Moolenaar | f8e8c06 | 2017-10-22 14:44:17 +0200 | [diff] [blame] | 162 | * Abandon the command line. |
| 163 | */ |
| 164 | static void |
| 165 | abandon_cmdline(void) |
| 166 | { |
| 167 | vim_free(ccline.cmdbuff); |
| 168 | ccline.cmdbuff = NULL; |
| 169 | if (msg_scrolled == 0) |
| 170 | compute_cmdrow(); |
| 171 | MSG(""); |
| 172 | redraw_cmdline = TRUE; |
| 173 | } |
| 174 | |
| 175 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 176 | * getcmdline() - accept a command line starting with firstc. |
| 177 | * |
| 178 | * firstc == ':' get ":" command line. |
| 179 | * firstc == '/' or '?' get search pattern |
| 180 | * firstc == '=' get expression |
| 181 | * firstc == '@' get text for input() function |
| 182 | * firstc == '>' get text for debug mode |
| 183 | * firstc == NUL get text for :insert command |
| 184 | * firstc == -1 like NUL, and break on CTRL-C |
| 185 | * |
| 186 | * The line is collected in ccline.cmdbuff, which is reallocated to fit the |
| 187 | * command line. |
| 188 | * |
| 189 | * Careful: getcmdline() can be called recursively! |
| 190 | * |
| 191 | * Return pointer to allocated string if there is a commandline, NULL |
| 192 | * otherwise. |
| 193 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 194 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 195 | getcmdline( |
| 196 | int firstc, |
| 197 | long count UNUSED, /* only used for incremental search */ |
| 198 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 199 | { |
| 200 | int c; |
| 201 | int i; |
| 202 | int j; |
| 203 | int gotesc = FALSE; /* TRUE when <ESC> just typed */ |
| 204 | int do_abbr; /* when TRUE check for abbr. */ |
| 205 | #ifdef FEAT_CMDHIST |
| 206 | char_u *lookfor = NULL; /* string to match */ |
| 207 | int hiscnt; /* current history line in use */ |
| 208 | int histype; /* history type to be used */ |
| 209 | #endif |
| 210 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 211 | pos_T search_start; /* where 'incsearch' starts searching */ |
| 212 | pos_T save_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 213 | colnr_T old_curswant; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 214 | colnr_T init_curswant = curwin->w_curswant; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 215 | colnr_T old_leftcol; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 216 | colnr_T init_leftcol = curwin->w_leftcol; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 217 | linenr_T old_topline; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 218 | linenr_T init_topline = curwin->w_topline; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 219 | pos_T match_start = curwin->w_cursor; |
| 220 | pos_T match_end; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 221 | # ifdef FEAT_DIFF |
| 222 | int old_topfill; |
Bram Moolenaar | d048009 | 2017-11-16 22:20:39 +0100 | [diff] [blame] | 223 | int init_topfill = curwin->w_topfill; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 224 | # endif |
| 225 | linenr_T old_botline; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 226 | linenr_T init_botline = curwin->w_botline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 227 | int did_incsearch = FALSE; |
| 228 | int incsearch_postponed = FALSE; |
| 229 | #endif |
| 230 | int did_wild_list = FALSE; /* did wild_list() recently */ |
| 231 | int wim_index = 0; /* index in wim_flags[] */ |
| 232 | int res; |
| 233 | int save_msg_scroll = msg_scroll; |
| 234 | int save_State = State; /* remember State when called */ |
| 235 | int some_key_typed = FALSE; /* one of the keys was typed */ |
| 236 | #ifdef FEAT_MOUSE |
| 237 | /* mouse drag and release events are ignored, unless they are |
| 238 | * preceded with a mouse down event */ |
| 239 | int ignore_drag_release = TRUE; |
| 240 | #endif |
| 241 | #ifdef FEAT_EVAL |
| 242 | int break_ctrl_c = FALSE; |
| 243 | #endif |
| 244 | expand_T xpc; |
| 245 | long *b_im_ptr = NULL; |
Bram Moolenaar | 4d85051 | 2017-02-09 18:25:14 +0100 | [diff] [blame] | 246 | #if defined(FEAT_WILDMENU) || defined(FEAT_EVAL) || defined(FEAT_SEARCH_EXTRA) |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 247 | /* Everything that may work recursively should save and restore the |
| 248 | * current command line in save_ccline. That includes update_screen(), a |
| 249 | * custom status line may invoke ":normal". */ |
| 250 | struct cmdline_info save_ccline; |
| 251 | #endif |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 252 | #ifdef FEAT_AUTOCMD |
| 253 | int cmdline_type; |
| 254 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 255 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 256 | #ifdef FEAT_EVAL |
| 257 | if (firstc == -1) |
| 258 | { |
| 259 | firstc = NUL; |
| 260 | break_ctrl_c = TRUE; |
| 261 | } |
| 262 | #endif |
| 263 | #ifdef FEAT_RIGHTLEFT |
| 264 | /* start without Hebrew mapping for a command line */ |
| 265 | if (firstc == ':' || firstc == '=' || firstc == '>') |
| 266 | cmd_hkmap = 0; |
| 267 | #endif |
| 268 | |
| 269 | ccline.overstrike = FALSE; /* always start in insert mode */ |
| 270 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 271 | CLEAR_POS(&match_end); |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 272 | save_cursor = curwin->w_cursor; /* may be restored later */ |
| 273 | search_start = curwin->w_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 274 | old_curswant = curwin->w_curswant; |
| 275 | old_leftcol = curwin->w_leftcol; |
| 276 | old_topline = curwin->w_topline; |
| 277 | # ifdef FEAT_DIFF |
| 278 | old_topfill = curwin->w_topfill; |
| 279 | # endif |
| 280 | old_botline = curwin->w_botline; |
| 281 | #endif |
| 282 | |
| 283 | /* |
| 284 | * set some variables for redrawcmd() |
| 285 | */ |
| 286 | ccline.cmdfirstc = (firstc == '@' ? 0 : firstc); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 287 | ccline.cmdindent = (firstc > 0 ? indent : 0); |
| 288 | |
| 289 | /* alloc initial ccline.cmdbuff */ |
| 290 | alloc_cmdbuff(exmode_active ? 250 : indent + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 291 | if (ccline.cmdbuff == NULL) |
| 292 | return NULL; /* out of memory */ |
| 293 | ccline.cmdlen = ccline.cmdpos = 0; |
| 294 | ccline.cmdbuff[0] = NUL; |
Bram Moolenaar | f2405ed | 2017-03-16 19:58:25 +0100 | [diff] [blame] | 295 | sb_text_start_cmdline(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 296 | |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 297 | /* autoindent for :insert and :append */ |
| 298 | if (firstc <= 0) |
| 299 | { |
Bram Moolenaar | 2536d4f | 2015-07-17 13:22:51 +0200 | [diff] [blame] | 300 | vim_memset(ccline.cmdbuff, ' ', indent); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 301 | ccline.cmdbuff[indent] = NUL; |
| 302 | ccline.cmdpos = indent; |
| 303 | ccline.cmdspos = indent; |
| 304 | ccline.cmdlen = indent; |
| 305 | } |
| 306 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 307 | ExpandInit(&xpc); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 308 | ccline.xpc = &xpc; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 309 | |
| 310 | #ifdef FEAT_RIGHTLEFT |
| 311 | if (curwin->w_p_rl && *curwin->w_p_rlc == 's' |
| 312 | && (firstc == '/' || firstc == '?')) |
| 313 | cmdmsg_rl = TRUE; |
| 314 | else |
| 315 | cmdmsg_rl = FALSE; |
| 316 | #endif |
| 317 | |
| 318 | redir_off = TRUE; /* don't redirect the typed command */ |
| 319 | if (!cmd_silent) |
| 320 | { |
| 321 | i = msg_scrolled; |
| 322 | msg_scrolled = 0; /* avoid wait_return message */ |
| 323 | gotocmdline(TRUE); |
| 324 | msg_scrolled += i; |
| 325 | redrawcmdprompt(); /* draw prompt or indent */ |
| 326 | set_cmdspos(); |
| 327 | } |
| 328 | xpc.xp_context = EXPAND_NOTHING; |
| 329 | xpc.xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 330 | #ifndef BACKSLASH_IN_FILENAME |
| 331 | xpc.xp_shell = FALSE; |
| 332 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 333 | |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 334 | #if defined(FEAT_EVAL) |
| 335 | if (ccline.input_fn) |
| 336 | { |
| 337 | xpc.xp_context = ccline.xp_context; |
| 338 | xpc.xp_pattern = ccline.cmdbuff; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 339 | # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 340 | xpc.xp_arg = ccline.xp_arg; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 341 | # endif |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 342 | } |
| 343 | #endif |
| 344 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 345 | /* |
| 346 | * Avoid scrolling when called by a recursive do_cmdline(), e.g. when |
| 347 | * doing ":@0" when register 0 doesn't contain a CR. |
| 348 | */ |
| 349 | msg_scroll = FALSE; |
| 350 | |
| 351 | State = CMDLINE; |
| 352 | |
| 353 | if (firstc == '/' || firstc == '?' || firstc == '@') |
| 354 | { |
| 355 | /* Use ":lmap" mappings for search pattern and input(). */ |
| 356 | if (curbuf->b_p_imsearch == B_IMODE_USE_INSERT) |
| 357 | b_im_ptr = &curbuf->b_p_iminsert; |
| 358 | else |
| 359 | b_im_ptr = &curbuf->b_p_imsearch; |
| 360 | if (*b_im_ptr == B_IMODE_LMAP) |
| 361 | State |= LANGMAP; |
Bram Moolenaar | 819edbe | 2017-11-25 17:14:33 +0100 | [diff] [blame] | 362 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 363 | im_set_active(*b_im_ptr == B_IMODE_IM); |
| 364 | #endif |
| 365 | } |
Bram Moolenaar | 819edbe | 2017-11-25 17:14:33 +0100 | [diff] [blame] | 366 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 367 | else if (p_imcmdline) |
| 368 | im_set_active(TRUE); |
| 369 | #endif |
| 370 | |
| 371 | #ifdef FEAT_MOUSE |
| 372 | setmouse(); |
| 373 | #endif |
| 374 | #ifdef CURSOR_SHAPE |
| 375 | ui_cursor_shape(); /* may show different cursor shape */ |
| 376 | #endif |
| 377 | |
Bram Moolenaar | f4d1145 | 2005-12-02 00:46:37 +0000 | [diff] [blame] | 378 | /* When inside an autocommand for writing "exiting" may be set and |
| 379 | * terminal mode set to cooked. Need to set raw mode here then. */ |
| 380 | settmode(TMODE_RAW); |
| 381 | |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 382 | #ifdef FEAT_AUTOCMD |
| 383 | /* Trigger CmdlineEnter autocommands. */ |
| 384 | cmdline_type = firstc == NUL ? '-' : firstc; |
| 385 | trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINEENTER); |
| 386 | #endif |
| 387 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 388 | #ifdef FEAT_CMDHIST |
| 389 | init_history(); |
| 390 | hiscnt = hislen; /* set hiscnt to impossible history value */ |
| 391 | histype = hist_char2type(firstc); |
| 392 | #endif |
| 393 | |
| 394 | #ifdef FEAT_DIGRAPHS |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 395 | do_digraph(-1); /* init digraph typeahead */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 396 | #endif |
| 397 | |
Bram Moolenaar | 15a35c4 | 2014-06-25 12:26:46 +0200 | [diff] [blame] | 398 | /* If something above caused an error, reset the flags, we do want to type |
| 399 | * and execute commands. Display may be messed up a bit. */ |
| 400 | if (did_emsg) |
| 401 | redrawcmd(); |
| 402 | did_emsg = FALSE; |
| 403 | got_int = FALSE; |
| 404 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 405 | /* |
| 406 | * Collect the command string, handling editing keys. |
| 407 | */ |
| 408 | for (;;) |
| 409 | { |
Bram Moolenaar | 29b2d26 | 2006-09-10 19:07:28 +0000 | [diff] [blame] | 410 | redir_off = TRUE; /* Don't redirect the typed command. |
| 411 | Repeated, because a ":redir" inside |
| 412 | completion may switch it on. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 413 | #ifdef USE_ON_FLY_SCROLL |
| 414 | dont_scroll = FALSE; /* allow scrolling here */ |
| 415 | #endif |
| 416 | quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */ |
| 417 | |
| 418 | cursorcmd(); /* set the cursor on the right spot */ |
Bram Moolenaar | 30405d3 | 2008-01-02 20:55:27 +0000 | [diff] [blame] | 419 | |
| 420 | /* Get a character. Ignore K_IGNORE, it should not do anything, such |
| 421 | * as stop completion. */ |
| 422 | do |
| 423 | { |
| 424 | c = safe_vgetc(); |
| 425 | } while (c == K_IGNORE); |
| 426 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 427 | if (KeyTyped) |
| 428 | { |
| 429 | some_key_typed = TRUE; |
| 430 | #ifdef FEAT_RIGHTLEFT |
| 431 | if (cmd_hkmap) |
| 432 | c = hkmap(c); |
| 433 | # ifdef FEAT_FKMAP |
| 434 | if (cmd_fkmap) |
| 435 | c = cmdl_fkmap(c); |
| 436 | # endif |
| 437 | if (cmdmsg_rl && !KeyStuffed) |
| 438 | { |
| 439 | /* Invert horizontal movements and operations. Only when |
| 440 | * typed by the user directly, not when the result of a |
| 441 | * mapping. */ |
| 442 | switch (c) |
| 443 | { |
| 444 | case K_RIGHT: c = K_LEFT; break; |
| 445 | case K_S_RIGHT: c = K_S_LEFT; break; |
| 446 | case K_C_RIGHT: c = K_C_LEFT; break; |
| 447 | case K_LEFT: c = K_RIGHT; break; |
| 448 | case K_S_LEFT: c = K_S_RIGHT; break; |
| 449 | case K_C_LEFT: c = K_C_RIGHT; break; |
| 450 | } |
| 451 | } |
| 452 | #endif |
| 453 | } |
| 454 | |
| 455 | /* |
| 456 | * Ignore got_int when CTRL-C was typed here. |
| 457 | * Don't ignore it in :global, we really need to break then, e.g., for |
| 458 | * ":g/pat/normal /pat" (without the <CR>). |
| 459 | * Don't ignore it for the input() function. |
| 460 | */ |
| 461 | if ((c == Ctrl_C |
| 462 | #ifdef UNIX |
| 463 | || c == intr_char |
| 464 | #endif |
| 465 | ) |
| 466 | #if defined(FEAT_EVAL) || defined(FEAT_CRYPT) |
| 467 | && firstc != '@' |
| 468 | #endif |
| 469 | #ifdef FEAT_EVAL |
| 470 | && !break_ctrl_c |
| 471 | #endif |
| 472 | && !global_busy) |
| 473 | got_int = FALSE; |
| 474 | |
| 475 | #ifdef FEAT_CMDHIST |
| 476 | /* free old command line when finished moving around in the history |
| 477 | * list */ |
| 478 | if (lookfor != NULL |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 479 | && c != K_S_DOWN && c != K_S_UP |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 480 | && c != K_DOWN && c != K_UP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 481 | && c != K_PAGEDOWN && c != K_PAGEUP |
| 482 | && c != K_KPAGEDOWN && c != K_KPAGEUP |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 483 | && c != K_LEFT && c != K_RIGHT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 484 | && (xpc.xp_numfiles > 0 || (c != Ctrl_P && c != Ctrl_N))) |
| 485 | { |
| 486 | vim_free(lookfor); |
| 487 | lookfor = NULL; |
| 488 | } |
| 489 | #endif |
| 490 | |
| 491 | /* |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 492 | * When there are matching completions to select <S-Tab> works like |
| 493 | * CTRL-P (unless 'wc' is <S-Tab>). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 494 | */ |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 495 | if (c != p_wc && c == K_S_TAB && xpc.xp_numfiles > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 496 | c = Ctrl_P; |
| 497 | |
| 498 | #ifdef FEAT_WILDMENU |
| 499 | /* Special translations for 'wildmenu' */ |
| 500 | if (did_wild_list && p_wmnu) |
| 501 | { |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 502 | if (c == K_LEFT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 503 | c = Ctrl_P; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 504 | else if (c == K_RIGHT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 505 | c = Ctrl_N; |
| 506 | } |
| 507 | /* Hitting CR after "emenu Name.": complete submenu */ |
| 508 | if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu |
| 509 | && ccline.cmdpos > 1 |
| 510 | && ccline.cmdbuff[ccline.cmdpos - 1] == '.' |
| 511 | && ccline.cmdbuff[ccline.cmdpos - 2] != '\\' |
| 512 | && (c == '\n' || c == '\r' || c == K_KENTER)) |
| 513 | c = K_DOWN; |
| 514 | #endif |
| 515 | |
| 516 | /* free expanded names when finished walking through matches */ |
| 517 | if (xpc.xp_numfiles != -1 |
| 518 | && !(c == p_wc && KeyTyped) && c != p_wcm |
| 519 | && c != Ctrl_N && c != Ctrl_P && c != Ctrl_A |
| 520 | && c != Ctrl_L) |
| 521 | { |
| 522 | (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); |
| 523 | did_wild_list = FALSE; |
| 524 | #ifdef FEAT_WILDMENU |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 525 | if (!p_wmnu || (c != K_UP && c != K_DOWN)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 526 | #endif |
| 527 | xpc.xp_context = EXPAND_NOTHING; |
| 528 | wim_index = 0; |
| 529 | #ifdef FEAT_WILDMENU |
| 530 | if (p_wmnu && wild_menu_showing != 0) |
| 531 | { |
| 532 | int skt = KeyTyped; |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 533 | int old_RedrawingDisabled = RedrawingDisabled; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 534 | |
| 535 | if (ccline.input_fn) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 536 | RedrawingDisabled = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 537 | |
| 538 | if (wild_menu_showing == WM_SCROLLED) |
| 539 | { |
| 540 | /* Entered command line, move it up */ |
| 541 | cmdline_row--; |
| 542 | redrawcmd(); |
| 543 | } |
| 544 | else if (save_p_ls != -1) |
| 545 | { |
| 546 | /* restore 'laststatus' and 'winminheight' */ |
| 547 | p_ls = save_p_ls; |
| 548 | p_wmh = save_p_wmh; |
| 549 | last_status(FALSE); |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 550 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 551 | update_screen(VALID); /* redraw the screen NOW */ |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 552 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 553 | redrawcmd(); |
| 554 | save_p_ls = -1; |
| 555 | } |
| 556 | else |
| 557 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 558 | win_redraw_last_status(topframe); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 559 | redraw_statuslines(); |
| 560 | } |
| 561 | KeyTyped = skt; |
| 562 | wild_menu_showing = 0; |
Bram Moolenaar | 1e01546 | 2005-09-25 22:16:38 +0000 | [diff] [blame] | 563 | if (ccline.input_fn) |
| 564 | RedrawingDisabled = old_RedrawingDisabled; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 565 | } |
| 566 | #endif |
| 567 | } |
| 568 | |
| 569 | #ifdef FEAT_WILDMENU |
| 570 | /* Special translations for 'wildmenu' */ |
| 571 | if (xpc.xp_context == EXPAND_MENUNAMES && p_wmnu) |
| 572 | { |
| 573 | /* Hitting <Down> after "emenu Name.": complete submenu */ |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 574 | if (c == K_DOWN && ccline.cmdpos > 0 |
| 575 | && ccline.cmdbuff[ccline.cmdpos - 1] == '.') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 576 | c = p_wc; |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 577 | else if (c == K_UP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 578 | { |
| 579 | /* Hitting <Up>: Remove one submenu name in front of the |
| 580 | * cursor */ |
| 581 | int found = FALSE; |
| 582 | |
| 583 | j = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 584 | i = 0; |
| 585 | while (--j > 0) |
| 586 | { |
| 587 | /* check for start of menu name */ |
| 588 | if (ccline.cmdbuff[j] == ' ' |
| 589 | && ccline.cmdbuff[j - 1] != '\\') |
| 590 | { |
| 591 | i = j + 1; |
| 592 | break; |
| 593 | } |
| 594 | /* check for start of submenu name */ |
| 595 | if (ccline.cmdbuff[j] == '.' |
| 596 | && ccline.cmdbuff[j - 1] != '\\') |
| 597 | { |
| 598 | if (found) |
| 599 | { |
| 600 | i = j + 1; |
| 601 | break; |
| 602 | } |
| 603 | else |
| 604 | found = TRUE; |
| 605 | } |
| 606 | } |
| 607 | if (i > 0) |
| 608 | cmdline_del(i); |
| 609 | c = p_wc; |
| 610 | xpc.xp_context = EXPAND_NOTHING; |
| 611 | } |
| 612 | } |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 613 | if ((xpc.xp_context == EXPAND_FILES |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 614 | || xpc.xp_context == EXPAND_DIRECTORIES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 615 | || xpc.xp_context == EXPAND_SHELLCMD) && p_wmnu) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 616 | { |
| 617 | char_u upseg[5]; |
| 618 | |
| 619 | upseg[0] = PATHSEP; |
| 620 | upseg[1] = '.'; |
| 621 | upseg[2] = '.'; |
| 622 | upseg[3] = PATHSEP; |
| 623 | upseg[4] = NUL; |
| 624 | |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 625 | if (c == K_DOWN |
| 626 | && ccline.cmdpos > 0 |
| 627 | && ccline.cmdbuff[ccline.cmdpos - 1] == PATHSEP |
| 628 | && (ccline.cmdpos < 3 |
| 629 | || ccline.cmdbuff[ccline.cmdpos - 2] != '.' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 630 | || ccline.cmdbuff[ccline.cmdpos - 3] != '.')) |
| 631 | { |
| 632 | /* go down a directory */ |
| 633 | c = p_wc; |
| 634 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 635 | 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] | 636 | { |
| 637 | /* If in a direct ancestor, strip off one ../ to go down */ |
| 638 | int found = FALSE; |
| 639 | |
| 640 | j = ccline.cmdpos; |
| 641 | i = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 642 | while (--j > i) |
| 643 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 644 | #ifdef FEAT_MBYTE |
| 645 | if (has_mbyte) |
| 646 | j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); |
| 647 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 648 | if (vim_ispathsep(ccline.cmdbuff[j])) |
| 649 | { |
| 650 | found = TRUE; |
| 651 | break; |
| 652 | } |
| 653 | } |
| 654 | if (found |
| 655 | && ccline.cmdbuff[j - 1] == '.' |
| 656 | && ccline.cmdbuff[j - 2] == '.' |
| 657 | && (vim_ispathsep(ccline.cmdbuff[j - 3]) || j == i + 2)) |
| 658 | { |
| 659 | cmdline_del(j - 2); |
| 660 | c = p_wc; |
| 661 | } |
| 662 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 663 | else if (c == K_UP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 664 | { |
| 665 | /* go up a directory */ |
| 666 | int found = FALSE; |
| 667 | |
| 668 | j = ccline.cmdpos - 1; |
| 669 | i = (int)(xpc.xp_pattern - ccline.cmdbuff); |
| 670 | while (--j > i) |
| 671 | { |
| 672 | #ifdef FEAT_MBYTE |
| 673 | if (has_mbyte) |
| 674 | j -= (*mb_head_off)(ccline.cmdbuff, ccline.cmdbuff + j); |
| 675 | #endif |
| 676 | if (vim_ispathsep(ccline.cmdbuff[j]) |
| 677 | #ifdef BACKSLASH_IN_FILENAME |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 678 | && vim_strchr((char_u *)" *?[{`$%#", |
| 679 | ccline.cmdbuff[j + 1]) == NULL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 680 | #endif |
| 681 | ) |
| 682 | { |
| 683 | if (found) |
| 684 | { |
| 685 | i = j + 1; |
| 686 | break; |
| 687 | } |
| 688 | else |
| 689 | found = TRUE; |
| 690 | } |
| 691 | } |
| 692 | |
| 693 | if (!found) |
| 694 | j = i; |
| 695 | else if (STRNCMP(ccline.cmdbuff + j, upseg, 4) == 0) |
| 696 | j += 4; |
| 697 | else if (STRNCMP(ccline.cmdbuff + j, upseg + 1, 3) == 0 |
| 698 | && j == i) |
| 699 | j += 3; |
| 700 | else |
| 701 | j = 0; |
| 702 | if (j > 0) |
| 703 | { |
| 704 | /* TODO this is only for DOS/UNIX systems - need to put in |
| 705 | * machine-specific stuff here and in upseg init */ |
| 706 | cmdline_del(j); |
| 707 | put_on_cmdline(upseg + 1, 3, FALSE); |
| 708 | } |
| 709 | else if (ccline.cmdpos > i) |
| 710 | cmdline_del(i); |
Bram Moolenaar | 96a8964 | 2011-12-08 18:44:51 +0100 | [diff] [blame] | 711 | |
| 712 | /* Now complete in the new directory. Set KeyTyped in case the |
| 713 | * Up key came from a mapping. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 714 | c = p_wc; |
Bram Moolenaar | 96a8964 | 2011-12-08 18:44:51 +0100 | [diff] [blame] | 715 | KeyTyped = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 716 | } |
| 717 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 718 | |
| 719 | #endif /* FEAT_WILDMENU */ |
| 720 | |
| 721 | /* CTRL-\ CTRL-N goes to Normal mode, CTRL-\ CTRL-G goes to Insert |
| 722 | * mode when 'insertmode' is set, CTRL-\ e prompts for an expression. */ |
| 723 | if (c == Ctrl_BSL) |
| 724 | { |
| 725 | ++no_mapping; |
| 726 | ++allow_keys; |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 727 | c = plain_vgetc(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 728 | --no_mapping; |
| 729 | --allow_keys; |
Bram Moolenaar | b735681 | 2012-10-11 04:04:37 +0200 | [diff] [blame] | 730 | /* CTRL-\ e doesn't work when obtaining an expression, unless it |
| 731 | * is in a mapping. */ |
| 732 | if (c != Ctrl_N && c != Ctrl_G && (c != 'e' |
| 733 | || (ccline.cmdfirstc == '=' && KeyTyped))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 734 | { |
| 735 | vungetc(c); |
| 736 | c = Ctrl_BSL; |
| 737 | } |
| 738 | #ifdef FEAT_EVAL |
| 739 | else if (c == 'e') |
| 740 | { |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 741 | char_u *p = NULL; |
| 742 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 743 | |
| 744 | /* |
| 745 | * Replace the command line with the result of an expression. |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 746 | * Need to save and restore the current command line, to be |
| 747 | * able to enter a new one... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 748 | */ |
| 749 | if (ccline.cmdpos == ccline.cmdlen) |
| 750 | new_cmdpos = 99999; /* keep it at the end */ |
| 751 | else |
| 752 | new_cmdpos = ccline.cmdpos; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 753 | |
| 754 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 755 | c = get_expr_register(); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 756 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 757 | if (c == '=') |
| 758 | { |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 759 | /* Need to save and restore ccline. And set "textlock" |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 760 | * to avoid nasty things like going to another buffer when |
| 761 | * evaluating an expression. */ |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 762 | save_cmdline(&save_ccline); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 763 | ++textlock; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 764 | p = get_expr_line(); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 765 | --textlock; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 766 | restore_cmdline(&save_ccline); |
| 767 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 768 | if (p != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 769 | { |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 770 | len = (int)STRLEN(p); |
| 771 | if (realloc_cmdbuff(len + 1) == OK) |
| 772 | { |
| 773 | ccline.cmdlen = len; |
| 774 | STRCPY(ccline.cmdbuff, p); |
| 775 | vim_free(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 776 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 777 | /* Restore the cursor or use the position set with |
| 778 | * set_cmdline_pos(). */ |
| 779 | if (new_cmdpos > ccline.cmdlen) |
| 780 | ccline.cmdpos = ccline.cmdlen; |
| 781 | else |
| 782 | ccline.cmdpos = new_cmdpos; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 783 | |
Bram Moolenaar | fc3c83e | 2010-10-27 12:58:23 +0200 | [diff] [blame] | 784 | KeyTyped = FALSE; /* Don't do p_wc completion. */ |
| 785 | redrawcmd(); |
| 786 | goto cmdline_changed; |
| 787 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 788 | } |
| 789 | } |
| 790 | beep_flush(); |
Bram Moolenaar | 66b4bf8 | 2010-11-16 14:06:08 +0100 | [diff] [blame] | 791 | got_int = FALSE; /* don't abandon the command line */ |
| 792 | did_emsg = FALSE; |
| 793 | emsg_on_display = FALSE; |
| 794 | redrawcmd(); |
| 795 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 796 | } |
| 797 | #endif |
| 798 | else |
| 799 | { |
| 800 | if (c == Ctrl_G && p_im && restart_edit == 0) |
| 801 | restart_edit = 'a'; |
| 802 | gotesc = TRUE; /* will free ccline.cmdbuff after putting it |
| 803 | in history */ |
| 804 | goto returncmd; /* back to Normal mode */ |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | #ifdef FEAT_CMDWIN |
| 809 | if (c == cedit_key || c == K_CMDWIN) |
| 810 | { |
Bram Moolenaar | 58da707 | 2014-09-09 18:45:49 +0200 | [diff] [blame] | 811 | if (ex_normal_busy == 0 && got_int == FALSE) |
| 812 | { |
| 813 | /* |
| 814 | * Open a window to edit the command line (and history). |
| 815 | */ |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 816 | c = open_cmdwin(); |
Bram Moolenaar | 58da707 | 2014-09-09 18:45:49 +0200 | [diff] [blame] | 817 | some_key_typed = TRUE; |
| 818 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 819 | } |
| 820 | # ifdef FEAT_DIGRAPHS |
| 821 | else |
| 822 | # endif |
| 823 | #endif |
| 824 | #ifdef FEAT_DIGRAPHS |
| 825 | c = do_digraph(c); |
| 826 | #endif |
| 827 | |
| 828 | if (c == '\n' || c == '\r' || c == K_KENTER || (c == ESC |
| 829 | && (!KeyTyped || vim_strchr(p_cpo, CPO_ESC) != NULL))) |
| 830 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 831 | /* In Ex mode a backslash escapes a newline. */ |
| 832 | if (exmode_active |
| 833 | && c != ESC |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 834 | && ccline.cmdpos == ccline.cmdlen |
Bram Moolenaar | 5f2c5db | 2007-07-17 16:15:36 +0000 | [diff] [blame] | 835 | && ccline.cmdpos > 0 |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 836 | && ccline.cmdbuff[ccline.cmdpos - 1] == '\\') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 837 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 838 | if (c == K_KENTER) |
| 839 | c = '\n'; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 840 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 841 | else |
| 842 | { |
| 843 | gotesc = FALSE; /* Might have typed ESC previously, don't |
| 844 | truncate the cmdline now. */ |
| 845 | if (ccheck_abbr(c + ABBR_OFF)) |
| 846 | goto cmdline_changed; |
| 847 | if (!cmd_silent) |
| 848 | { |
| 849 | windgoto(msg_row, 0); |
| 850 | out_flush(); |
| 851 | } |
| 852 | break; |
| 853 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | /* |
| 857 | * Completion for 'wildchar' or 'wildcharm' key. |
| 858 | * - hitting <ESC> twice means: abandon command line. |
| 859 | * - wildcard expansion is only done when the 'wildchar' key is really |
| 860 | * typed, not when it comes from a macro |
| 861 | */ |
| 862 | if ((c == p_wc && !gotesc && KeyTyped) || c == p_wcm) |
| 863 | { |
| 864 | if (xpc.xp_numfiles > 0) /* typed p_wc at least twice */ |
| 865 | { |
| 866 | /* if 'wildmode' contains "list" may still need to list */ |
| 867 | if (xpc.xp_numfiles > 1 |
| 868 | && !did_wild_list |
| 869 | && (wim_flags[wim_index] & WIM_LIST)) |
| 870 | { |
| 871 | (void)showmatches(&xpc, FALSE); |
| 872 | redrawcmd(); |
| 873 | did_wild_list = TRUE; |
| 874 | } |
| 875 | if (wim_flags[wim_index] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 876 | res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 877 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | else if (wim_flags[wim_index] & WIM_FULL) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 879 | res = nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
| 880 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 881 | else |
| 882 | res = OK; /* don't insert 'wildchar' now */ |
| 883 | } |
| 884 | else /* typed p_wc first time */ |
| 885 | { |
| 886 | wim_index = 0; |
| 887 | j = ccline.cmdpos; |
| 888 | /* if 'wildmode' first contains "longest", get longest |
| 889 | * common part */ |
| 890 | if (wim_flags[0] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 891 | res = nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 892 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 893 | else |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 894 | res = nextwild(&xpc, WILD_EXPAND_KEEP, WILD_NO_BEEP, |
| 895 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 896 | |
| 897 | /* if interrupted while completing, behave like it failed */ |
| 898 | if (got_int) |
| 899 | { |
| 900 | (void)vpeekc(); /* remove <C-C> from input stream */ |
| 901 | got_int = FALSE; /* don't abandon the command line */ |
| 902 | (void)ExpandOne(&xpc, NULL, NULL, 0, WILD_FREE); |
| 903 | #ifdef FEAT_WILDMENU |
| 904 | xpc.xp_context = EXPAND_NOTHING; |
| 905 | #endif |
| 906 | goto cmdline_changed; |
| 907 | } |
| 908 | |
| 909 | /* when more than one match, and 'wildmode' first contains |
| 910 | * "list", or no change and 'wildmode' contains "longest,list", |
| 911 | * list all matches */ |
| 912 | if (res == OK && xpc.xp_numfiles > 1) |
| 913 | { |
| 914 | /* a "longest" that didn't do anything is skipped (but not |
| 915 | * "list:longest") */ |
| 916 | if (wim_flags[0] == WIM_LONGEST && ccline.cmdpos == j) |
| 917 | wim_index = 1; |
| 918 | if ((wim_flags[wim_index] & WIM_LIST) |
| 919 | #ifdef FEAT_WILDMENU |
| 920 | || (p_wmnu && (wim_flags[wim_index] & WIM_FULL) != 0) |
| 921 | #endif |
| 922 | ) |
| 923 | { |
| 924 | if (!(wim_flags[0] & WIM_LONGEST)) |
| 925 | { |
| 926 | #ifdef FEAT_WILDMENU |
| 927 | int p_wmnu_save = p_wmnu; |
| 928 | p_wmnu = 0; |
| 929 | #endif |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 930 | /* remove match */ |
| 931 | nextwild(&xpc, WILD_PREV, 0, firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 932 | #ifdef FEAT_WILDMENU |
| 933 | p_wmnu = p_wmnu_save; |
| 934 | #endif |
| 935 | } |
| 936 | #ifdef FEAT_WILDMENU |
| 937 | (void)showmatches(&xpc, p_wmnu |
| 938 | && ((wim_flags[wim_index] & WIM_LIST) == 0)); |
| 939 | #else |
| 940 | (void)showmatches(&xpc, FALSE); |
| 941 | #endif |
| 942 | redrawcmd(); |
| 943 | did_wild_list = TRUE; |
| 944 | if (wim_flags[wim_index] & WIM_LONGEST) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 945 | nextwild(&xpc, WILD_LONGEST, WILD_NO_BEEP, |
| 946 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 947 | else if (wim_flags[wim_index] & WIM_FULL) |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 948 | nextwild(&xpc, WILD_NEXT, WILD_NO_BEEP, |
| 949 | firstc != '@'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 950 | } |
| 951 | else |
Bram Moolenaar | 165bc69 | 2015-07-21 17:53:25 +0200 | [diff] [blame] | 952 | vim_beep(BO_WILD); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 953 | } |
| 954 | #ifdef FEAT_WILDMENU |
| 955 | else if (xpc.xp_numfiles == -1) |
| 956 | xpc.xp_context = EXPAND_NOTHING; |
| 957 | #endif |
| 958 | } |
| 959 | if (wim_index < 3) |
| 960 | ++wim_index; |
| 961 | if (c == ESC) |
| 962 | gotesc = TRUE; |
| 963 | if (res == OK) |
| 964 | goto cmdline_changed; |
| 965 | } |
| 966 | |
| 967 | gotesc = FALSE; |
| 968 | |
| 969 | /* <S-Tab> goes to last match, in a clumsy way */ |
| 970 | if (c == K_S_TAB && KeyTyped) |
| 971 | { |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 972 | if (nextwild(&xpc, WILD_EXPAND_KEEP, 0, firstc != '@') == OK |
| 973 | && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK |
| 974 | && nextwild(&xpc, WILD_PREV, 0, firstc != '@') == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 975 | goto cmdline_changed; |
| 976 | } |
| 977 | |
| 978 | if (c == NUL || c == K_ZERO) /* NUL is stored as NL */ |
| 979 | c = NL; |
| 980 | |
| 981 | do_abbr = TRUE; /* default: check for abbreviation */ |
| 982 | |
| 983 | /* |
| 984 | * Big switch for a typed command line character. |
| 985 | */ |
| 986 | switch (c) |
| 987 | { |
| 988 | case K_BS: |
| 989 | case Ctrl_H: |
| 990 | case K_DEL: |
| 991 | case K_KDEL: |
| 992 | case Ctrl_W: |
| 993 | #ifdef FEAT_FKMAP |
| 994 | if (cmd_fkmap && c == K_BS) |
| 995 | c = K_DEL; |
| 996 | #endif |
| 997 | if (c == K_KDEL) |
| 998 | c = K_DEL; |
| 999 | |
| 1000 | /* |
| 1001 | * delete current character is the same as backspace on next |
| 1002 | * character, except at end of line |
| 1003 | */ |
| 1004 | if (c == K_DEL && ccline.cmdpos != ccline.cmdlen) |
| 1005 | ++ccline.cmdpos; |
| 1006 | #ifdef FEAT_MBYTE |
| 1007 | if (has_mbyte && c == K_DEL) |
| 1008 | ccline.cmdpos += mb_off_next(ccline.cmdbuff, |
| 1009 | ccline.cmdbuff + ccline.cmdpos); |
| 1010 | #endif |
| 1011 | if (ccline.cmdpos > 0) |
| 1012 | { |
| 1013 | char_u *p; |
| 1014 | |
| 1015 | j = ccline.cmdpos; |
| 1016 | p = ccline.cmdbuff + j; |
| 1017 | #ifdef FEAT_MBYTE |
| 1018 | if (has_mbyte) |
| 1019 | { |
| 1020 | p = mb_prevptr(ccline.cmdbuff, p); |
| 1021 | if (c == Ctrl_W) |
| 1022 | { |
| 1023 | while (p > ccline.cmdbuff && vim_isspace(*p)) |
| 1024 | p = mb_prevptr(ccline.cmdbuff, p); |
| 1025 | i = mb_get_class(p); |
| 1026 | while (p > ccline.cmdbuff && mb_get_class(p) == i) |
| 1027 | p = mb_prevptr(ccline.cmdbuff, p); |
| 1028 | if (mb_get_class(p) != i) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1029 | p += (*mb_ptr2len)(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1030 | } |
| 1031 | } |
| 1032 | else |
| 1033 | #endif |
| 1034 | if (c == Ctrl_W) |
| 1035 | { |
| 1036 | while (p > ccline.cmdbuff && vim_isspace(p[-1])) |
| 1037 | --p; |
| 1038 | i = vim_iswordc(p[-1]); |
| 1039 | while (p > ccline.cmdbuff && !vim_isspace(p[-1]) |
| 1040 | && vim_iswordc(p[-1]) == i) |
| 1041 | --p; |
| 1042 | } |
| 1043 | else |
| 1044 | --p; |
| 1045 | ccline.cmdpos = (int)(p - ccline.cmdbuff); |
| 1046 | ccline.cmdlen -= j - ccline.cmdpos; |
| 1047 | i = ccline.cmdpos; |
| 1048 | while (i < ccline.cmdlen) |
| 1049 | ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; |
| 1050 | |
| 1051 | /* Truncate at the end, required for multi-byte chars. */ |
| 1052 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1053 | #ifdef FEAT_SEARCH_EXTRA |
| 1054 | if (ccline.cmdlen == 0) |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1055 | { |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1056 | search_start = save_cursor; |
| 1057 | /* save view settings, so that the screen |
| 1058 | * won't be restored at the wrong position */ |
| 1059 | old_curswant = init_curswant; |
| 1060 | old_leftcol = init_leftcol; |
| 1061 | old_topline = init_topline; |
| 1062 | # ifdef FEAT_DIFF |
| 1063 | old_topfill = init_topfill; |
| 1064 | # endif |
| 1065 | old_botline = init_botline; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1066 | } |
| 1067 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1068 | redrawcmd(); |
| 1069 | } |
| 1070 | else if (ccline.cmdlen == 0 && c != Ctrl_W |
| 1071 | && ccline.cmdprompt == NULL && indent == 0) |
| 1072 | { |
| 1073 | /* In ex and debug mode it doesn't make sense to return. */ |
| 1074 | if (exmode_active |
| 1075 | #ifdef FEAT_EVAL |
| 1076 | || ccline.cmdfirstc == '>' |
| 1077 | #endif |
| 1078 | ) |
| 1079 | goto cmdline_not_changed; |
| 1080 | |
| 1081 | vim_free(ccline.cmdbuff); /* no commandline to return */ |
| 1082 | ccline.cmdbuff = NULL; |
| 1083 | if (!cmd_silent) |
| 1084 | { |
| 1085 | #ifdef FEAT_RIGHTLEFT |
| 1086 | if (cmdmsg_rl) |
| 1087 | msg_col = Columns; |
| 1088 | else |
| 1089 | #endif |
| 1090 | msg_col = 0; |
| 1091 | msg_putchar(' '); /* delete ':' */ |
| 1092 | } |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1093 | #ifdef FEAT_SEARCH_EXTRA |
| 1094 | if (ccline.cmdlen == 0) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1095 | search_start = save_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1096 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1097 | redraw_cmdline = TRUE; |
| 1098 | goto returncmd; /* back to cmd mode */ |
| 1099 | } |
| 1100 | goto cmdline_changed; |
| 1101 | |
| 1102 | case K_INS: |
| 1103 | case K_KINS: |
| 1104 | #ifdef FEAT_FKMAP |
| 1105 | /* if Farsi mode set, we are in reverse insert mode - |
| 1106 | Do not change the mode */ |
| 1107 | if (cmd_fkmap) |
| 1108 | beep_flush(); |
| 1109 | else |
| 1110 | #endif |
| 1111 | ccline.overstrike = !ccline.overstrike; |
| 1112 | #ifdef CURSOR_SHAPE |
| 1113 | ui_cursor_shape(); /* may show different cursor shape */ |
| 1114 | #endif |
| 1115 | goto cmdline_not_changed; |
| 1116 | |
| 1117 | case Ctrl_HAT: |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 1118 | if (map_to_exists_mode((char_u *)"", LANGMAP, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1119 | { |
| 1120 | /* ":lmap" mappings exists, toggle use of mappings. */ |
| 1121 | State ^= LANGMAP; |
Bram Moolenaar | 819edbe | 2017-11-25 17:14:33 +0100 | [diff] [blame] | 1122 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1123 | im_set_active(FALSE); /* Disable input method */ |
| 1124 | #endif |
| 1125 | if (b_im_ptr != NULL) |
| 1126 | { |
| 1127 | if (State & LANGMAP) |
| 1128 | *b_im_ptr = B_IMODE_LMAP; |
| 1129 | else |
| 1130 | *b_im_ptr = B_IMODE_NONE; |
| 1131 | } |
| 1132 | } |
Bram Moolenaar | 819edbe | 2017-11-25 17:14:33 +0100 | [diff] [blame] | 1133 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1134 | else |
| 1135 | { |
| 1136 | /* There are no ":lmap" mappings, toggle IM. When |
| 1137 | * 'imdisable' is set don't try getting the status, it's |
| 1138 | * always off. */ |
| 1139 | if ((p_imdisable && b_im_ptr != NULL) |
| 1140 | ? *b_im_ptr == B_IMODE_IM : im_get_status()) |
| 1141 | { |
| 1142 | im_set_active(FALSE); /* Disable input method */ |
| 1143 | if (b_im_ptr != NULL) |
| 1144 | *b_im_ptr = B_IMODE_NONE; |
| 1145 | } |
| 1146 | else |
| 1147 | { |
| 1148 | im_set_active(TRUE); /* Enable input method */ |
| 1149 | if (b_im_ptr != NULL) |
| 1150 | *b_im_ptr = B_IMODE_IM; |
| 1151 | } |
| 1152 | } |
| 1153 | #endif |
| 1154 | if (b_im_ptr != NULL) |
| 1155 | { |
| 1156 | if (b_im_ptr == &curbuf->b_p_iminsert) |
| 1157 | set_iminsert_global(); |
| 1158 | else |
| 1159 | set_imsearch_global(); |
| 1160 | } |
| 1161 | #ifdef CURSOR_SHAPE |
| 1162 | ui_cursor_shape(); /* may show different cursor shape */ |
| 1163 | #endif |
Bram Moolenaar | 4033c55 | 2017-09-16 20:54:51 +0200 | [diff] [blame] | 1164 | #if defined(FEAT_KEYMAP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1165 | /* Show/unshow value of 'keymap' in status lines later. */ |
| 1166 | status_redraw_curbuf(); |
| 1167 | #endif |
| 1168 | goto cmdline_not_changed; |
| 1169 | |
| 1170 | /* case '@': only in very old vi */ |
| 1171 | case Ctrl_U: |
| 1172 | /* delete all characters left of the cursor */ |
| 1173 | j = ccline.cmdpos; |
| 1174 | ccline.cmdlen -= j; |
| 1175 | i = ccline.cmdpos = 0; |
| 1176 | while (i < ccline.cmdlen) |
| 1177 | ccline.cmdbuff[i++] = ccline.cmdbuff[j++]; |
| 1178 | /* Truncate at the end, required for multi-byte chars. */ |
| 1179 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1180 | #ifdef FEAT_SEARCH_EXTRA |
| 1181 | if (ccline.cmdlen == 0) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1182 | search_start = save_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1183 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1184 | redrawcmd(); |
| 1185 | goto cmdline_changed; |
| 1186 | |
| 1187 | #ifdef FEAT_CLIPBOARD |
| 1188 | case Ctrl_Y: |
| 1189 | /* Copy the modeless selection, if there is one. */ |
| 1190 | if (clip_star.state != SELECT_CLEARED) |
| 1191 | { |
| 1192 | if (clip_star.state == SELECT_DONE) |
| 1193 | clip_copy_modeless_selection(TRUE); |
| 1194 | goto cmdline_not_changed; |
| 1195 | } |
| 1196 | break; |
| 1197 | #endif |
| 1198 | |
| 1199 | case ESC: /* get here if p_wc != ESC or when ESC typed twice */ |
| 1200 | case Ctrl_C: |
Bram Moolenaar | f4d1145 | 2005-12-02 00:46:37 +0000 | [diff] [blame] | 1201 | /* In exmode it doesn't make sense to return. Except when |
Bram Moolenaar | 7c62692 | 2005-02-07 22:01:03 +0000 | [diff] [blame] | 1202 | * ":normal" runs out of characters. */ |
| 1203 | if (exmode_active |
Bram Moolenaar | e2c3810 | 2016-01-31 14:55:40 +0100 | [diff] [blame] | 1204 | && (ex_normal_busy == 0 || typebuf.tb_len > 0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1205 | goto cmdline_not_changed; |
| 1206 | |
| 1207 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1208 | putting it in history */ |
| 1209 | goto returncmd; /* back to cmd mode */ |
| 1210 | |
| 1211 | case Ctrl_R: /* insert register */ |
| 1212 | #ifdef USE_ON_FLY_SCROLL |
| 1213 | dont_scroll = TRUE; /* disallow scrolling here */ |
| 1214 | #endif |
| 1215 | putcmdline('"', TRUE); |
| 1216 | ++no_mapping; |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 1217 | i = c = plain_vgetc(); /* CTRL-R <char> */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1218 | if (i == Ctrl_O) |
| 1219 | i = Ctrl_R; /* CTRL-R CTRL-O == CTRL-R CTRL-R */ |
| 1220 | if (i == Ctrl_R) |
Bram Moolenaar | 61abfd1 | 2007-09-13 16:26:47 +0000 | [diff] [blame] | 1221 | c = plain_vgetc(); /* CTRL-R CTRL-R <char> */ |
Bram Moolenaar | a92522f | 2017-07-15 15:21:38 +0200 | [diff] [blame] | 1222 | extra_char = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1223 | --no_mapping; |
| 1224 | #ifdef FEAT_EVAL |
| 1225 | /* |
| 1226 | * Insert the result of an expression. |
| 1227 | * Need to save the current command line, to be able to enter |
| 1228 | * a new one... |
| 1229 | */ |
| 1230 | new_cmdpos = -1; |
| 1231 | if (c == '=') |
| 1232 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1233 | if (ccline.cmdfirstc == '=')/* can't do this recursively */ |
| 1234 | { |
| 1235 | beep_flush(); |
| 1236 | c = ESC; |
| 1237 | } |
| 1238 | else |
| 1239 | { |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 1240 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1241 | c = get_expr_register(); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 1242 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1243 | } |
| 1244 | } |
| 1245 | #endif |
| 1246 | if (c != ESC) /* use ESC to cancel inserting register */ |
| 1247 | { |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1248 | cmdline_paste(c, i == Ctrl_R, FALSE); |
Bram Moolenaar | acf5345 | 2005-12-17 22:06:52 +0000 | [diff] [blame] | 1249 | |
Bram Moolenaar | a9b1e74 | 2005-12-19 22:14:58 +0000 | [diff] [blame] | 1250 | #ifdef FEAT_EVAL |
Bram Moolenaar | acf5345 | 2005-12-17 22:06:52 +0000 | [diff] [blame] | 1251 | /* When there was a serious error abort getting the |
| 1252 | * command line. */ |
| 1253 | if (aborting()) |
| 1254 | { |
| 1255 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1256 | putting it in history */ |
| 1257 | goto returncmd; /* back to cmd mode */ |
| 1258 | } |
Bram Moolenaar | a9b1e74 | 2005-12-19 22:14:58 +0000 | [diff] [blame] | 1259 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1260 | KeyTyped = FALSE; /* Don't do p_wc completion. */ |
| 1261 | #ifdef FEAT_EVAL |
| 1262 | if (new_cmdpos >= 0) |
| 1263 | { |
| 1264 | /* set_cmdline_pos() was used */ |
| 1265 | if (new_cmdpos > ccline.cmdlen) |
| 1266 | ccline.cmdpos = ccline.cmdlen; |
| 1267 | else |
| 1268 | ccline.cmdpos = new_cmdpos; |
| 1269 | } |
| 1270 | #endif |
| 1271 | } |
| 1272 | redrawcmd(); |
| 1273 | goto cmdline_changed; |
| 1274 | |
| 1275 | case Ctrl_D: |
| 1276 | if (showmatches(&xpc, FALSE) == EXPAND_NOTHING) |
| 1277 | break; /* Use ^D as normal char instead */ |
| 1278 | |
| 1279 | redrawcmd(); |
| 1280 | continue; /* don't do incremental search now */ |
| 1281 | |
| 1282 | case K_RIGHT: |
| 1283 | case K_S_RIGHT: |
| 1284 | case K_C_RIGHT: |
| 1285 | do |
| 1286 | { |
| 1287 | if (ccline.cmdpos >= ccline.cmdlen) |
| 1288 | break; |
| 1289 | i = cmdline_charsize(ccline.cmdpos); |
| 1290 | if (KeyTyped && ccline.cmdspos + i >= Columns * Rows) |
| 1291 | break; |
| 1292 | ccline.cmdspos += i; |
| 1293 | #ifdef FEAT_MBYTE |
| 1294 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1295 | ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1296 | + ccline.cmdpos); |
| 1297 | else |
| 1298 | #endif |
| 1299 | ++ccline.cmdpos; |
| 1300 | } |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1301 | while ((c == K_S_RIGHT || c == K_C_RIGHT |
| 1302 | || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1303 | && ccline.cmdbuff[ccline.cmdpos] != ' '); |
| 1304 | #ifdef FEAT_MBYTE |
| 1305 | if (has_mbyte) |
| 1306 | set_cmdspos_cursor(); |
| 1307 | #endif |
| 1308 | goto cmdline_not_changed; |
| 1309 | |
| 1310 | case K_LEFT: |
| 1311 | case K_S_LEFT: |
| 1312 | case K_C_LEFT: |
Bram Moolenaar | 49feabd | 2007-12-07 19:28:58 +0000 | [diff] [blame] | 1313 | if (ccline.cmdpos == 0) |
| 1314 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1315 | do |
| 1316 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1317 | --ccline.cmdpos; |
| 1318 | #ifdef FEAT_MBYTE |
| 1319 | if (has_mbyte) /* move to first byte of char */ |
| 1320 | ccline.cmdpos -= (*mb_head_off)(ccline.cmdbuff, |
| 1321 | ccline.cmdbuff + ccline.cmdpos); |
| 1322 | #endif |
| 1323 | ccline.cmdspos -= cmdline_charsize(ccline.cmdpos); |
| 1324 | } |
Bram Moolenaar | 49feabd | 2007-12-07 19:28:58 +0000 | [diff] [blame] | 1325 | while (ccline.cmdpos > 0 |
| 1326 | && (c == K_S_LEFT || c == K_C_LEFT |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1327 | || (mod_mask & (MOD_MASK_SHIFT|MOD_MASK_CTRL))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1328 | && ccline.cmdbuff[ccline.cmdpos - 1] != ' '); |
| 1329 | #ifdef FEAT_MBYTE |
| 1330 | if (has_mbyte) |
| 1331 | set_cmdspos_cursor(); |
| 1332 | #endif |
| 1333 | goto cmdline_not_changed; |
| 1334 | |
| 1335 | case K_IGNORE: |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 1336 | /* Ignore mouse event or open_cmdwin() result. */ |
Bram Moolenaar | 30405d3 | 2008-01-02 20:55:27 +0000 | [diff] [blame] | 1337 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1338 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 1339 | #ifdef FEAT_GUI_W32 |
| 1340 | /* On Win32 ignore <M-F4>, we get it when closing the window was |
| 1341 | * cancelled. */ |
| 1342 | case K_F4: |
| 1343 | if (mod_mask == MOD_MASK_ALT) |
| 1344 | { |
| 1345 | redrawcmd(); /* somehow the cmdline is cleared */ |
| 1346 | goto cmdline_not_changed; |
| 1347 | } |
| 1348 | break; |
| 1349 | #endif |
| 1350 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1351 | #ifdef FEAT_MOUSE |
| 1352 | case K_MIDDLEDRAG: |
| 1353 | case K_MIDDLERELEASE: |
| 1354 | goto cmdline_not_changed; /* Ignore mouse */ |
| 1355 | |
| 1356 | case K_MIDDLEMOUSE: |
| 1357 | # ifdef FEAT_GUI |
| 1358 | /* When GUI is active, also paste when 'mouse' is empty */ |
| 1359 | if (!gui.in_use) |
| 1360 | # endif |
| 1361 | if (!mouse_has(MOUSE_COMMAND)) |
| 1362 | goto cmdline_not_changed; /* Ignore mouse */ |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1363 | # ifdef FEAT_CLIPBOARD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1364 | if (clip_star.available) |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1365 | cmdline_paste('*', TRUE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1366 | else |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1367 | # endif |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1368 | cmdline_paste(0, TRUE, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1369 | redrawcmd(); |
| 1370 | goto cmdline_changed; |
| 1371 | |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1372 | # ifdef FEAT_DND |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1373 | case K_DROP: |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 1374 | cmdline_paste('~', TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1375 | redrawcmd(); |
| 1376 | goto cmdline_changed; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1377 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1378 | |
| 1379 | case K_LEFTDRAG: |
| 1380 | case K_LEFTRELEASE: |
| 1381 | case K_RIGHTDRAG: |
| 1382 | case K_RIGHTRELEASE: |
| 1383 | /* Ignore drag and release events when the button-down wasn't |
| 1384 | * seen before. */ |
| 1385 | if (ignore_drag_release) |
| 1386 | goto cmdline_not_changed; |
| 1387 | /* FALLTHROUGH */ |
| 1388 | case K_LEFTMOUSE: |
| 1389 | case K_RIGHTMOUSE: |
| 1390 | if (c == K_LEFTRELEASE || c == K_RIGHTRELEASE) |
| 1391 | ignore_drag_release = TRUE; |
| 1392 | else |
| 1393 | ignore_drag_release = FALSE; |
| 1394 | # ifdef FEAT_GUI |
| 1395 | /* When GUI is active, also move when 'mouse' is empty */ |
| 1396 | if (!gui.in_use) |
| 1397 | # endif |
| 1398 | if (!mouse_has(MOUSE_COMMAND)) |
| 1399 | goto cmdline_not_changed; /* Ignore mouse */ |
| 1400 | # ifdef FEAT_CLIPBOARD |
| 1401 | if (mouse_row < cmdline_row && clip_star.available) |
| 1402 | { |
| 1403 | int button, is_click, is_drag; |
| 1404 | |
| 1405 | /* |
| 1406 | * Handle modeless selection. |
| 1407 | */ |
| 1408 | button = get_mouse_button(KEY2TERMCAP1(c), |
| 1409 | &is_click, &is_drag); |
| 1410 | if (mouse_model_popup() && button == MOUSE_LEFT |
| 1411 | && (mod_mask & MOD_MASK_SHIFT)) |
| 1412 | { |
| 1413 | /* Translate shift-left to right button. */ |
| 1414 | button = MOUSE_RIGHT; |
| 1415 | mod_mask &= ~MOD_MASK_SHIFT; |
| 1416 | } |
| 1417 | clip_modeless(button, is_click, is_drag); |
| 1418 | goto cmdline_not_changed; |
| 1419 | } |
| 1420 | # endif |
| 1421 | |
| 1422 | set_cmdspos(); |
| 1423 | for (ccline.cmdpos = 0; ccline.cmdpos < ccline.cmdlen; |
| 1424 | ++ccline.cmdpos) |
| 1425 | { |
| 1426 | i = cmdline_charsize(ccline.cmdpos); |
| 1427 | if (mouse_row <= cmdline_row + ccline.cmdspos / Columns |
| 1428 | && mouse_col < ccline.cmdspos % Columns + i) |
| 1429 | break; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1430 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1431 | if (has_mbyte) |
| 1432 | { |
| 1433 | /* Count ">" for double-wide char that doesn't fit. */ |
| 1434 | correct_cmdspos(ccline.cmdpos, i); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 1435 | ccline.cmdpos += (*mb_ptr2len)(ccline.cmdbuff |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1436 | + ccline.cmdpos) - 1; |
| 1437 | } |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1438 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1439 | ccline.cmdspos += i; |
| 1440 | } |
| 1441 | goto cmdline_not_changed; |
| 1442 | |
| 1443 | /* Mouse scroll wheel: ignored here */ |
| 1444 | case K_MOUSEDOWN: |
| 1445 | case K_MOUSEUP: |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 1446 | case K_MOUSELEFT: |
| 1447 | case K_MOUSERIGHT: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1448 | /* Alternate buttons ignored here */ |
| 1449 | case K_X1MOUSE: |
| 1450 | case K_X1DRAG: |
| 1451 | case K_X1RELEASE: |
| 1452 | case K_X2MOUSE: |
| 1453 | case K_X2DRAG: |
| 1454 | case K_X2RELEASE: |
Bram Moolenaar | 51b0f37 | 2017-11-18 18:52:04 +0100 | [diff] [blame] | 1455 | case K_MOUSEMOVE: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1456 | goto cmdline_not_changed; |
| 1457 | |
| 1458 | #endif /* FEAT_MOUSE */ |
| 1459 | |
| 1460 | #ifdef FEAT_GUI |
| 1461 | case K_LEFTMOUSE_NM: /* mousefocus click, ignored */ |
| 1462 | case K_LEFTRELEASE_NM: |
| 1463 | goto cmdline_not_changed; |
| 1464 | |
| 1465 | case K_VER_SCROLLBAR: |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 1466 | if (msg_scrolled == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1467 | { |
| 1468 | gui_do_scroll(); |
| 1469 | redrawcmd(); |
| 1470 | } |
| 1471 | goto cmdline_not_changed; |
| 1472 | |
| 1473 | case K_HOR_SCROLLBAR: |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 1474 | if (msg_scrolled == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1475 | { |
Bram Moolenaar | 8d9b40e | 2010-07-25 15:49:07 +0200 | [diff] [blame] | 1476 | gui_do_horiz_scroll(scrollbar_value, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1477 | redrawcmd(); |
| 1478 | } |
| 1479 | goto cmdline_not_changed; |
| 1480 | #endif |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1481 | #ifdef FEAT_GUI_TABLINE |
| 1482 | case K_TABLINE: |
| 1483 | case K_TABMENU: |
| 1484 | /* Don't want to change any tabs here. Make sure the same tab |
| 1485 | * is still selected. */ |
| 1486 | if (gui_use_tabline()) |
| 1487 | gui_mch_set_curtab(tabpage_index(curtab)); |
| 1488 | goto cmdline_not_changed; |
| 1489 | #endif |
| 1490 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1491 | case K_SELECT: /* end of Select mode mapping - ignore */ |
| 1492 | goto cmdline_not_changed; |
| 1493 | |
| 1494 | case Ctrl_B: /* begin of command line */ |
| 1495 | case K_HOME: |
| 1496 | case K_KHOME: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1497 | case K_S_HOME: |
| 1498 | case K_C_HOME: |
| 1499 | ccline.cmdpos = 0; |
| 1500 | set_cmdspos(); |
| 1501 | goto cmdline_not_changed; |
| 1502 | |
| 1503 | case Ctrl_E: /* end of command line */ |
| 1504 | case K_END: |
| 1505 | case K_KEND: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1506 | case K_S_END: |
| 1507 | case K_C_END: |
| 1508 | ccline.cmdpos = ccline.cmdlen; |
| 1509 | set_cmdspos_cursor(); |
| 1510 | goto cmdline_not_changed; |
| 1511 | |
| 1512 | case Ctrl_A: /* all matches */ |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1513 | if (nextwild(&xpc, WILD_ALL, 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1514 | break; |
| 1515 | goto cmdline_changed; |
| 1516 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1517 | case Ctrl_L: |
| 1518 | #ifdef FEAT_SEARCH_EXTRA |
| 1519 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1520 | { |
| 1521 | /* Add a character from under the cursor for 'incsearch' */ |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1522 | if (did_incsearch) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1523 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1524 | curwin->w_cursor = match_end; |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 1525 | if (!EQUAL_POS(curwin->w_cursor, search_start)) |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1526 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1527 | c = gchar_cursor(); |
| 1528 | /* If 'ignorecase' and 'smartcase' are set and the |
| 1529 | * command line has no uppercase characters, convert |
| 1530 | * the character to lowercase */ |
| 1531 | if (p_ic && p_scs |
| 1532 | && !pat_has_uppercase(ccline.cmdbuff)) |
| 1533 | c = MB_TOLOWER(c); |
| 1534 | if (c != NUL) |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1535 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1536 | if (c == firstc || vim_strchr((char_u *)( |
Bram Moolenaar | a693d05 | 2017-06-29 22:23:06 +0200 | [diff] [blame] | 1537 | p_magic ? "\\~^$.*[" : "\\^$"), c) |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 1538 | != NULL) |
| 1539 | { |
| 1540 | /* put a backslash before special |
| 1541 | * characters */ |
| 1542 | stuffcharReadbuff(c); |
| 1543 | c = '\\'; |
| 1544 | } |
| 1545 | break; |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1546 | } |
Bram Moolenaar | 93db975 | 2006-11-21 10:29:45 +0000 | [diff] [blame] | 1547 | } |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1548 | } |
| 1549 | goto cmdline_not_changed; |
| 1550 | } |
| 1551 | #endif |
| 1552 | |
| 1553 | /* completion: longest common part */ |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1554 | if (nextwild(&xpc, WILD_LONGEST, 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1555 | break; |
| 1556 | goto cmdline_changed; |
| 1557 | |
| 1558 | case Ctrl_N: /* next match */ |
| 1559 | case Ctrl_P: /* previous match */ |
Bram Moolenaar | 7df0f63 | 2016-08-26 19:56:00 +0200 | [diff] [blame] | 1560 | if (xpc.xp_numfiles > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1561 | { |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 1562 | if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT, |
| 1563 | 0, firstc != '@') == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1564 | break; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1565 | goto cmdline_not_changed; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1566 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1567 | #ifdef FEAT_CMDHIST |
Bram Moolenaar | 2f40d12 | 2017-10-24 21:49:36 +0200 | [diff] [blame] | 1568 | /* FALLTHROUGH */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1569 | case K_UP: |
| 1570 | case K_DOWN: |
| 1571 | case K_S_UP: |
| 1572 | case K_S_DOWN: |
| 1573 | case K_PAGEUP: |
| 1574 | case K_KPAGEUP: |
| 1575 | case K_PAGEDOWN: |
| 1576 | case K_KPAGEDOWN: |
| 1577 | if (hislen == 0 || firstc == NUL) /* no history */ |
| 1578 | goto cmdline_not_changed; |
| 1579 | |
| 1580 | i = hiscnt; |
| 1581 | |
| 1582 | /* save current command string so it can be restored later */ |
| 1583 | if (lookfor == NULL) |
| 1584 | { |
| 1585 | if ((lookfor = vim_strsave(ccline.cmdbuff)) == NULL) |
| 1586 | goto cmdline_not_changed; |
| 1587 | lookfor[ccline.cmdpos] = NUL; |
| 1588 | } |
| 1589 | |
| 1590 | j = (int)STRLEN(lookfor); |
| 1591 | for (;;) |
| 1592 | { |
| 1593 | /* one step backwards */ |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 1594 | if (c == K_UP|| c == K_S_UP || c == Ctrl_P |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1595 | || c == K_PAGEUP || c == K_KPAGEUP) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1596 | { |
| 1597 | if (hiscnt == hislen) /* first time */ |
| 1598 | hiscnt = hisidx[histype]; |
| 1599 | else if (hiscnt == 0 && hisidx[histype] != hislen - 1) |
| 1600 | hiscnt = hislen - 1; |
| 1601 | else if (hiscnt != hisidx[histype] + 1) |
| 1602 | --hiscnt; |
| 1603 | else /* at top of list */ |
| 1604 | { |
| 1605 | hiscnt = i; |
| 1606 | break; |
| 1607 | } |
| 1608 | } |
| 1609 | else /* one step forwards */ |
| 1610 | { |
| 1611 | /* on last entry, clear the line */ |
| 1612 | if (hiscnt == hisidx[histype]) |
| 1613 | { |
| 1614 | hiscnt = hislen; |
| 1615 | break; |
| 1616 | } |
| 1617 | |
| 1618 | /* not on a history line, nothing to do */ |
| 1619 | if (hiscnt == hislen) |
| 1620 | break; |
| 1621 | if (hiscnt == hislen - 1) /* wrap around */ |
| 1622 | hiscnt = 0; |
| 1623 | else |
| 1624 | ++hiscnt; |
| 1625 | } |
| 1626 | if (hiscnt < 0 || history[histype][hiscnt].hisstr == NULL) |
| 1627 | { |
| 1628 | hiscnt = i; |
| 1629 | break; |
| 1630 | } |
Bram Moolenaar | 68b76a6 | 2005-03-25 21:53:48 +0000 | [diff] [blame] | 1631 | if ((c != K_UP && c != K_DOWN) |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1632 | || hiscnt == i |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1633 | || STRNCMP(history[histype][hiscnt].hisstr, |
| 1634 | lookfor, (size_t)j) == 0) |
| 1635 | break; |
| 1636 | } |
| 1637 | |
| 1638 | if (hiscnt != i) /* jumped to other entry */ |
| 1639 | { |
| 1640 | char_u *p; |
| 1641 | int len; |
| 1642 | int old_firstc; |
| 1643 | |
| 1644 | vim_free(ccline.cmdbuff); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 1645 | xpc.xp_context = EXPAND_NOTHING; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1646 | if (hiscnt == hislen) |
| 1647 | p = lookfor; /* back to the old one */ |
| 1648 | else |
| 1649 | p = history[histype][hiscnt].hisstr; |
| 1650 | |
| 1651 | if (histype == HIST_SEARCH |
| 1652 | && p != lookfor |
| 1653 | && (old_firstc = p[STRLEN(p) + 1]) != firstc) |
| 1654 | { |
| 1655 | /* Correct for the separator character used when |
| 1656 | * adding the history entry vs the one used now. |
| 1657 | * First loop: count length. |
| 1658 | * Second loop: copy the characters. */ |
| 1659 | for (i = 0; i <= 1; ++i) |
| 1660 | { |
| 1661 | len = 0; |
| 1662 | for (j = 0; p[j] != NUL; ++j) |
| 1663 | { |
| 1664 | /* Replace old sep with new sep, unless it is |
| 1665 | * escaped. */ |
| 1666 | if (p[j] == old_firstc |
| 1667 | && (j == 0 || p[j - 1] != '\\')) |
| 1668 | { |
| 1669 | if (i > 0) |
| 1670 | ccline.cmdbuff[len] = firstc; |
| 1671 | } |
| 1672 | else |
| 1673 | { |
| 1674 | /* Escape new sep, unless it is already |
| 1675 | * escaped. */ |
| 1676 | if (p[j] == firstc |
| 1677 | && (j == 0 || p[j - 1] != '\\')) |
| 1678 | { |
| 1679 | if (i > 0) |
| 1680 | ccline.cmdbuff[len] = '\\'; |
| 1681 | ++len; |
| 1682 | } |
| 1683 | if (i > 0) |
| 1684 | ccline.cmdbuff[len] = p[j]; |
| 1685 | } |
| 1686 | ++len; |
| 1687 | } |
| 1688 | if (i == 0) |
| 1689 | { |
| 1690 | alloc_cmdbuff(len); |
| 1691 | if (ccline.cmdbuff == NULL) |
| 1692 | goto returncmd; |
| 1693 | } |
| 1694 | } |
| 1695 | ccline.cmdbuff[len] = NUL; |
| 1696 | } |
| 1697 | else |
| 1698 | { |
| 1699 | alloc_cmdbuff((int)STRLEN(p)); |
| 1700 | if (ccline.cmdbuff == NULL) |
| 1701 | goto returncmd; |
| 1702 | STRCPY(ccline.cmdbuff, p); |
| 1703 | } |
| 1704 | |
| 1705 | ccline.cmdpos = ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); |
| 1706 | redrawcmd(); |
| 1707 | goto cmdline_changed; |
| 1708 | } |
| 1709 | beep_flush(); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1710 | #endif |
| 1711 | goto cmdline_not_changed; |
| 1712 | |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1713 | #ifdef FEAT_SEARCH_EXTRA |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1714 | case Ctrl_G: /* next match */ |
| 1715 | case Ctrl_T: /* previous match */ |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1716 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1717 | { |
| 1718 | pos_T t; |
Bram Moolenaar | d048009 | 2017-11-16 22:20:39 +0100 | [diff] [blame] | 1719 | char_u *pat; |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1720 | int search_flags = SEARCH_NOOF; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1721 | |
Bram Moolenaar | f8f8b2e | 2017-11-02 19:08:48 +0100 | [diff] [blame] | 1722 | if (ccline.cmdlen == 0) |
| 1723 | goto cmdline_not_changed; |
| 1724 | |
Bram Moolenaar | d048009 | 2017-11-16 22:20:39 +0100 | [diff] [blame] | 1725 | if (firstc == ccline.cmdbuff[0]) |
| 1726 | pat = last_search_pattern(); |
| 1727 | else |
| 1728 | pat = ccline.cmdbuff; |
| 1729 | |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1730 | save_last_search_pattern(); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1731 | cursor_off(); |
| 1732 | out_flush(); |
| 1733 | if (c == Ctrl_G) |
| 1734 | { |
| 1735 | t = match_end; |
Bram Moolenaar | f8f8b2e | 2017-11-02 19:08:48 +0100 | [diff] [blame] | 1736 | if (LT_POS(match_start, match_end)) |
| 1737 | /* start searching at the end of the match |
| 1738 | * not at the beginning of the next column */ |
| 1739 | (void)decl(&t); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1740 | search_flags += SEARCH_COL; |
| 1741 | } |
| 1742 | else |
| 1743 | t = match_start; |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1744 | if (!p_hls) |
| 1745 | search_flags += SEARCH_KEEP; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1746 | ++emsg_off; |
| 1747 | i = searchit(curwin, curbuf, &t, |
| 1748 | c == Ctrl_G ? FORWARD : BACKWARD, |
Bram Moolenaar | d048009 | 2017-11-16 22:20:39 +0100 | [diff] [blame] | 1749 | pat, count, search_flags, |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1750 | RE_SEARCH, 0, NULL, NULL); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1751 | --emsg_off; |
| 1752 | if (i) |
| 1753 | { |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1754 | search_start = match_start; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1755 | match_end = t; |
| 1756 | match_start = t; |
| 1757 | if (c == Ctrl_T && firstc == '/') |
| 1758 | { |
| 1759 | /* move just before the current match, so that |
| 1760 | * when nv_search finishes the cursor will be |
| 1761 | * put back on the match */ |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1762 | search_start = t; |
| 1763 | (void)decl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1764 | } |
Bram Moolenaar | da5116d | 2017-07-01 23:11:17 +0200 | [diff] [blame] | 1765 | else if (c == Ctrl_G && firstc == '?') |
| 1766 | { |
| 1767 | /* move just after the current match, so that |
| 1768 | * when nv_search finishes the cursor will be |
| 1769 | * put back on the match */ |
| 1770 | search_start = t; |
| 1771 | (void)incl(&search_start); |
| 1772 | } |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 1773 | if (LT_POS(t, search_start) && c == Ctrl_G) |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1774 | { |
| 1775 | /* wrap around */ |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1776 | search_start = t; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1777 | if (firstc == '?') |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1778 | (void)incl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1779 | else |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1780 | (void)decl(&search_start); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1781 | } |
| 1782 | |
| 1783 | set_search_match(&match_end); |
| 1784 | curwin->w_cursor = match_start; |
| 1785 | changed_cline_bef_curs(); |
| 1786 | update_topline(); |
| 1787 | validate_cursor(); |
| 1788 | highlight_match = TRUE; |
| 1789 | old_curswant = curwin->w_curswant; |
| 1790 | old_leftcol = curwin->w_leftcol; |
| 1791 | old_topline = curwin->w_topline; |
| 1792 | # ifdef FEAT_DIFF |
| 1793 | old_topfill = curwin->w_topfill; |
| 1794 | # endif |
| 1795 | old_botline = curwin->w_botline; |
| 1796 | update_screen(NOT_VALID); |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1797 | restore_last_search_pattern(); |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1798 | redrawcmdline(); |
| 1799 | } |
| 1800 | else |
| 1801 | vim_beep(BO_ERROR); |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1802 | goto cmdline_not_changed; |
Bram Moolenaar | 1195669 | 2016-08-27 16:26:56 +0200 | [diff] [blame] | 1803 | } |
Bram Moolenaar | 349e7d9 | 2016-09-03 20:04:34 +0200 | [diff] [blame] | 1804 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1805 | #endif |
| 1806 | |
| 1807 | case Ctrl_V: |
| 1808 | case Ctrl_Q: |
| 1809 | #ifdef FEAT_MOUSE |
| 1810 | ignore_drag_release = TRUE; |
| 1811 | #endif |
| 1812 | putcmdline('^', TRUE); |
| 1813 | c = get_literal(); /* get next (two) character(s) */ |
| 1814 | do_abbr = FALSE; /* don't do abbreviation now */ |
Bram Moolenaar | a92522f | 2017-07-15 15:21:38 +0200 | [diff] [blame] | 1815 | extra_char = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1816 | #ifdef FEAT_MBYTE |
| 1817 | /* may need to remove ^ when composing char was typed */ |
| 1818 | if (enc_utf8 && utf_iscomposing(c) && !cmd_silent) |
| 1819 | { |
| 1820 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 1821 | msg_putchar(' '); |
| 1822 | cursorcmd(); |
| 1823 | } |
| 1824 | #endif |
| 1825 | break; |
| 1826 | |
| 1827 | #ifdef FEAT_DIGRAPHS |
| 1828 | case Ctrl_K: |
| 1829 | #ifdef FEAT_MOUSE |
| 1830 | ignore_drag_release = TRUE; |
| 1831 | #endif |
| 1832 | putcmdline('?', TRUE); |
| 1833 | #ifdef USE_ON_FLY_SCROLL |
| 1834 | dont_scroll = TRUE; /* disallow scrolling here */ |
| 1835 | #endif |
| 1836 | c = get_digraph(TRUE); |
Bram Moolenaar | a92522f | 2017-07-15 15:21:38 +0200 | [diff] [blame] | 1837 | extra_char = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1838 | if (c != NUL) |
| 1839 | break; |
| 1840 | |
| 1841 | redrawcmd(); |
| 1842 | goto cmdline_not_changed; |
| 1843 | #endif /* FEAT_DIGRAPHS */ |
| 1844 | |
| 1845 | #ifdef FEAT_RIGHTLEFT |
| 1846 | case Ctrl__: /* CTRL-_: switch language mode */ |
| 1847 | if (!p_ari) |
| 1848 | break; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 1849 | # ifdef FEAT_FKMAP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1850 | if (p_altkeymap) |
| 1851 | { |
| 1852 | cmd_fkmap = !cmd_fkmap; |
| 1853 | if (cmd_fkmap) /* in Farsi always in Insert mode */ |
| 1854 | ccline.overstrike = FALSE; |
| 1855 | } |
| 1856 | else /* Hebrew is default */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 1857 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1858 | cmd_hkmap = !cmd_hkmap; |
| 1859 | goto cmdline_not_changed; |
| 1860 | #endif |
| 1861 | |
Bram Moolenaar | abbc448 | 2017-01-24 15:57:55 +0100 | [diff] [blame] | 1862 | case K_PS: |
| 1863 | bracketed_paste(PASTE_CMDLINE, FALSE, NULL); |
| 1864 | goto cmdline_changed; |
| 1865 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1866 | default: |
| 1867 | #ifdef UNIX |
| 1868 | if (c == intr_char) |
| 1869 | { |
| 1870 | gotesc = TRUE; /* will free ccline.cmdbuff after |
| 1871 | putting it in history */ |
| 1872 | goto returncmd; /* back to Normal mode */ |
| 1873 | } |
| 1874 | #endif |
| 1875 | /* |
| 1876 | * Normal character with no special meaning. Just set mod_mask |
| 1877 | * to 0x0 so that typing Shift-Space in the GUI doesn't enter |
| 1878 | * the string <S-Space>. This should only happen after ^V. |
| 1879 | */ |
| 1880 | if (!IS_SPECIAL(c)) |
| 1881 | mod_mask = 0x0; |
| 1882 | break; |
| 1883 | } |
| 1884 | /* |
| 1885 | * End of switch on command line character. |
| 1886 | * We come here if we have a normal character. |
| 1887 | */ |
| 1888 | |
Bram Moolenaar | ede3e63 | 2013-06-23 16:16:19 +0200 | [diff] [blame] | 1889 | if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1890 | #ifdef FEAT_MBYTE |
| 1891 | /* Add ABBR_OFF for characters above 0x100, this is |
| 1892 | * what check_abbr() expects. */ |
| 1893 | (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) : |
| 1894 | #endif |
Bram Moolenaar | ede3e63 | 2013-06-23 16:16:19 +0200 | [diff] [blame] | 1895 | c) || c == Ctrl_RSB)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1896 | goto cmdline_changed; |
| 1897 | |
| 1898 | /* |
| 1899 | * put the character in the command line |
| 1900 | */ |
| 1901 | if (IS_SPECIAL(c) || mod_mask != 0) |
| 1902 | put_on_cmdline(get_special_key_name(c, mod_mask), -1, TRUE); |
| 1903 | else |
| 1904 | { |
| 1905 | #ifdef FEAT_MBYTE |
| 1906 | if (has_mbyte) |
| 1907 | { |
| 1908 | j = (*mb_char2bytes)(c, IObuff); |
| 1909 | IObuff[j] = NUL; /* exclude composing chars */ |
| 1910 | put_on_cmdline(IObuff, j, TRUE); |
| 1911 | } |
| 1912 | else |
| 1913 | #endif |
| 1914 | { |
| 1915 | IObuff[0] = c; |
| 1916 | put_on_cmdline(IObuff, 1, TRUE); |
| 1917 | } |
| 1918 | } |
| 1919 | goto cmdline_changed; |
| 1920 | |
| 1921 | /* |
| 1922 | * This part implements incremental searches for "/" and "?" |
| 1923 | * Jump to cmdline_not_changed when a character has been read but the command |
| 1924 | * line did not change. Then we only search and redraw if something changed in |
| 1925 | * the past. |
| 1926 | * Jump to cmdline_changed when the command line did change. |
| 1927 | * (Sorry for the goto's, I know it is ugly). |
| 1928 | */ |
| 1929 | cmdline_not_changed: |
| 1930 | #ifdef FEAT_SEARCH_EXTRA |
| 1931 | if (!incsearch_postponed) |
| 1932 | continue; |
| 1933 | #endif |
| 1934 | |
| 1935 | cmdline_changed: |
| 1936 | #ifdef FEAT_SEARCH_EXTRA |
| 1937 | /* |
| 1938 | * 'incsearch' highlighting. |
| 1939 | */ |
| 1940 | if (p_is && !cmd_silent && (firstc == '/' || firstc == '?')) |
| 1941 | { |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1942 | pos_T end_pos; |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1943 | #ifdef FEAT_RELTIME |
| 1944 | proftime_T tm; |
| 1945 | #endif |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1946 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1947 | /* if there is a character waiting, search and redraw later */ |
| 1948 | if (char_avail()) |
| 1949 | { |
| 1950 | incsearch_postponed = TRUE; |
| 1951 | continue; |
| 1952 | } |
| 1953 | incsearch_postponed = FALSE; |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 1954 | curwin->w_cursor = search_start; /* start at old position */ |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1955 | save_last_search_pattern(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1956 | |
| 1957 | /* If there is no command line, don't do anything */ |
| 1958 | if (ccline.cmdlen == 0) |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1959 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1960 | i = 0; |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1961 | SET_NO_HLSEARCH(TRUE); /* turn off previous highlight */ |
Bram Moolenaar | f8f8b2e | 2017-11-02 19:08:48 +0100 | [diff] [blame] | 1962 | redraw_all_later(SOME_VALID); |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1963 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1964 | else |
| 1965 | { |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1966 | int search_flags = SEARCH_OPT + SEARCH_NOOF + SEARCH_PEEK; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1967 | cursor_off(); /* so the user knows we're busy */ |
| 1968 | out_flush(); |
| 1969 | ++emsg_off; /* So it doesn't beep if bad expr */ |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1970 | #ifdef FEAT_RELTIME |
| 1971 | /* Set the time limit to half a second. */ |
| 1972 | profile_setlimit(500L, &tm); |
| 1973 | #endif |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1974 | if (!p_hls) |
| 1975 | search_flags += SEARCH_KEEP; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1976 | i = do_search(NULL, firstc, ccline.cmdbuff, count, |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 1977 | search_flags, |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1978 | #ifdef FEAT_RELTIME |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1979 | &tm, NULL |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1980 | #else |
Bram Moolenaar | fbd0b0a | 2017-06-17 18:44:21 +0200 | [diff] [blame] | 1981 | NULL, NULL |
Bram Moolenaar | 91a4e82 | 2008-01-19 14:59:58 +0000 | [diff] [blame] | 1982 | #endif |
| 1983 | ); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1984 | --emsg_off; |
| 1985 | /* if interrupted while searching, behave like it failed */ |
| 1986 | if (got_int) |
| 1987 | { |
| 1988 | (void)vpeekc(); /* remove <C-C> from input stream */ |
| 1989 | got_int = FALSE; /* don't abandon the command line */ |
| 1990 | i = 0; |
| 1991 | } |
| 1992 | else if (char_avail()) |
| 1993 | /* cancelled searching because a char was typed */ |
| 1994 | incsearch_postponed = TRUE; |
| 1995 | } |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1996 | if (i != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1997 | highlight_match = TRUE; /* highlight position */ |
| 1998 | else |
| 1999 | highlight_match = FALSE; /* remove highlight */ |
| 2000 | |
| 2001 | /* first restore the old curwin values, so the screen is |
| 2002 | * positioned in the same way as the actual search command */ |
| 2003 | curwin->w_leftcol = old_leftcol; |
| 2004 | curwin->w_topline = old_topline; |
| 2005 | # ifdef FEAT_DIFF |
| 2006 | curwin->w_topfill = old_topfill; |
| 2007 | # endif |
| 2008 | curwin->w_botline = old_botline; |
| 2009 | changed_cline_bef_curs(); |
| 2010 | update_topline(); |
| 2011 | |
| 2012 | if (i != 0) |
| 2013 | { |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 2014 | pos_T save_pos = curwin->w_cursor; |
| 2015 | |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 2016 | match_start = curwin->w_cursor; |
| 2017 | set_search_match(&curwin->w_cursor); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2018 | validate_cursor(); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2019 | end_pos = curwin->w_cursor; |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 2020 | match_end = end_pos; |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 2021 | curwin->w_cursor = save_pos; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2022 | } |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 2023 | else |
| 2024 | end_pos = curwin->w_cursor; /* shutup gcc 4 */ |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2025 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2026 | validate_cursor(); |
Bram Moolenaar | 27a2319 | 2006-09-14 09:27:26 +0000 | [diff] [blame] | 2027 | /* May redraw the status line to show the cursor position. */ |
| 2028 | if (p_ru && curwin->w_status_height > 0) |
| 2029 | curwin->w_redr_status = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2030 | |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 2031 | save_cmdline(&save_ccline); |
Bram Moolenaar | 600dddc | 2006-03-12 22:05:10 +0000 | [diff] [blame] | 2032 | update_screen(SOME_VALID); |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 2033 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 2e51d9a | 2017-10-29 16:40:30 +0100 | [diff] [blame] | 2034 | restore_last_search_pattern(); |
Bram Moolenaar | 111ff9f | 2005-03-08 22:40:03 +0000 | [diff] [blame] | 2035 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2036 | /* Leave it at the end to make CTRL-R CTRL-W work. */ |
| 2037 | if (i != 0) |
| 2038 | curwin->w_cursor = end_pos; |
| 2039 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2040 | msg_starthere(); |
| 2041 | redrawcmdline(); |
| 2042 | did_incsearch = TRUE; |
| 2043 | } |
| 2044 | #else /* FEAT_SEARCH_EXTRA */ |
| 2045 | ; |
| 2046 | #endif |
| 2047 | |
| 2048 | #ifdef FEAT_RIGHTLEFT |
| 2049 | if (cmdmsg_rl |
| 2050 | # ifdef FEAT_ARABIC |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 2051 | || (p_arshape && !p_tbidi && enc_utf8) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2052 | # endif |
| 2053 | ) |
| 2054 | /* Always redraw the whole command line to fix shaping and |
Bram Moolenaar | 58437e0 | 2012-02-22 17:58:04 +0100 | [diff] [blame] | 2055 | * right-left typing. Not efficient, but it works. |
| 2056 | * Do it only when there are no characters left to read |
| 2057 | * to avoid useless intermediate redraws. */ |
| 2058 | if (vpeekc() == NUL) |
| 2059 | redrawcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2060 | #endif |
| 2061 | } |
| 2062 | |
| 2063 | returncmd: |
| 2064 | |
| 2065 | #ifdef FEAT_RIGHTLEFT |
| 2066 | cmdmsg_rl = FALSE; |
| 2067 | #endif |
| 2068 | |
| 2069 | #ifdef FEAT_FKMAP |
| 2070 | cmd_fkmap = 0; |
| 2071 | #endif |
| 2072 | |
| 2073 | ExpandCleanup(&xpc); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2074 | ccline.xpc = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2075 | |
| 2076 | #ifdef FEAT_SEARCH_EXTRA |
| 2077 | if (did_incsearch) |
| 2078 | { |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 2079 | if (gotesc) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 2080 | curwin->w_cursor = save_cursor; |
| 2081 | else |
| 2082 | { |
Bram Moolenaar | b5aedf3 | 2017-03-12 18:23:53 +0100 | [diff] [blame] | 2083 | if (!EQUAL_POS(save_cursor, search_start)) |
Bram Moolenaar | dda933d | 2016-09-03 21:04:58 +0200 | [diff] [blame] | 2084 | { |
| 2085 | /* put the '" mark at the original position */ |
| 2086 | curwin->w_cursor = save_cursor; |
| 2087 | setpcmark(); |
| 2088 | } |
| 2089 | curwin->w_cursor = search_start; |
| 2090 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2091 | curwin->w_curswant = old_curswant; |
| 2092 | curwin->w_leftcol = old_leftcol; |
| 2093 | curwin->w_topline = old_topline; |
| 2094 | # ifdef FEAT_DIFF |
| 2095 | curwin->w_topfill = old_topfill; |
| 2096 | # endif |
| 2097 | curwin->w_botline = old_botline; |
| 2098 | highlight_match = FALSE; |
| 2099 | validate_cursor(); /* needed for TAB */ |
Bram Moolenaar | f8f8b2e | 2017-11-02 19:08:48 +0100 | [diff] [blame] | 2100 | redraw_all_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2101 | } |
| 2102 | #endif |
| 2103 | |
| 2104 | if (ccline.cmdbuff != NULL) |
| 2105 | { |
| 2106 | /* |
| 2107 | * Put line in history buffer (":" and "=" only when it was typed). |
| 2108 | */ |
| 2109 | #ifdef FEAT_CMDHIST |
| 2110 | if (ccline.cmdlen && firstc != NUL |
| 2111 | && (some_key_typed || histype == HIST_SEARCH)) |
| 2112 | { |
| 2113 | add_to_history(histype, ccline.cmdbuff, TRUE, |
| 2114 | histype == HIST_SEARCH ? firstc : NUL); |
| 2115 | if (firstc == ':') |
| 2116 | { |
| 2117 | vim_free(new_last_cmdline); |
| 2118 | new_last_cmdline = vim_strsave(ccline.cmdbuff); |
| 2119 | } |
| 2120 | } |
| 2121 | #endif |
| 2122 | |
Bram Moolenaar | f8e8c06 | 2017-10-22 14:44:17 +0200 | [diff] [blame] | 2123 | if (gotesc) |
| 2124 | abandon_cmdline(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
| 2127 | /* |
| 2128 | * If the screen was shifted up, redraw the whole screen (later). |
| 2129 | * If the line is too long, clear it, so ruler and shown command do |
| 2130 | * not get printed in the middle of it. |
| 2131 | */ |
| 2132 | msg_check(); |
| 2133 | msg_scroll = save_msg_scroll; |
| 2134 | redir_off = FALSE; |
| 2135 | |
| 2136 | /* When the command line was typed, no need for a wait-return prompt. */ |
| 2137 | if (some_key_typed) |
| 2138 | need_wait_return = FALSE; |
| 2139 | |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 2140 | #ifdef FEAT_AUTOCMD |
| 2141 | /* Trigger CmdlineLeave autocommands. */ |
| 2142 | trigger_cmd_autocmd(cmdline_type, EVENT_CMDLINELEAVE); |
| 2143 | #endif |
| 2144 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2145 | State = save_State; |
Bram Moolenaar | 819edbe | 2017-11-25 17:14:33 +0100 | [diff] [blame] | 2146 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2147 | if (b_im_ptr != NULL && *b_im_ptr != B_IMODE_LMAP) |
| 2148 | im_save_status(b_im_ptr); |
| 2149 | im_set_active(FALSE); |
| 2150 | #endif |
| 2151 | #ifdef FEAT_MOUSE |
| 2152 | setmouse(); |
| 2153 | #endif |
| 2154 | #ifdef CURSOR_SHAPE |
| 2155 | ui_cursor_shape(); /* may show different cursor shape */ |
| 2156 | #endif |
Bram Moolenaar | f2405ed | 2017-03-16 19:58:25 +0100 | [diff] [blame] | 2157 | sb_text_end_cmdline(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2158 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2159 | { |
| 2160 | char_u *p = ccline.cmdbuff; |
| 2161 | |
| 2162 | /* Make ccline empty, getcmdline() may try to use it. */ |
| 2163 | ccline.cmdbuff = NULL; |
| 2164 | return p; |
| 2165 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2166 | } |
| 2167 | |
| 2168 | #if (defined(FEAT_CRYPT) || defined(FEAT_EVAL)) || defined(PROTO) |
| 2169 | /* |
| 2170 | * Get a command line with a prompt. |
| 2171 | * This is prepared to be called recursively from getcmdline() (e.g. by |
| 2172 | * f_input() when evaluating an expression from CTRL-R =). |
| 2173 | * Returns the command line in allocated memory, or NULL. |
| 2174 | */ |
| 2175 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2176 | getcmdline_prompt( |
| 2177 | int firstc, |
| 2178 | char_u *prompt, /* command line prompt */ |
| 2179 | int attr, /* attributes for prompt */ |
| 2180 | int xp_context, /* type of expansion */ |
| 2181 | char_u *xp_arg) /* user-defined expansion argument */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2182 | { |
| 2183 | char_u *s; |
| 2184 | struct cmdline_info save_ccline; |
| 2185 | int msg_col_save = msg_col; |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2186 | int msg_silent_save = msg_silent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2187 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2188 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2189 | ccline.cmdprompt = prompt; |
| 2190 | ccline.cmdattr = attr; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2191 | # ifdef FEAT_EVAL |
| 2192 | ccline.xp_context = xp_context; |
| 2193 | ccline.xp_arg = xp_arg; |
| 2194 | ccline.input_fn = (firstc == '@'); |
| 2195 | # endif |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2196 | msg_silent = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2197 | s = getcmdline(firstc, 1L, 0); |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 2198 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 6135d0d | 2016-03-22 20:31:13 +0100 | [diff] [blame] | 2199 | msg_silent = msg_silent_save; |
Bram Moolenaar | 1db1f77 | 2011-08-17 16:25:48 +0200 | [diff] [blame] | 2200 | /* Restore msg_col, the prompt from input() may have changed it. |
| 2201 | * But only if called recursively and the commandline is therefore being |
| 2202 | * restored to an old one; if not, the input() prompt stays on the screen, |
| 2203 | * so we need its modified msg_col left intact. */ |
| 2204 | if (ccline.cmdbuff != NULL) |
| 2205 | msg_col = msg_col_save; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2206 | |
| 2207 | return s; |
| 2208 | } |
| 2209 | #endif |
| 2210 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2211 | /* |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2212 | * Return TRUE when the text must not be changed and we can't switch to |
| 2213 | * another window or buffer. Used when editing the command line, evaluating |
| 2214 | * 'balloonexpr', etc. |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2215 | */ |
| 2216 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2217 | text_locked(void) |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2218 | { |
| 2219 | #ifdef FEAT_CMDWIN |
| 2220 | if (cmdwin_type != 0) |
| 2221 | return TRUE; |
| 2222 | #endif |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 2223 | return textlock != 0; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2224 | } |
| 2225 | |
| 2226 | /* |
| 2227 | * Give an error message for a command that isn't allowed while the cmdline |
| 2228 | * window is open or editing the cmdline in another way. |
| 2229 | */ |
| 2230 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2231 | text_locked_msg(void) |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2232 | { |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2233 | EMSG(_(get_text_locked_msg())); |
| 2234 | } |
| 2235 | |
| 2236 | char_u * |
| 2237 | get_text_locked_msg(void) |
| 2238 | { |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2239 | #ifdef FEAT_CMDWIN |
| 2240 | if (cmdwin_type != 0) |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2241 | return e_cmdwin; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2242 | #endif |
Bram Moolenaar | 5a49789 | 2016-09-03 16:29:04 +0200 | [diff] [blame] | 2243 | return e_secure; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 2244 | } |
| 2245 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2246 | #if defined(FEAT_AUTOCMD) || defined(PROTO) |
| 2247 | /* |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2248 | * Check if "curbuf_lock" or "allbuf_lock" is set and return TRUE when it is |
| 2249 | * and give an error message. |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2250 | */ |
| 2251 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2252 | curbuf_locked(void) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2253 | { |
| 2254 | if (curbuf_lock > 0) |
| 2255 | { |
| 2256 | EMSG(_("E788: Not allowed to edit another buffer now")); |
| 2257 | return TRUE; |
| 2258 | } |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2259 | return allbuf_locked(); |
| 2260 | } |
| 2261 | |
| 2262 | /* |
| 2263 | * Check if "allbuf_lock" is set and return TRUE when it is and give an error |
| 2264 | * message. |
| 2265 | */ |
| 2266 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2267 | allbuf_locked(void) |
Bram Moolenaar | bf1b7a7 | 2009-03-05 02:15:53 +0000 | [diff] [blame] | 2268 | { |
| 2269 | if (allbuf_lock > 0) |
| 2270 | { |
| 2271 | EMSG(_("E811: Not allowed to change buffer information now")); |
| 2272 | return TRUE; |
| 2273 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 2274 | return FALSE; |
| 2275 | } |
| 2276 | #endif |
| 2277 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2278 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2279 | cmdline_charsize(int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2280 | { |
| 2281 | #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 2282 | if (cmdline_star > 0) /* showing '*', always 1 position */ |
| 2283 | return 1; |
| 2284 | #endif |
| 2285 | return ptr2cells(ccline.cmdbuff + idx); |
| 2286 | } |
| 2287 | |
| 2288 | /* |
| 2289 | * Compute the offset of the cursor on the command line for the prompt and |
| 2290 | * indent. |
| 2291 | */ |
| 2292 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2293 | set_cmdspos(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2294 | { |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2295 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2296 | ccline.cmdspos = 1 + ccline.cmdindent; |
| 2297 | else |
| 2298 | ccline.cmdspos = 0 + ccline.cmdindent; |
| 2299 | } |
| 2300 | |
| 2301 | /* |
| 2302 | * Compute the screen position for the cursor on the command line. |
| 2303 | */ |
| 2304 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2305 | set_cmdspos_cursor(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2306 | { |
| 2307 | int i, m, c; |
| 2308 | |
| 2309 | set_cmdspos(); |
| 2310 | if (KeyTyped) |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 2311 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2312 | m = Columns * Rows; |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 2313 | if (m < 0) /* overflow, Columns or Rows at weird value */ |
| 2314 | m = MAXCOL; |
| 2315 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2316 | else |
| 2317 | m = MAXCOL; |
| 2318 | for (i = 0; i < ccline.cmdlen && i < ccline.cmdpos; ++i) |
| 2319 | { |
| 2320 | c = cmdline_charsize(i); |
| 2321 | #ifdef FEAT_MBYTE |
| 2322 | /* Count ">" for double-wide multi-byte char that doesn't fit. */ |
| 2323 | if (has_mbyte) |
| 2324 | correct_cmdspos(i, c); |
| 2325 | #endif |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 2326 | /* If the cmdline doesn't fit, show cursor on last visible char. |
| 2327 | * Don't move the cursor itself, so we can still append. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2328 | if ((ccline.cmdspos += c) >= m) |
| 2329 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2330 | ccline.cmdspos -= c; |
| 2331 | break; |
| 2332 | } |
| 2333 | #ifdef FEAT_MBYTE |
| 2334 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2335 | i += (*mb_ptr2len)(ccline.cmdbuff + i) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2336 | #endif |
| 2337 | } |
| 2338 | } |
| 2339 | |
| 2340 | #ifdef FEAT_MBYTE |
| 2341 | /* |
| 2342 | * Check if the character at "idx", which is "cells" wide, is a multi-byte |
| 2343 | * character that doesn't fit, so that a ">" must be displayed. |
| 2344 | */ |
| 2345 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2346 | correct_cmdspos(int idx, int cells) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2347 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2348 | if ((*mb_ptr2len)(ccline.cmdbuff + idx) > 1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2349 | && (*mb_ptr2cells)(ccline.cmdbuff + idx) > 1 |
| 2350 | && ccline.cmdspos % Columns + cells > Columns) |
| 2351 | ccline.cmdspos++; |
| 2352 | } |
| 2353 | #endif |
| 2354 | |
| 2355 | /* |
| 2356 | * Get an Ex command line for the ":" command. |
| 2357 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2358 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2359 | getexline( |
| 2360 | int c, /* normally ':', NUL for ":append" */ |
| 2361 | void *cookie UNUSED, |
| 2362 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2363 | { |
| 2364 | /* When executing a register, remove ':' that's in front of each line. */ |
| 2365 | if (exec_from_reg && vpeekc() == ':') |
| 2366 | (void)vgetc(); |
| 2367 | return getcmdline(c, 1L, indent); |
| 2368 | } |
| 2369 | |
| 2370 | /* |
| 2371 | * Get an Ex command line for Ex mode. |
| 2372 | * In Ex mode we only use the OS supplied line editing features and no |
| 2373 | * mappings or abbreviations. |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2374 | * Returns a string in allocated memory or NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2375 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2376 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2377 | getexmodeline( |
| 2378 | int promptc, /* normally ':', NUL for ":append" and '?' for |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2379 | :s prompt */ |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2380 | void *cookie UNUSED, |
| 2381 | int indent) /* indent for inside conditionals */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2382 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2383 | garray_T line_ga; |
| 2384 | char_u *pend; |
| 2385 | int startcol = 0; |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2386 | int c1 = 0; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2387 | int escaped = FALSE; /* CTRL-V typed */ |
| 2388 | int vcol = 0; |
| 2389 | char_u *p; |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2390 | int prev_char; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2391 | int len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2392 | |
| 2393 | /* Switch cursor on now. This avoids that it happens after the "\n", which |
| 2394 | * confuses the system function that computes tabstops. */ |
| 2395 | cursor_on(); |
| 2396 | |
| 2397 | /* always start in column 0; write a newline if necessary */ |
| 2398 | compute_cmdrow(); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2399 | if ((msg_col || msg_didout) && promptc != '?') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2400 | msg_putchar('\n'); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2401 | if (promptc == ':') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2402 | { |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2403 | /* indent that is only displayed, not in the line itself */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2404 | if (p_prompt) |
| 2405 | msg_putchar(':'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2406 | while (indent-- > 0) |
| 2407 | msg_putchar(' '); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2408 | startcol = msg_col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2409 | } |
| 2410 | |
| 2411 | ga_init2(&line_ga, 1, 30); |
| 2412 | |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2413 | /* autoindent for :insert and :append is in the line itself */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2414 | if (promptc <= 0) |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2415 | { |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2416 | vcol = indent; |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2417 | while (indent >= 8) |
| 2418 | { |
| 2419 | ga_append(&line_ga, TAB); |
| 2420 | msg_puts((char_u *)" "); |
| 2421 | indent -= 8; |
| 2422 | } |
| 2423 | while (indent-- > 0) |
| 2424 | { |
| 2425 | ga_append(&line_ga, ' '); |
| 2426 | msg_putchar(' '); |
| 2427 | } |
| 2428 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2429 | ++no_mapping; |
| 2430 | ++allow_keys; |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2431 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2432 | /* |
| 2433 | * Get the line, one character at a time. |
| 2434 | */ |
| 2435 | got_int = FALSE; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2436 | while (!got_int) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2437 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2438 | long sw; |
| 2439 | char_u *s; |
| 2440 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2441 | if (ga_grow(&line_ga, 40) == FAIL) |
| 2442 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2443 | |
Bram Moolenaar | ba748c8 | 2017-02-26 14:00:07 +0100 | [diff] [blame] | 2444 | /* |
| 2445 | * Get one character at a time. |
| 2446 | */ |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2447 | prev_char = c1; |
Bram Moolenaar | ba748c8 | 2017-02-26 14:00:07 +0100 | [diff] [blame] | 2448 | |
| 2449 | /* Check for a ":normal" command and no more characters left. */ |
| 2450 | if (ex_normal_busy > 0 && typebuf.tb_len == 0) |
| 2451 | c1 = '\n'; |
| 2452 | else |
| 2453 | c1 = vgetc(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2454 | |
| 2455 | /* |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2456 | * Handle line editing. |
| 2457 | * Previously this was left to the system, putting the terminal in |
| 2458 | * 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] | 2459 | */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2460 | if (got_int) |
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 | msg_putchar('\n'); |
| 2463 | break; |
| 2464 | } |
| 2465 | |
Bram Moolenaar | abbc448 | 2017-01-24 15:57:55 +0100 | [diff] [blame] | 2466 | if (c1 == K_PS) |
| 2467 | { |
| 2468 | bracketed_paste(PASTE_EX, FALSE, &line_ga); |
| 2469 | goto redraw; |
| 2470 | } |
| 2471 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2472 | if (!escaped) |
| 2473 | { |
| 2474 | /* CR typed means "enter", which is NL */ |
| 2475 | if (c1 == '\r') |
| 2476 | c1 = '\n'; |
| 2477 | |
| 2478 | if (c1 == BS || c1 == K_BS |
| 2479 | || c1 == DEL || c1 == K_DEL || c1 == K_KDEL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2480 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2481 | if (line_ga.ga_len > 0) |
| 2482 | { |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2483 | #ifdef FEAT_MBYTE |
| 2484 | if (has_mbyte) |
| 2485 | { |
| 2486 | p = (char_u *)line_ga.ga_data; |
| 2487 | p[line_ga.ga_len] = NUL; |
| 2488 | len = (*mb_head_off)(p, p + line_ga.ga_len - 1) + 1; |
| 2489 | line_ga.ga_len -= len; |
| 2490 | } |
| 2491 | else |
| 2492 | #endif |
| 2493 | --line_ga.ga_len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2494 | goto redraw; |
| 2495 | } |
| 2496 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2497 | } |
| 2498 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2499 | if (c1 == Ctrl_U) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2500 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2501 | msg_col = startcol; |
| 2502 | msg_clr_eos(); |
| 2503 | line_ga.ga_len = 0; |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2504 | goto redraw; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2505 | } |
| 2506 | |
| 2507 | if (c1 == Ctrl_T) |
| 2508 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2509 | sw = get_sw_value(curbuf); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2510 | p = (char_u *)line_ga.ga_data; |
| 2511 | p[line_ga.ga_len] = NUL; |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2512 | indent = get_indent_str(p, 8, FALSE); |
Bram Moolenaar | 14f2474 | 2012-08-08 18:01:05 +0200 | [diff] [blame] | 2513 | indent += sw - indent % sw; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2514 | add_indent: |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2515 | while (get_indent_str(p, 8, FALSE) < indent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2516 | { |
Bram Moolenaar | cde8854 | 2015-08-11 19:14:00 +0200 | [diff] [blame] | 2517 | (void)ga_grow(&line_ga, 2); /* one more for the NUL */ |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2518 | p = (char_u *)line_ga.ga_data; |
| 2519 | s = skipwhite(p); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2520 | mch_memmove(s + 1, s, line_ga.ga_len - (s - p) + 1); |
| 2521 | *s = ' '; |
| 2522 | ++line_ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2523 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2524 | redraw: |
| 2525 | /* redraw the line */ |
| 2526 | msg_col = startcol; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2527 | vcol = 0; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2528 | p = (char_u *)line_ga.ga_data; |
| 2529 | p[line_ga.ga_len] = NUL; |
| 2530 | while (p < (char_u *)line_ga.ga_data + line_ga.ga_len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2531 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2532 | if (*p == TAB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2533 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2534 | do |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2535 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2536 | msg_putchar(' '); |
| 2537 | } while (++vcol % 8); |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2538 | ++p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2539 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2540 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2541 | { |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2542 | len = MB_PTR2LEN(p); |
| 2543 | msg_outtrans_len(p, len); |
| 2544 | vcol += ptr2cells(p); |
| 2545 | p += len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2546 | } |
| 2547 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2548 | msg_clr_eos(); |
Bram Moolenaar | 7662423 | 2007-07-28 12:21:47 +0000 | [diff] [blame] | 2549 | windgoto(msg_row, msg_col); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2550 | continue; |
| 2551 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2552 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2553 | if (c1 == Ctrl_D) |
| 2554 | { |
| 2555 | /* Delete one shiftwidth. */ |
| 2556 | p = (char_u *)line_ga.ga_data; |
| 2557 | if (prev_char == '0' || prev_char == '^') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2558 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2559 | if (prev_char == '^') |
| 2560 | ex_keep_indent = TRUE; |
| 2561 | indent = 0; |
| 2562 | p[--line_ga.ga_len] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2563 | } |
| 2564 | else |
| 2565 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2566 | p[line_ga.ga_len] = NUL; |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2567 | indent = get_indent_str(p, 8, FALSE); |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2568 | if (indent > 0) |
| 2569 | { |
| 2570 | --indent; |
| 2571 | indent -= indent % get_sw_value(curbuf); |
| 2572 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2573 | } |
Bram Moolenaar | 597a422 | 2014-06-25 14:39:50 +0200 | [diff] [blame] | 2574 | while (get_indent_str(p, 8, FALSE) > indent) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2575 | { |
Bram Moolenaar | da63657 | 2015-04-03 17:11:45 +0200 | [diff] [blame] | 2576 | s = skipwhite(p); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2577 | mch_memmove(s - 1, s, line_ga.ga_len - (s - p) + 1); |
| 2578 | --line_ga.ga_len; |
| 2579 | } |
| 2580 | goto add_indent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2581 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2582 | |
| 2583 | if (c1 == Ctrl_V || c1 == Ctrl_Q) |
| 2584 | { |
| 2585 | escaped = TRUE; |
| 2586 | continue; |
| 2587 | } |
| 2588 | |
| 2589 | /* Ignore special key codes: mouse movement, K_IGNORE, etc. */ |
| 2590 | if (IS_SPECIAL(c1)) |
| 2591 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2592 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2593 | |
| 2594 | if (IS_SPECIAL(c1)) |
| 2595 | c1 = '?'; |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2596 | #ifdef FEAT_MBYTE |
| 2597 | if (has_mbyte) |
| 2598 | len = (*mb_char2bytes)(c1, |
| 2599 | (char_u *)line_ga.ga_data + line_ga.ga_len); |
| 2600 | else |
| 2601 | #endif |
| 2602 | { |
| 2603 | len = 1; |
| 2604 | ((char_u *)line_ga.ga_data)[line_ga.ga_len] = c1; |
| 2605 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2606 | if (c1 == '\n') |
| 2607 | msg_putchar('\n'); |
| 2608 | else if (c1 == TAB) |
| 2609 | { |
| 2610 | /* Don't use chartabsize(), 'ts' can be different */ |
| 2611 | do |
| 2612 | { |
| 2613 | msg_putchar(' '); |
| 2614 | } while (++vcol % 8); |
| 2615 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2616 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2617 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2618 | msg_outtrans_len( |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2619 | ((char_u *)line_ga.ga_data) + line_ga.ga_len, len); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2620 | vcol += char2cells(c1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2621 | } |
Bram Moolenaar | 2d54ec9 | 2014-06-12 19:44:48 +0200 | [diff] [blame] | 2622 | line_ga.ga_len += len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2623 | escaped = FALSE; |
| 2624 | |
| 2625 | windgoto(msg_row, msg_col); |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 2626 | pend = (char_u *)(line_ga.ga_data) + line_ga.ga_len; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2627 | |
Bram Moolenaar | 417f5e7 | 2010-09-29 15:50:30 +0200 | [diff] [blame] | 2628 | /* We are done when a NL is entered, but not when it comes after an |
| 2629 | * odd number of backslashes, that results in a NUL. */ |
| 2630 | if (line_ga.ga_len > 0 && pend[-1] == '\n') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2631 | { |
Bram Moolenaar | 417f5e7 | 2010-09-29 15:50:30 +0200 | [diff] [blame] | 2632 | int bcount = 0; |
| 2633 | |
| 2634 | while (line_ga.ga_len - 2 >= bcount && pend[-2 - bcount] == '\\') |
| 2635 | ++bcount; |
| 2636 | |
| 2637 | if (bcount > 0) |
| 2638 | { |
| 2639 | /* Halve the number of backslashes: "\NL" -> "NUL", "\\NL" -> |
| 2640 | * "\NL", etc. */ |
| 2641 | line_ga.ga_len -= (bcount + 1) / 2; |
| 2642 | pend -= (bcount + 1) / 2; |
| 2643 | pend[-1] = '\n'; |
| 2644 | } |
| 2645 | |
| 2646 | if ((bcount & 1) == 0) |
| 2647 | { |
| 2648 | --line_ga.ga_len; |
| 2649 | --pend; |
| 2650 | *pend = NUL; |
| 2651 | break; |
| 2652 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2653 | } |
| 2654 | } |
| 2655 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2656 | --no_mapping; |
| 2657 | --allow_keys; |
| 2658 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2659 | /* make following messages go to the next line */ |
| 2660 | msg_didout = FALSE; |
| 2661 | msg_col = 0; |
| 2662 | if (msg_row < Rows - 1) |
| 2663 | ++msg_row; |
| 2664 | emsg_on_display = FALSE; /* don't want ui_delay() */ |
| 2665 | |
| 2666 | if (got_int) |
| 2667 | ga_clear(&line_ga); |
| 2668 | |
| 2669 | return (char_u *)line_ga.ga_data; |
| 2670 | } |
| 2671 | |
Bram Moolenaar | e344bea | 2005-09-01 20:46:49 +0000 | [diff] [blame] | 2672 | # if defined(MCH_CURSOR_SHAPE) || defined(FEAT_GUI) \ |
| 2673 | || defined(FEAT_MOUSESHAPE) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2674 | /* |
| 2675 | * Return TRUE if ccline.overstrike is on. |
| 2676 | */ |
| 2677 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2678 | cmdline_overstrike(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2679 | { |
| 2680 | return ccline.overstrike; |
| 2681 | } |
| 2682 | |
| 2683 | /* |
| 2684 | * Return TRUE if the cursor is at the end of the cmdline. |
| 2685 | */ |
| 2686 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2687 | cmdline_at_end(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2688 | { |
| 2689 | return (ccline.cmdpos >= ccline.cmdlen); |
| 2690 | } |
| 2691 | #endif |
| 2692 | |
Bram Moolenaar | 9372a11 | 2005-12-06 19:59:18 +0000 | [diff] [blame] | 2693 | #if (defined(FEAT_XIM) && (defined(FEAT_GUI_GTK))) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2694 | /* |
| 2695 | * Return the virtual column number at the current cursor position. |
| 2696 | * This is used by the IM code to obtain the start of the preedit string. |
| 2697 | */ |
| 2698 | colnr_T |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2699 | cmdline_getvcol_cursor(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2700 | { |
| 2701 | if (ccline.cmdbuff == NULL || ccline.cmdpos > ccline.cmdlen) |
| 2702 | return MAXCOL; |
| 2703 | |
| 2704 | # ifdef FEAT_MBYTE |
| 2705 | if (has_mbyte) |
| 2706 | { |
| 2707 | colnr_T col; |
| 2708 | int i = 0; |
| 2709 | |
| 2710 | for (col = 0; i < ccline.cmdpos; ++col) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2711 | i += (*mb_ptr2len)(ccline.cmdbuff + i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2712 | |
| 2713 | return col; |
| 2714 | } |
| 2715 | else |
| 2716 | # endif |
| 2717 | return ccline.cmdpos; |
| 2718 | } |
| 2719 | #endif |
| 2720 | |
| 2721 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
| 2722 | /* |
| 2723 | * If part of the command line is an IM preedit string, redraw it with |
| 2724 | * IM feedback attributes. The cursor position is restored after drawing. |
| 2725 | */ |
| 2726 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2727 | redrawcmd_preedit(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2728 | { |
| 2729 | if ((State & CMDLINE) |
| 2730 | && xic != NULL |
Bram Moolenaar | 494c82a | 2006-09-14 08:25:49 +0000 | [diff] [blame] | 2731 | /* && im_get_status() doesn't work when using SCIM */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2732 | && !p_imdisable |
| 2733 | && im_is_preediting()) |
| 2734 | { |
| 2735 | int cmdpos = 0; |
| 2736 | int cmdspos; |
| 2737 | int old_row; |
| 2738 | int old_col; |
| 2739 | colnr_T col; |
| 2740 | |
| 2741 | old_row = msg_row; |
| 2742 | old_col = msg_col; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 2743 | cmdspos = ((ccline.cmdfirstc != NUL) ? 1 : 0) + ccline.cmdindent; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2744 | |
| 2745 | # ifdef FEAT_MBYTE |
| 2746 | if (has_mbyte) |
| 2747 | { |
| 2748 | for (col = 0; col < preedit_start_col |
| 2749 | && cmdpos < ccline.cmdlen; ++col) |
| 2750 | { |
| 2751 | cmdspos += (*mb_ptr2cells)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2752 | cmdpos += (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2753 | } |
| 2754 | } |
| 2755 | else |
| 2756 | # endif |
| 2757 | { |
| 2758 | cmdspos += preedit_start_col; |
| 2759 | cmdpos += preedit_start_col; |
| 2760 | } |
| 2761 | |
| 2762 | msg_row = cmdline_row + (cmdspos / (int)Columns); |
| 2763 | msg_col = cmdspos % (int)Columns; |
| 2764 | if (msg_row >= Rows) |
| 2765 | msg_row = Rows - 1; |
| 2766 | |
| 2767 | for (col = 0; cmdpos < ccline.cmdlen; ++col) |
| 2768 | { |
| 2769 | int char_len; |
| 2770 | int char_attr; |
| 2771 | |
| 2772 | char_attr = im_get_feedback_attr(col); |
| 2773 | if (char_attr < 0) |
| 2774 | break; /* end of preedit string */ |
| 2775 | |
| 2776 | # ifdef FEAT_MBYTE |
| 2777 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2778 | char_len = (*mb_ptr2len)(ccline.cmdbuff + cmdpos); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2779 | else |
| 2780 | # endif |
| 2781 | char_len = 1; |
| 2782 | |
| 2783 | msg_outtrans_len_attr(ccline.cmdbuff + cmdpos, char_len, char_attr); |
| 2784 | cmdpos += char_len; |
| 2785 | } |
| 2786 | |
| 2787 | msg_row = old_row; |
| 2788 | msg_col = old_col; |
| 2789 | } |
| 2790 | } |
| 2791 | #endif /* FEAT_XIM && FEAT_GUI_GTK */ |
| 2792 | |
| 2793 | /* |
| 2794 | * Allocate a new command line buffer. |
| 2795 | * Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen. |
| 2796 | * Returns the new value of ccline.cmdbuff and ccline.cmdbufflen. |
| 2797 | */ |
| 2798 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2799 | alloc_cmdbuff(int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2800 | { |
| 2801 | /* |
| 2802 | * give some extra space to avoid having to allocate all the time |
| 2803 | */ |
| 2804 | if (len < 80) |
| 2805 | len = 100; |
| 2806 | else |
| 2807 | len += 20; |
| 2808 | |
| 2809 | ccline.cmdbuff = alloc(len); /* caller should check for out-of-memory */ |
| 2810 | ccline.cmdbufflen = len; |
| 2811 | } |
| 2812 | |
| 2813 | /* |
| 2814 | * Re-allocate the command line to length len + something extra. |
| 2815 | * return FAIL for failure, OK otherwise |
| 2816 | */ |
| 2817 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2818 | realloc_cmdbuff(int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2819 | { |
| 2820 | char_u *p; |
| 2821 | |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 2822 | if (len < ccline.cmdbufflen) |
| 2823 | return OK; /* no need to resize */ |
| 2824 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2825 | p = ccline.cmdbuff; |
| 2826 | alloc_cmdbuff(len); /* will get some more */ |
| 2827 | if (ccline.cmdbuff == NULL) /* out of memory */ |
| 2828 | { |
| 2829 | ccline.cmdbuff = p; /* keep the old one */ |
| 2830 | return FAIL; |
| 2831 | } |
Bram Moolenaar | 35a3423 | 2010-08-13 16:51:26 +0200 | [diff] [blame] | 2832 | /* There isn't always a NUL after the command, but it may need to be |
| 2833 | * there, thus copy up to the NUL and add a NUL. */ |
| 2834 | mch_memmove(ccline.cmdbuff, p, (size_t)ccline.cmdlen); |
| 2835 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2836 | vim_free(p); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2837 | |
| 2838 | if (ccline.xpc != NULL |
| 2839 | && ccline.xpc->xp_pattern != NULL |
| 2840 | && ccline.xpc->xp_context != EXPAND_NOTHING |
| 2841 | && ccline.xpc->xp_context != EXPAND_UNSUCCESSFUL) |
| 2842 | { |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 2843 | int i = (int)(ccline.xpc->xp_pattern - p); |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 2844 | |
| 2845 | /* If xp_pattern points inside the old cmdbuff it needs to be adjusted |
| 2846 | * to point into the newly allocated memory. */ |
| 2847 | if (i >= 0 && i <= ccline.cmdlen) |
| 2848 | ccline.xpc->xp_pattern = ccline.cmdbuff + i; |
| 2849 | } |
| 2850 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2851 | return OK; |
| 2852 | } |
| 2853 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2854 | #if defined(FEAT_ARABIC) || defined(PROTO) |
| 2855 | static char_u *arshape_buf = NULL; |
| 2856 | |
| 2857 | # if defined(EXITFREE) || defined(PROTO) |
| 2858 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2859 | free_cmdline_buf(void) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2860 | { |
| 2861 | vim_free(arshape_buf); |
| 2862 | } |
| 2863 | # endif |
| 2864 | #endif |
| 2865 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2866 | /* |
| 2867 | * Draw part of the cmdline at the current cursor position. But draw stars |
| 2868 | * when cmdline_star is TRUE. |
| 2869 | */ |
| 2870 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2871 | draw_cmdline(int start, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2872 | { |
| 2873 | #if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 2874 | int i; |
| 2875 | |
| 2876 | if (cmdline_star > 0) |
| 2877 | for (i = 0; i < len; ++i) |
| 2878 | { |
| 2879 | msg_putchar('*'); |
| 2880 | # ifdef FEAT_MBYTE |
| 2881 | if (has_mbyte) |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2882 | i += (*mb_ptr2len)(ccline.cmdbuff + start + i) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2883 | # endif |
| 2884 | } |
| 2885 | else |
| 2886 | #endif |
| 2887 | #ifdef FEAT_ARABIC |
| 2888 | if (p_arshape && !p_tbidi && enc_utf8 && len > 0) |
| 2889 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2890 | static int buflen = 0; |
| 2891 | char_u *p; |
| 2892 | int j; |
| 2893 | int newlen = 0; |
| 2894 | int mb_l; |
Bram Moolenaar | 4ea8fe1 | 2006-03-09 22:32:39 +0000 | [diff] [blame] | 2895 | int pc, pc1 = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2896 | int prev_c = 0; |
| 2897 | int prev_c1 = 0; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2898 | int u8c; |
| 2899 | int u8cc[MAX_MCO]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2900 | int nc = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2901 | |
| 2902 | /* |
| 2903 | * Do arabic shaping into a temporary buffer. This is very |
| 2904 | * inefficient! |
| 2905 | */ |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2906 | if (len * 2 + 2 > buflen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2907 | { |
| 2908 | /* Re-allocate the buffer. We keep it around to avoid a lot of |
| 2909 | * alloc()/free() calls. */ |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2910 | vim_free(arshape_buf); |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2911 | buflen = len * 2 + 2; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2912 | arshape_buf = alloc(buflen); |
| 2913 | if (arshape_buf == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2914 | return; /* out of memory */ |
| 2915 | } |
| 2916 | |
Bram Moolenaar | cafda4f | 2005-09-06 19:25:11 +0000 | [diff] [blame] | 2917 | if (utf_iscomposing(utf_ptr2char(ccline.cmdbuff + start))) |
| 2918 | { |
| 2919 | /* Prepend a space to draw the leading composing char on. */ |
| 2920 | arshape_buf[0] = ' '; |
| 2921 | newlen = 1; |
| 2922 | } |
| 2923 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2924 | for (j = start; j < start + len; j += mb_l) |
| 2925 | { |
| 2926 | p = ccline.cmdbuff + j; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2927 | u8c = utfc_ptr2char_len(p, u8cc, start + len - j); |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 2928 | mb_l = utfc_ptr2len_len(p, start + len - j); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2929 | if (ARABIC_CHAR(u8c)) |
| 2930 | { |
| 2931 | /* Do Arabic shaping. */ |
| 2932 | if (cmdmsg_rl) |
| 2933 | { |
| 2934 | /* displaying from right to left */ |
| 2935 | pc = prev_c; |
| 2936 | pc1 = prev_c1; |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2937 | prev_c1 = u8cc[0]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2938 | if (j + mb_l >= start + len) |
| 2939 | nc = NUL; |
| 2940 | else |
| 2941 | nc = utf_ptr2char(p + mb_l); |
| 2942 | } |
| 2943 | else |
| 2944 | { |
| 2945 | /* displaying from left to right */ |
| 2946 | if (j + mb_l >= start + len) |
| 2947 | pc = NUL; |
| 2948 | else |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2949 | { |
| 2950 | int pcc[MAX_MCO]; |
| 2951 | |
| 2952 | pc = utfc_ptr2char_len(p + mb_l, pcc, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2953 | start + len - j - mb_l); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2954 | pc1 = pcc[0]; |
| 2955 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2956 | nc = prev_c; |
| 2957 | } |
| 2958 | prev_c = u8c; |
| 2959 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2960 | u8c = arabic_shape(u8c, NULL, &u8cc[0], pc, pc1, nc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2961 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2962 | newlen += (*mb_char2bytes)(u8c, arshape_buf + newlen); |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2963 | if (u8cc[0] != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2964 | { |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 2965 | newlen += (*mb_char2bytes)(u8cc[0], arshape_buf + newlen); |
| 2966 | if (u8cc[1] != 0) |
| 2967 | newlen += (*mb_char2bytes)(u8cc[1], |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2968 | arshape_buf + newlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2969 | } |
| 2970 | } |
| 2971 | else |
| 2972 | { |
| 2973 | prev_c = u8c; |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2974 | mch_memmove(arshape_buf + newlen, p, mb_l); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2975 | newlen += mb_l; |
| 2976 | } |
| 2977 | } |
| 2978 | |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2979 | msg_outtrans_len(arshape_buf, newlen); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2980 | } |
| 2981 | else |
| 2982 | #endif |
| 2983 | msg_outtrans_len(ccline.cmdbuff + start, len); |
| 2984 | } |
| 2985 | |
| 2986 | /* |
| 2987 | * Put a character on the command line. Shifts the following text to the |
| 2988 | * right when "shift" is TRUE. Used for CTRL-V, CTRL-K, etc. |
| 2989 | * "c" must be printable (fit in one display cell)! |
| 2990 | */ |
| 2991 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 2992 | putcmdline(int c, int shift) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2993 | { |
| 2994 | if (cmd_silent) |
| 2995 | return; |
| 2996 | msg_no_more = TRUE; |
| 2997 | msg_putchar(c); |
| 2998 | if (shift) |
| 2999 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 3000 | msg_no_more = FALSE; |
| 3001 | cursorcmd(); |
Bram Moolenaar | 6a77d26 | 2017-07-16 15:24:01 +0200 | [diff] [blame] | 3002 | extra_char = c; |
| 3003 | extra_char_shift = shift; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3004 | } |
| 3005 | |
| 3006 | /* |
| 3007 | * Undo a putcmdline(c, FALSE). |
| 3008 | */ |
| 3009 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3010 | unputcmdline(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3011 | { |
| 3012 | if (cmd_silent) |
| 3013 | return; |
| 3014 | msg_no_more = TRUE; |
| 3015 | if (ccline.cmdlen == ccline.cmdpos) |
| 3016 | msg_putchar(' '); |
Bram Moolenaar | 64fdf5c | 2012-06-06 12:03:06 +0200 | [diff] [blame] | 3017 | #ifdef FEAT_MBYTE |
| 3018 | else if (has_mbyte) |
| 3019 | draw_cmdline(ccline.cmdpos, |
| 3020 | (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos)); |
| 3021 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3022 | else |
| 3023 | draw_cmdline(ccline.cmdpos, 1); |
| 3024 | msg_no_more = FALSE; |
| 3025 | cursorcmd(); |
Bram Moolenaar | 6a77d26 | 2017-07-16 15:24:01 +0200 | [diff] [blame] | 3026 | extra_char = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3027 | } |
| 3028 | |
| 3029 | /* |
| 3030 | * Put the given string, of the given length, onto the command line. |
| 3031 | * If len is -1, then STRLEN() is used to calculate the length. |
| 3032 | * If 'redraw' is TRUE then the new part of the command line, and the remaining |
| 3033 | * part will be redrawn, otherwise it will not. If this function is called |
| 3034 | * twice in a row, then 'redraw' should be FALSE and redrawcmd() should be |
| 3035 | * called afterwards. |
| 3036 | */ |
| 3037 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3038 | put_on_cmdline(char_u *str, int len, int redraw) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3039 | { |
| 3040 | int retval; |
| 3041 | int i; |
| 3042 | int m; |
| 3043 | int c; |
| 3044 | |
| 3045 | if (len < 0) |
| 3046 | len = (int)STRLEN(str); |
| 3047 | |
| 3048 | /* Check if ccline.cmdbuff needs to be longer */ |
| 3049 | if (ccline.cmdlen + len + 1 >= ccline.cmdbufflen) |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 3050 | retval = realloc_cmdbuff(ccline.cmdlen + len + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3051 | else |
| 3052 | retval = OK; |
| 3053 | if (retval == OK) |
| 3054 | { |
| 3055 | if (!ccline.overstrike) |
| 3056 | { |
| 3057 | mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, |
| 3058 | ccline.cmdbuff + ccline.cmdpos, |
| 3059 | (size_t)(ccline.cmdlen - ccline.cmdpos)); |
| 3060 | ccline.cmdlen += len; |
| 3061 | } |
| 3062 | else |
| 3063 | { |
| 3064 | #ifdef FEAT_MBYTE |
| 3065 | if (has_mbyte) |
| 3066 | { |
| 3067 | /* Count nr of characters in the new string. */ |
| 3068 | m = 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3069 | for (i = 0; i < len; i += (*mb_ptr2len)(str + i)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3070 | ++m; |
| 3071 | /* Count nr of bytes in cmdline that are overwritten by these |
| 3072 | * characters. */ |
| 3073 | for (i = ccline.cmdpos; i < ccline.cmdlen && m > 0; |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3074 | i += (*mb_ptr2len)(ccline.cmdbuff + i)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3075 | --m; |
| 3076 | if (i < ccline.cmdlen) |
| 3077 | { |
| 3078 | mch_memmove(ccline.cmdbuff + ccline.cmdpos + len, |
| 3079 | ccline.cmdbuff + i, (size_t)(ccline.cmdlen - i)); |
| 3080 | ccline.cmdlen += ccline.cmdpos + len - i; |
| 3081 | } |
| 3082 | else |
| 3083 | ccline.cmdlen = ccline.cmdpos + len; |
| 3084 | } |
| 3085 | else |
| 3086 | #endif |
| 3087 | if (ccline.cmdpos + len > ccline.cmdlen) |
| 3088 | ccline.cmdlen = ccline.cmdpos + len; |
| 3089 | } |
| 3090 | mch_memmove(ccline.cmdbuff + ccline.cmdpos, str, (size_t)len); |
| 3091 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
| 3092 | |
| 3093 | #ifdef FEAT_MBYTE |
| 3094 | if (enc_utf8) |
| 3095 | { |
| 3096 | /* When the inserted text starts with a composing character, |
| 3097 | * backup to the character before it. There could be two of them. |
| 3098 | */ |
| 3099 | i = 0; |
| 3100 | c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); |
| 3101 | while (ccline.cmdpos > 0 && utf_iscomposing(c)) |
| 3102 | { |
| 3103 | i = (*mb_head_off)(ccline.cmdbuff, |
| 3104 | ccline.cmdbuff + ccline.cmdpos - 1) + 1; |
| 3105 | ccline.cmdpos -= i; |
| 3106 | len += i; |
| 3107 | c = utf_ptr2char(ccline.cmdbuff + ccline.cmdpos); |
| 3108 | } |
| 3109 | # ifdef FEAT_ARABIC |
| 3110 | if (i == 0 && ccline.cmdpos > 0 && arabic_maycombine(c)) |
| 3111 | { |
| 3112 | /* Check the previous character for Arabic combining pair. */ |
| 3113 | i = (*mb_head_off)(ccline.cmdbuff, |
| 3114 | ccline.cmdbuff + ccline.cmdpos - 1) + 1; |
| 3115 | if (arabic_combine(utf_ptr2char(ccline.cmdbuff |
| 3116 | + ccline.cmdpos - i), c)) |
| 3117 | { |
| 3118 | ccline.cmdpos -= i; |
| 3119 | len += i; |
| 3120 | } |
| 3121 | else |
| 3122 | i = 0; |
| 3123 | } |
| 3124 | # endif |
| 3125 | if (i != 0) |
| 3126 | { |
| 3127 | /* Also backup the cursor position. */ |
| 3128 | i = ptr2cells(ccline.cmdbuff + ccline.cmdpos); |
| 3129 | ccline.cmdspos -= i; |
| 3130 | msg_col -= i; |
| 3131 | if (msg_col < 0) |
| 3132 | { |
| 3133 | msg_col += Columns; |
| 3134 | --msg_row; |
| 3135 | } |
| 3136 | } |
| 3137 | } |
| 3138 | #endif |
| 3139 | |
| 3140 | if (redraw && !cmd_silent) |
| 3141 | { |
| 3142 | msg_no_more = TRUE; |
| 3143 | i = cmdline_row; |
Bram Moolenaar | 73dc59a | 2011-09-30 17:46:21 +0200 | [diff] [blame] | 3144 | cursorcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3145 | draw_cmdline(ccline.cmdpos, ccline.cmdlen - ccline.cmdpos); |
| 3146 | /* Avoid clearing the rest of the line too often. */ |
| 3147 | if (cmdline_row != i || ccline.overstrike) |
| 3148 | msg_clr_eos(); |
| 3149 | msg_no_more = FALSE; |
| 3150 | } |
| 3151 | #ifdef FEAT_FKMAP |
| 3152 | /* |
| 3153 | * If we are in Farsi command mode, the character input must be in |
| 3154 | * Insert mode. So do not advance the cmdpos. |
| 3155 | */ |
| 3156 | if (!cmd_fkmap) |
| 3157 | #endif |
| 3158 | { |
| 3159 | if (KeyTyped) |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 3160 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3161 | m = Columns * Rows; |
Bram Moolenaar | 482aaeb | 2005-09-29 18:26:07 +0000 | [diff] [blame] | 3162 | if (m < 0) /* overflow, Columns or Rows at weird value */ |
| 3163 | m = MAXCOL; |
| 3164 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3165 | else |
| 3166 | m = MAXCOL; |
| 3167 | for (i = 0; i < len; ++i) |
| 3168 | { |
| 3169 | c = cmdline_charsize(ccline.cmdpos); |
| 3170 | #ifdef FEAT_MBYTE |
| 3171 | /* count ">" for a double-wide char that doesn't fit. */ |
| 3172 | if (has_mbyte) |
| 3173 | correct_cmdspos(ccline.cmdpos, c); |
| 3174 | #endif |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 3175 | /* Stop cursor at the end of the screen, but do increment the |
| 3176 | * insert position, so that entering a very long command |
| 3177 | * works, even though you can't see it. */ |
| 3178 | if (ccline.cmdspos + c < m) |
| 3179 | ccline.cmdspos += c; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3180 | #ifdef FEAT_MBYTE |
| 3181 | if (has_mbyte) |
| 3182 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 3183 | c = (*mb_ptr2len)(ccline.cmdbuff + ccline.cmdpos) - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3184 | if (c > len - i - 1) |
| 3185 | c = len - i - 1; |
| 3186 | ccline.cmdpos += c; |
| 3187 | i += c; |
| 3188 | } |
| 3189 | #endif |
| 3190 | ++ccline.cmdpos; |
| 3191 | } |
| 3192 | } |
| 3193 | } |
| 3194 | if (redraw) |
| 3195 | msg_check(); |
| 3196 | return retval; |
| 3197 | } |
| 3198 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3199 | static struct cmdline_info prev_ccline; |
| 3200 | static int prev_ccline_used = FALSE; |
| 3201 | |
| 3202 | /* |
| 3203 | * Save ccline, because obtaining the "=" register may execute "normal :cmd" |
| 3204 | * and overwrite it. But get_cmdline_str() may need it, thus make it |
| 3205 | * available globally in prev_ccline. |
| 3206 | */ |
| 3207 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3208 | save_cmdline(struct cmdline_info *ccp) |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3209 | { |
| 3210 | if (!prev_ccline_used) |
| 3211 | { |
| 3212 | vim_memset(&prev_ccline, 0, sizeof(struct cmdline_info)); |
| 3213 | prev_ccline_used = TRUE; |
| 3214 | } |
| 3215 | *ccp = prev_ccline; |
| 3216 | prev_ccline = ccline; |
| 3217 | ccline.cmdbuff = NULL; |
| 3218 | ccline.cmdprompt = NULL; |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 3219 | ccline.xpc = NULL; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3220 | } |
| 3221 | |
| 3222 | /* |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 3223 | * Restore ccline after it has been saved with save_cmdline(). |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3224 | */ |
| 3225 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3226 | restore_cmdline(struct cmdline_info *ccp) |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3227 | { |
| 3228 | ccline = prev_ccline; |
| 3229 | prev_ccline = *ccp; |
| 3230 | } |
| 3231 | |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3232 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 3233 | /* |
| 3234 | * Save the command line into allocated memory. Returns a pointer to be |
| 3235 | * passed to restore_cmdline_alloc() later. |
| 3236 | * Returns NULL when failed. |
| 3237 | */ |
| 3238 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3239 | save_cmdline_alloc(void) |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3240 | { |
| 3241 | struct cmdline_info *p; |
| 3242 | |
| 3243 | p = (struct cmdline_info *)alloc((unsigned)sizeof(struct cmdline_info)); |
| 3244 | if (p != NULL) |
| 3245 | save_cmdline(p); |
| 3246 | return (char_u *)p; |
| 3247 | } |
| 3248 | |
| 3249 | /* |
| 3250 | * Restore the command line from the return value of save_cmdline_alloc(). |
| 3251 | */ |
| 3252 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3253 | restore_cmdline_alloc(char_u *p) |
Bram Moolenaar | 5a30542 | 2006-04-28 22:38:25 +0000 | [diff] [blame] | 3254 | { |
| 3255 | if (p != NULL) |
| 3256 | { |
| 3257 | restore_cmdline((struct cmdline_info *)p); |
| 3258 | vim_free(p); |
| 3259 | } |
| 3260 | } |
| 3261 | #endif |
| 3262 | |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3263 | /* |
Bram Moolenaar | 6f62fed | 2015-12-17 14:04:24 +0100 | [diff] [blame] | 3264 | * Paste a yank register into the command line. |
| 3265 | * Used by CTRL-R command in command-line mode. |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3266 | * insert_reg() can't be used here, because special characters from the |
| 3267 | * register contents will be interpreted as commands. |
| 3268 | * |
Bram Moolenaar | 6f62fed | 2015-12-17 14:04:24 +0100 | [diff] [blame] | 3269 | * Return FAIL for failure, OK otherwise. |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3270 | */ |
| 3271 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3272 | cmdline_paste( |
| 3273 | int regname, |
| 3274 | int literally, /* Insert text literally instead of "as typed" */ |
| 3275 | int remcr) /* remove trailing CR */ |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3276 | { |
| 3277 | long i; |
| 3278 | char_u *arg; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3279 | char_u *p; |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3280 | int allocated; |
| 3281 | struct cmdline_info save_ccline; |
| 3282 | |
| 3283 | /* check for valid regname; also accept special characters for CTRL-R in |
| 3284 | * the command line */ |
| 3285 | if (regname != Ctrl_F && regname != Ctrl_P && regname != Ctrl_W |
| 3286 | && regname != Ctrl_A && !valid_yank_reg(regname, FALSE)) |
| 3287 | return FAIL; |
| 3288 | |
| 3289 | /* A register containing CTRL-R can cause an endless loop. Allow using |
| 3290 | * CTRL-C to break the loop. */ |
| 3291 | line_breakcheck(); |
| 3292 | if (got_int) |
| 3293 | return FAIL; |
| 3294 | |
| 3295 | #ifdef FEAT_CLIPBOARD |
| 3296 | regname = may_get_selection(regname); |
| 3297 | #endif |
| 3298 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3299 | /* Need to save and restore ccline. And set "textlock" to avoid nasty |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3300 | * things like going to another buffer when evaluating an expression. */ |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3301 | save_cmdline(&save_ccline); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3302 | ++textlock; |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3303 | i = get_spec_reg(regname, &arg, &allocated, TRUE); |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 3304 | --textlock; |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 3305 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3306 | |
| 3307 | if (i) |
| 3308 | { |
| 3309 | /* Got the value of a special register in "arg". */ |
| 3310 | if (arg == NULL) |
| 3311 | return FAIL; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3312 | |
| 3313 | /* When 'incsearch' is set and CTRL-R CTRL-W used: skip the duplicate |
| 3314 | * part of the word. */ |
| 3315 | p = arg; |
| 3316 | if (p_is && regname == Ctrl_W) |
| 3317 | { |
| 3318 | char_u *w; |
| 3319 | int len; |
| 3320 | |
| 3321 | /* Locate start of last word in the cmd buffer. */ |
Bram Moolenaar | 80ae7b2 | 2011-07-07 16:44:37 +0200 | [diff] [blame] | 3322 | for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; ) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3323 | { |
| 3324 | #ifdef FEAT_MBYTE |
| 3325 | if (has_mbyte) |
| 3326 | { |
| 3327 | len = (*mb_head_off)(ccline.cmdbuff, w - 1) + 1; |
| 3328 | if (!vim_iswordc(mb_ptr2char(w - len))) |
| 3329 | break; |
| 3330 | w -= len; |
| 3331 | } |
| 3332 | else |
| 3333 | #endif |
| 3334 | { |
| 3335 | if (!vim_iswordc(w[-1])) |
| 3336 | break; |
| 3337 | --w; |
| 3338 | } |
| 3339 | } |
Bram Moolenaar | 80ae7b2 | 2011-07-07 16:44:37 +0200 | [diff] [blame] | 3340 | len = (int)((ccline.cmdbuff + ccline.cmdpos) - w); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 3341 | if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0) |
| 3342 | p += len; |
| 3343 | } |
| 3344 | |
| 3345 | cmdline_paste_str(p, literally); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3346 | if (allocated) |
| 3347 | vim_free(arg); |
| 3348 | return OK; |
| 3349 | } |
| 3350 | |
Bram Moolenaar | 1769d5a | 2006-10-17 14:25:24 +0000 | [diff] [blame] | 3351 | return cmdline_paste_reg(regname, literally, remcr); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3352 | } |
| 3353 | |
| 3354 | /* |
| 3355 | * Put a string on the command line. |
| 3356 | * When "literally" is TRUE, insert literally. |
| 3357 | * When "literally" is FALSE, insert as typed, but don't leave the command |
| 3358 | * line. |
| 3359 | */ |
| 3360 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3361 | cmdline_paste_str(char_u *s, int literally) |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3362 | { |
| 3363 | int c, cv; |
| 3364 | |
| 3365 | if (literally) |
| 3366 | put_on_cmdline(s, -1, TRUE); |
| 3367 | else |
| 3368 | while (*s != NUL) |
| 3369 | { |
| 3370 | cv = *s; |
| 3371 | if (cv == Ctrl_V && s[1]) |
| 3372 | ++s; |
| 3373 | #ifdef FEAT_MBYTE |
| 3374 | if (has_mbyte) |
Bram Moolenaar | 48be32b | 2008-06-20 10:56:16 +0000 | [diff] [blame] | 3375 | c = mb_cptr2char_adv(&s); |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3376 | else |
| 3377 | #endif |
| 3378 | c = *s++; |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 3379 | if (cv == Ctrl_V || c == ESC || c == Ctrl_C |
| 3380 | || c == CAR || c == NL || c == Ctrl_L |
Bram Moolenaar | 8299df9 | 2004-07-10 09:47:34 +0000 | [diff] [blame] | 3381 | #ifdef UNIX |
| 3382 | || c == intr_char |
| 3383 | #endif |
| 3384 | || (c == Ctrl_BSL && *s == Ctrl_N)) |
| 3385 | stuffcharReadbuff(Ctrl_V); |
| 3386 | stuffcharReadbuff(c); |
| 3387 | } |
| 3388 | } |
| 3389 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3390 | #ifdef FEAT_WILDMENU |
| 3391 | /* |
| 3392 | * Delete characters on the command line, from "from" to the current |
| 3393 | * position. |
| 3394 | */ |
| 3395 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3396 | cmdline_del(int from) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3397 | { |
| 3398 | mch_memmove(ccline.cmdbuff + from, ccline.cmdbuff + ccline.cmdpos, |
| 3399 | (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); |
| 3400 | ccline.cmdlen -= ccline.cmdpos - from; |
| 3401 | ccline.cmdpos = from; |
| 3402 | } |
| 3403 | #endif |
| 3404 | |
| 3405 | /* |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 3406 | * This function is called when the screen size changes and with incremental |
| 3407 | * search and in other situations where the command line may have been |
| 3408 | * overwritten. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3409 | */ |
| 3410 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3411 | redrawcmdline(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3412 | { |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame] | 3413 | redrawcmdline_ex(TRUE); |
| 3414 | } |
| 3415 | |
| 3416 | void |
| 3417 | redrawcmdline_ex(int do_compute_cmdrow) |
| 3418 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3419 | if (cmd_silent) |
| 3420 | return; |
| 3421 | need_wait_return = FALSE; |
Bram Moolenaar | 29ae377 | 2017-04-30 19:39:39 +0200 | [diff] [blame] | 3422 | if (do_compute_cmdrow) |
| 3423 | compute_cmdrow(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3424 | redrawcmd(); |
| 3425 | cursorcmd(); |
| 3426 | } |
| 3427 | |
| 3428 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3429 | redrawcmdprompt(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3430 | { |
| 3431 | int i; |
| 3432 | |
| 3433 | if (cmd_silent) |
| 3434 | return; |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 3435 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3436 | msg_putchar(ccline.cmdfirstc); |
| 3437 | if (ccline.cmdprompt != NULL) |
| 3438 | { |
| 3439 | msg_puts_attr(ccline.cmdprompt, ccline.cmdattr); |
| 3440 | ccline.cmdindent = msg_col + (msg_row - cmdline_row) * Columns; |
| 3441 | /* do the reverse of set_cmdspos() */ |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 3442 | if (ccline.cmdfirstc != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3443 | --ccline.cmdindent; |
| 3444 | } |
| 3445 | else |
| 3446 | for (i = ccline.cmdindent; i > 0; --i) |
| 3447 | msg_putchar(' '); |
| 3448 | } |
| 3449 | |
| 3450 | /* |
| 3451 | * Redraw what is currently on the command line. |
| 3452 | */ |
| 3453 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3454 | redrawcmd(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3455 | { |
| 3456 | if (cmd_silent) |
| 3457 | return; |
| 3458 | |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 3459 | /* when 'incsearch' is set there may be no command line while redrawing */ |
| 3460 | if (ccline.cmdbuff == NULL) |
| 3461 | { |
| 3462 | windgoto(cmdline_row, 0); |
| 3463 | msg_clr_eos(); |
| 3464 | return; |
| 3465 | } |
| 3466 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3467 | msg_start(); |
| 3468 | redrawcmdprompt(); |
| 3469 | |
| 3470 | /* Don't use more prompt, truncate the cmdline if it doesn't fit. */ |
| 3471 | msg_no_more = TRUE; |
| 3472 | draw_cmdline(0, ccline.cmdlen); |
| 3473 | msg_clr_eos(); |
| 3474 | msg_no_more = FALSE; |
| 3475 | |
| 3476 | set_cmdspos_cursor(); |
Bram Moolenaar | a92522f | 2017-07-15 15:21:38 +0200 | [diff] [blame] | 3477 | if (extra_char != NUL) |
Bram Moolenaar | 6a77d26 | 2017-07-16 15:24:01 +0200 | [diff] [blame] | 3478 | putcmdline(extra_char, extra_char_shift); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3479 | |
| 3480 | /* |
| 3481 | * An emsg() before may have set msg_scroll. This is used in normal mode, |
| 3482 | * in cmdline mode we can reset them now. |
| 3483 | */ |
| 3484 | msg_scroll = FALSE; /* next message overwrites cmdline */ |
| 3485 | |
| 3486 | /* Typing ':' at the more prompt may set skip_redraw. We don't want this |
| 3487 | * in cmdline mode */ |
| 3488 | skip_redraw = FALSE; |
| 3489 | } |
| 3490 | |
| 3491 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3492 | compute_cmdrow(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3493 | { |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 3494 | if (exmode_active || msg_scrolled != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3495 | cmdline_row = Rows - 1; |
| 3496 | else |
| 3497 | cmdline_row = W_WINROW(lastwin) + lastwin->w_height |
Bram Moolenaar | e0de17d | 2017-09-24 16:24:34 +0200 | [diff] [blame] | 3498 | + lastwin->w_status_height; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3499 | } |
| 3500 | |
| 3501 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3502 | cursorcmd(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3503 | { |
| 3504 | if (cmd_silent) |
| 3505 | return; |
| 3506 | |
| 3507 | #ifdef FEAT_RIGHTLEFT |
| 3508 | if (cmdmsg_rl) |
| 3509 | { |
| 3510 | msg_row = cmdline_row + (ccline.cmdspos / (int)(Columns - 1)); |
| 3511 | msg_col = (int)Columns - (ccline.cmdspos % (int)(Columns - 1)) - 1; |
| 3512 | if (msg_row <= 0) |
| 3513 | msg_row = Rows - 1; |
| 3514 | } |
| 3515 | else |
| 3516 | #endif |
| 3517 | { |
| 3518 | msg_row = cmdline_row + (ccline.cmdspos / (int)Columns); |
| 3519 | msg_col = ccline.cmdspos % (int)Columns; |
| 3520 | if (msg_row >= Rows) |
| 3521 | msg_row = Rows - 1; |
| 3522 | } |
| 3523 | |
| 3524 | windgoto(msg_row, msg_col); |
| 3525 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
Bram Moolenaar | 5c6dbcb | 2017-08-30 22:00:20 +0200 | [diff] [blame] | 3526 | if (p_imst == IM_ON_THE_SPOT) |
| 3527 | redrawcmd_preedit(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3528 | #endif |
| 3529 | #ifdef MCH_CURSOR_SHAPE |
| 3530 | mch_update_cursor(); |
| 3531 | #endif |
| 3532 | } |
| 3533 | |
| 3534 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3535 | gotocmdline(int clr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3536 | { |
| 3537 | msg_start(); |
| 3538 | #ifdef FEAT_RIGHTLEFT |
| 3539 | if (cmdmsg_rl) |
| 3540 | msg_col = Columns - 1; |
| 3541 | else |
| 3542 | #endif |
| 3543 | msg_col = 0; /* always start in column 0 */ |
| 3544 | if (clr) /* clear the bottom line(s) */ |
| 3545 | msg_clr_eos(); /* will reset clear_cmdline */ |
| 3546 | windgoto(cmdline_row, 0); |
| 3547 | } |
| 3548 | |
| 3549 | /* |
| 3550 | * Check the word in front of the cursor for an abbreviation. |
| 3551 | * Called when the non-id character "c" has been entered. |
| 3552 | * When an abbreviation is recognized it is removed from the text with |
| 3553 | * backspaces and the replacement string is inserted, followed by "c". |
| 3554 | */ |
| 3555 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3556 | ccheck_abbr(int c) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3557 | { |
| 3558 | if (p_paste || no_abbr) /* no abbreviations or in paste mode */ |
| 3559 | return FALSE; |
| 3560 | |
| 3561 | return check_abbr(c, ccline.cmdbuff, ccline.cmdpos, 0); |
| 3562 | } |
| 3563 | |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 3564 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 3565 | static int |
| 3566 | #ifdef __BORLANDC__ |
| 3567 | _RTLENTRYF |
| 3568 | #endif |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3569 | sort_func_compare(const void *s1, const void *s2) |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 3570 | { |
| 3571 | char_u *p1 = *(char_u **)s1; |
| 3572 | char_u *p2 = *(char_u **)s2; |
| 3573 | |
| 3574 | if (*p1 != '<' && *p2 == '<') return -1; |
| 3575 | if (*p1 == '<' && *p2 != '<') return 1; |
| 3576 | return STRCMP(p1, p2); |
| 3577 | } |
| 3578 | #endif |
| 3579 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3580 | /* |
| 3581 | * Return FAIL if this is not an appropriate context in which to do |
| 3582 | * completion of anything, return OK if it is (even if there are no matches). |
| 3583 | * For the caller, this means that the character is just passed through like a |
| 3584 | * normal character (instead of being expanded). This allows :s/^I^D etc. |
| 3585 | */ |
| 3586 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3587 | nextwild( |
| 3588 | expand_T *xp, |
| 3589 | int type, |
| 3590 | int options, /* extra options for ExpandOne() */ |
| 3591 | int escape) /* if TRUE, escape the returned matches */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3592 | { |
| 3593 | int i, j; |
| 3594 | char_u *p1; |
| 3595 | char_u *p2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3596 | int difflen; |
| 3597 | int v; |
| 3598 | |
| 3599 | if (xp->xp_numfiles == -1) |
| 3600 | { |
| 3601 | set_expand_context(xp); |
| 3602 | cmd_showtail = expand_showtail(xp); |
| 3603 | } |
| 3604 | |
| 3605 | if (xp->xp_context == EXPAND_UNSUCCESSFUL) |
| 3606 | { |
| 3607 | beep_flush(); |
| 3608 | return OK; /* Something illegal on command line */ |
| 3609 | } |
| 3610 | if (xp->xp_context == EXPAND_NOTHING) |
| 3611 | { |
| 3612 | /* Caller can use the character as a normal char instead */ |
| 3613 | return FAIL; |
| 3614 | } |
| 3615 | |
| 3616 | MSG_PUTS("..."); /* show that we are busy */ |
| 3617 | out_flush(); |
| 3618 | |
| 3619 | i = (int)(xp->xp_pattern - ccline.cmdbuff); |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3620 | xp->xp_pattern_len = ccline.cmdpos - i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3621 | |
| 3622 | if (type == WILD_NEXT || type == WILD_PREV) |
| 3623 | { |
| 3624 | /* |
| 3625 | * Get next/previous match for a previous expanded pattern. |
| 3626 | */ |
| 3627 | p2 = ExpandOne(xp, NULL, NULL, 0, type); |
| 3628 | } |
| 3629 | else |
| 3630 | { |
| 3631 | /* |
| 3632 | * Translate string into pattern and expand it. |
| 3633 | */ |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3634 | if ((p1 = addstar(xp->xp_pattern, xp->xp_pattern_len, |
| 3635 | xp->xp_context)) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3636 | p2 = NULL; |
| 3637 | else |
| 3638 | { |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3639 | int use_options = options | |
Bram Moolenaar | b347963 | 2012-11-28 16:49:58 +0100 | [diff] [blame] | 3640 | WILD_HOME_REPLACE|WILD_ADD_SLASH|WILD_SILENT; |
| 3641 | if (escape) |
| 3642 | use_options |= WILD_ESCAPE; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3643 | |
| 3644 | if (p_wic) |
| 3645 | use_options += WILD_ICASE; |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3646 | p2 = ExpandOne(xp, p1, |
| 3647 | vim_strnsave(&ccline.cmdbuff[i], xp->xp_pattern_len), |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3648 | use_options, type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3649 | vim_free(p1); |
Bram Moolenaar | 2660c0e | 2010-01-19 14:59:56 +0100 | [diff] [blame] | 3650 | /* longest match: make sure it is not shorter, happens with :help */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3651 | if (p2 != NULL && type == WILD_LONGEST) |
| 3652 | { |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3653 | for (j = 0; j < xp->xp_pattern_len; ++j) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3654 | if (ccline.cmdbuff[i + j] == '*' |
| 3655 | || ccline.cmdbuff[i + j] == '?') |
| 3656 | break; |
| 3657 | if ((int)STRLEN(p2) < j) |
| 3658 | { |
| 3659 | vim_free(p2); |
| 3660 | p2 = NULL; |
| 3661 | } |
| 3662 | } |
| 3663 | } |
| 3664 | } |
| 3665 | |
| 3666 | if (p2 != NULL && !got_int) |
| 3667 | { |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3668 | difflen = (int)STRLEN(p2) - xp->xp_pattern_len; |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 3669 | if (ccline.cmdlen + difflen + 4 > ccline.cmdbufflen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3670 | { |
Bram Moolenaar | 673b87b | 2010-08-13 19:12:07 +0200 | [diff] [blame] | 3671 | v = realloc_cmdbuff(ccline.cmdlen + difflen + 4); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3672 | xp->xp_pattern = ccline.cmdbuff + i; |
| 3673 | } |
| 3674 | else |
| 3675 | v = OK; |
| 3676 | if (v == OK) |
| 3677 | { |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 3678 | mch_memmove(&ccline.cmdbuff[ccline.cmdpos + difflen], |
| 3679 | &ccline.cmdbuff[ccline.cmdpos], |
| 3680 | (size_t)(ccline.cmdlen - ccline.cmdpos + 1)); |
| 3681 | mch_memmove(&ccline.cmdbuff[i], p2, STRLEN(p2)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3682 | ccline.cmdlen += difflen; |
| 3683 | ccline.cmdpos += difflen; |
| 3684 | } |
| 3685 | } |
| 3686 | vim_free(p2); |
| 3687 | |
| 3688 | redrawcmd(); |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 3689 | cursorcmd(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3690 | |
| 3691 | /* When expanding a ":map" command and no matches are found, assume that |
| 3692 | * the key is supposed to be inserted literally */ |
| 3693 | if (xp->xp_context == EXPAND_MAPPINGS && p2 == NULL) |
| 3694 | return FAIL; |
| 3695 | |
| 3696 | if (xp->xp_numfiles <= 0 && p2 == NULL) |
| 3697 | beep_flush(); |
| 3698 | else if (xp->xp_numfiles == 1) |
| 3699 | /* free expanded pattern */ |
| 3700 | (void)ExpandOne(xp, NULL, NULL, 0, WILD_FREE); |
| 3701 | |
| 3702 | return OK; |
| 3703 | } |
| 3704 | |
| 3705 | /* |
| 3706 | * Do wildcard expansion on the string 'str'. |
| 3707 | * Chars that should not be expanded must be preceded with a backslash. |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 3708 | * Return a pointer to allocated memory containing the new string. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3709 | * Return NULL for failure. |
| 3710 | * |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3711 | * "orig" is the originally expanded string, copied to allocated memory. It |
| 3712 | * should either be kept in orig_save or freed. When "mode" is WILD_NEXT or |
| 3713 | * WILD_PREV "orig" should be NULL. |
| 3714 | * |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 3715 | * Results are cached in xp->xp_files and xp->xp_numfiles, except when "mode" |
| 3716 | * is WILD_EXPAND_FREE or WILD_ALL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3717 | * |
| 3718 | * mode = WILD_FREE: just free previously expanded matches |
| 3719 | * mode = WILD_EXPAND_FREE: normal expansion, do not keep matches |
| 3720 | * mode = WILD_EXPAND_KEEP: normal expansion, keep matches |
| 3721 | * mode = WILD_NEXT: use next match in multiple match, wrap to first |
| 3722 | * mode = WILD_PREV: use previous match in multiple match, wrap to first |
| 3723 | * mode = WILD_ALL: return all matches concatenated |
| 3724 | * mode = WILD_LONGEST: return longest matched part |
Bram Moolenaar | 146e9c3 | 2012-03-07 19:18:23 +0100 | [diff] [blame] | 3725 | * mode = WILD_ALL_KEEP: get all matches, keep matches |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3726 | * |
| 3727 | * options = WILD_LIST_NOTFOUND: list entries without a match |
| 3728 | * options = WILD_HOME_REPLACE: do home_replace() for buffer names |
| 3729 | * options = WILD_USE_NL: Use '\n' for WILD_ALL |
| 3730 | * options = WILD_NO_BEEP: Don't beep for multiple matches |
| 3731 | * options = WILD_ADD_SLASH: add a slash after directory names |
| 3732 | * options = WILD_KEEP_ALL: don't remove 'wildignore' entries |
| 3733 | * options = WILD_SILENT: don't print warning messages |
| 3734 | * options = WILD_ESCAPE: put backslash before special chars |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 3735 | * options = WILD_ICASE: ignore case for files |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3736 | * |
| 3737 | * The variables xp->xp_context and xp->xp_backslash must have been set! |
| 3738 | */ |
| 3739 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3740 | ExpandOne( |
| 3741 | expand_T *xp, |
| 3742 | char_u *str, |
| 3743 | char_u *orig, /* allocated copy of original of expanded string */ |
| 3744 | int options, |
| 3745 | int mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3746 | { |
| 3747 | char_u *ss = NULL; |
| 3748 | static int findex; |
| 3749 | static char_u *orig_save = NULL; /* kept value of orig */ |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3750 | int orig_saved = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3751 | int i; |
| 3752 | long_u len; |
| 3753 | int non_suf_match; /* number without matching suffix */ |
| 3754 | |
| 3755 | /* |
| 3756 | * first handle the case of using an old match |
| 3757 | */ |
| 3758 | if (mode == WILD_NEXT || mode == WILD_PREV) |
| 3759 | { |
| 3760 | if (xp->xp_numfiles > 0) |
| 3761 | { |
| 3762 | if (mode == WILD_PREV) |
| 3763 | { |
| 3764 | if (findex == -1) |
| 3765 | findex = xp->xp_numfiles; |
| 3766 | --findex; |
| 3767 | } |
| 3768 | else /* mode == WILD_NEXT */ |
| 3769 | ++findex; |
| 3770 | |
| 3771 | /* |
| 3772 | * When wrapping around, return the original string, set findex to |
| 3773 | * -1. |
| 3774 | */ |
| 3775 | if (findex < 0) |
| 3776 | { |
| 3777 | if (orig_save == NULL) |
| 3778 | findex = xp->xp_numfiles - 1; |
| 3779 | else |
| 3780 | findex = -1; |
| 3781 | } |
| 3782 | if (findex >= xp->xp_numfiles) |
| 3783 | { |
| 3784 | if (orig_save == NULL) |
| 3785 | findex = 0; |
| 3786 | else |
| 3787 | findex = -1; |
| 3788 | } |
| 3789 | #ifdef FEAT_WILDMENU |
| 3790 | if (p_wmnu) |
| 3791 | win_redr_status_matches(xp, xp->xp_numfiles, xp->xp_files, |
| 3792 | findex, cmd_showtail); |
| 3793 | #endif |
| 3794 | if (findex == -1) |
| 3795 | return vim_strsave(orig_save); |
| 3796 | return vim_strsave(xp->xp_files[findex]); |
| 3797 | } |
| 3798 | else |
| 3799 | return NULL; |
| 3800 | } |
| 3801 | |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3802 | /* free old names */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3803 | if (xp->xp_numfiles != -1 && mode != WILD_ALL && mode != WILD_LONGEST) |
| 3804 | { |
| 3805 | FreeWild(xp->xp_numfiles, xp->xp_files); |
| 3806 | xp->xp_numfiles = -1; |
| 3807 | vim_free(orig_save); |
| 3808 | orig_save = NULL; |
| 3809 | } |
| 3810 | findex = 0; |
| 3811 | |
| 3812 | if (mode == WILD_FREE) /* only release file name */ |
| 3813 | return NULL; |
| 3814 | |
| 3815 | if (xp->xp_numfiles == -1) |
| 3816 | { |
| 3817 | vim_free(orig_save); |
| 3818 | orig_save = orig; |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3819 | orig_saved = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3820 | |
| 3821 | /* |
| 3822 | * Do the expansion. |
| 3823 | */ |
| 3824 | if (ExpandFromContext(xp, str, &xp->xp_numfiles, &xp->xp_files, |
| 3825 | options) == FAIL) |
| 3826 | { |
| 3827 | #ifdef FNAME_ILLEGAL |
| 3828 | /* Illegal file name has been silently skipped. But when there |
| 3829 | * are wildcards, the real problem is that there was no match, |
| 3830 | * causing the pattern to be added, which has illegal characters. |
| 3831 | */ |
| 3832 | if (!(options & WILD_SILENT) && (options & WILD_LIST_NOTFOUND)) |
| 3833 | EMSG2(_(e_nomatch2), str); |
| 3834 | #endif |
| 3835 | } |
| 3836 | else if (xp->xp_numfiles == 0) |
| 3837 | { |
| 3838 | if (!(options & WILD_SILENT)) |
| 3839 | EMSG2(_(e_nomatch2), str); |
| 3840 | } |
| 3841 | else |
| 3842 | { |
| 3843 | /* Escape the matches for use on the command line. */ |
| 3844 | ExpandEscape(xp, str, xp->xp_numfiles, xp->xp_files, options); |
| 3845 | |
| 3846 | /* |
| 3847 | * Check for matching suffixes in file names. |
| 3848 | */ |
Bram Moolenaar | 146e9c3 | 2012-03-07 19:18:23 +0100 | [diff] [blame] | 3849 | if (mode != WILD_ALL && mode != WILD_ALL_KEEP |
| 3850 | && mode != WILD_LONGEST) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3851 | { |
| 3852 | if (xp->xp_numfiles) |
| 3853 | non_suf_match = xp->xp_numfiles; |
| 3854 | else |
| 3855 | non_suf_match = 1; |
| 3856 | if ((xp->xp_context == EXPAND_FILES |
| 3857 | || xp->xp_context == EXPAND_DIRECTORIES) |
| 3858 | && xp->xp_numfiles > 1) |
| 3859 | { |
| 3860 | /* |
| 3861 | * More than one match; check suffix. |
| 3862 | * The files will have been sorted on matching suffix in |
| 3863 | * expand_wildcards, only need to check the first two. |
| 3864 | */ |
| 3865 | non_suf_match = 0; |
| 3866 | for (i = 0; i < 2; ++i) |
| 3867 | if (match_suffix(xp->xp_files[i])) |
| 3868 | ++non_suf_match; |
| 3869 | } |
| 3870 | if (non_suf_match != 1) |
| 3871 | { |
| 3872 | /* Can we ever get here unless it's while expanding |
| 3873 | * interactively? If not, we can get rid of this all |
| 3874 | * together. Don't really want to wait for this message |
| 3875 | * (and possibly have to hit return to continue!). |
| 3876 | */ |
| 3877 | if (!(options & WILD_SILENT)) |
| 3878 | EMSG(_(e_toomany)); |
| 3879 | else if (!(options & WILD_NO_BEEP)) |
| 3880 | beep_flush(); |
| 3881 | } |
| 3882 | if (!(non_suf_match != 1 && mode == WILD_EXPAND_FREE)) |
| 3883 | ss = vim_strsave(xp->xp_files[0]); |
| 3884 | } |
| 3885 | } |
| 3886 | } |
| 3887 | |
| 3888 | /* Find longest common part */ |
| 3889 | if (mode == WILD_LONGEST && xp->xp_numfiles > 0) |
| 3890 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3891 | int mb_len = 1; |
| 3892 | int c0, ci; |
| 3893 | |
| 3894 | for (len = 0; xp->xp_files[0][len]; len += mb_len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3895 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3896 | #ifdef FEAT_MBYTE |
| 3897 | if (has_mbyte) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3898 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3899 | mb_len = (*mb_ptr2len)(&xp->xp_files[0][len]); |
| 3900 | c0 =(* mb_ptr2char)(&xp->xp_files[0][len]); |
| 3901 | } |
| 3902 | else |
| 3903 | #endif |
Bram Moolenaar | e4eda3b | 2015-11-21 16:28:50 +0100 | [diff] [blame] | 3904 | c0 = xp->xp_files[0][len]; |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3905 | for (i = 1; i < xp->xp_numfiles; ++i) |
| 3906 | { |
| 3907 | #ifdef FEAT_MBYTE |
| 3908 | if (has_mbyte) |
| 3909 | ci =(* mb_ptr2char)(&xp->xp_files[i][len]); |
| 3910 | else |
| 3911 | #endif |
| 3912 | ci = xp->xp_files[i][len]; |
Bram Moolenaar | 71afbfe | 2013-03-19 16:49:16 +0100 | [diff] [blame] | 3913 | if (p_fic && (xp->xp_context == EXPAND_DIRECTORIES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3914 | || xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 3915 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 71afbfe | 2013-03-19 16:49:16 +0100 | [diff] [blame] | 3916 | || xp->xp_context == EXPAND_BUFFERS)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3917 | { |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3918 | if (MB_TOLOWER(c0) != MB_TOLOWER(ci)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3919 | break; |
| 3920 | } |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3921 | else if (c0 != ci) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3922 | break; |
| 3923 | } |
| 3924 | if (i < xp->xp_numfiles) |
| 3925 | { |
| 3926 | if (!(options & WILD_NO_BEEP)) |
Bram Moolenaar | 165bc69 | 2015-07-21 17:53:25 +0200 | [diff] [blame] | 3927 | vim_beep(BO_WILD); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3928 | break; |
| 3929 | } |
| 3930 | } |
Bram Moolenaar | 4f8fa16 | 2015-11-19 19:00:05 +0100 | [diff] [blame] | 3931 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3932 | ss = alloc((unsigned)len + 1); |
| 3933 | if (ss) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 3934 | vim_strncpy(ss, xp->xp_files[0], (size_t)len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3935 | findex = -1; /* next p_wc gets first one */ |
| 3936 | } |
| 3937 | |
| 3938 | /* Concatenate all matching names */ |
| 3939 | if (mode == WILD_ALL && xp->xp_numfiles > 0) |
| 3940 | { |
| 3941 | len = 0; |
| 3942 | for (i = 0; i < xp->xp_numfiles; ++i) |
| 3943 | len += (long_u)STRLEN(xp->xp_files[i]) + 1; |
| 3944 | ss = lalloc(len, TRUE); |
| 3945 | if (ss != NULL) |
| 3946 | { |
| 3947 | *ss = NUL; |
| 3948 | for (i = 0; i < xp->xp_numfiles; ++i) |
| 3949 | { |
| 3950 | STRCAT(ss, xp->xp_files[i]); |
| 3951 | if (i != xp->xp_numfiles - 1) |
| 3952 | STRCAT(ss, (options & WILD_USE_NL) ? "\n" : " "); |
| 3953 | } |
| 3954 | } |
| 3955 | } |
| 3956 | |
| 3957 | if (mode == WILD_EXPAND_FREE || mode == WILD_ALL) |
| 3958 | ExpandCleanup(xp); |
| 3959 | |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3960 | /* Free "orig" if it wasn't stored in "orig_save". */ |
Bram Moolenaar | 9642664 | 2007-10-30 16:37:15 +0000 | [diff] [blame] | 3961 | if (!orig_saved) |
Bram Moolenaar | ecf4de5 | 2007-09-30 20:11:26 +0000 | [diff] [blame] | 3962 | vim_free(orig); |
| 3963 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3964 | return ss; |
| 3965 | } |
| 3966 | |
| 3967 | /* |
| 3968 | * Prepare an expand structure for use. |
| 3969 | */ |
| 3970 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3971 | ExpandInit(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3972 | { |
Bram Moolenaar | d6e7cc6 | 2008-09-14 12:42:29 +0000 | [diff] [blame] | 3973 | xp->xp_pattern = NULL; |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 3974 | xp->xp_pattern_len = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3975 | xp->xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3976 | #ifndef BACKSLASH_IN_FILENAME |
| 3977 | xp->xp_shell = FALSE; |
| 3978 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3979 | xp->xp_numfiles = -1; |
| 3980 | xp->xp_files = NULL; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 3981 | #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) |
| 3982 | xp->xp_arg = NULL; |
| 3983 | #endif |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 3984 | xp->xp_line = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3985 | } |
| 3986 | |
| 3987 | /* |
| 3988 | * Cleanup an expand structure after use. |
| 3989 | */ |
| 3990 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 3991 | ExpandCleanup(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3992 | { |
| 3993 | if (xp->xp_numfiles >= 0) |
| 3994 | { |
| 3995 | FreeWild(xp->xp_numfiles, xp->xp_files); |
| 3996 | xp->xp_numfiles = -1; |
| 3997 | } |
| 3998 | } |
| 3999 | |
| 4000 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4001 | ExpandEscape( |
| 4002 | expand_T *xp, |
| 4003 | char_u *str, |
| 4004 | int numfiles, |
| 4005 | char_u **files, |
| 4006 | int options) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4007 | { |
| 4008 | int i; |
| 4009 | char_u *p; |
| 4010 | |
| 4011 | /* |
| 4012 | * May change home directory back to "~" |
| 4013 | */ |
| 4014 | if (options & WILD_HOME_REPLACE) |
| 4015 | tilde_replace(str, numfiles, files); |
| 4016 | |
| 4017 | if (options & WILD_ESCAPE) |
| 4018 | { |
| 4019 | if (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | cca92ec | 2011-04-28 17:21:53 +0200 | [diff] [blame] | 4020 | || xp->xp_context == EXPAND_FILES_IN_PATH |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4021 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4022 | || xp->xp_context == EXPAND_BUFFERS |
| 4023 | || xp->xp_context == EXPAND_DIRECTORIES) |
| 4024 | { |
| 4025 | /* |
| 4026 | * Insert a backslash into a file name before a space, \, %, # |
| 4027 | * and wildmatch characters, except '~'. |
| 4028 | */ |
| 4029 | for (i = 0; i < numfiles; ++i) |
| 4030 | { |
| 4031 | /* for ":set path=" we need to escape spaces twice */ |
| 4032 | if (xp->xp_backslash == XP_BS_THREE) |
| 4033 | { |
| 4034 | p = vim_strsave_escaped(files[i], (char_u *)" "); |
| 4035 | if (p != NULL) |
| 4036 | { |
| 4037 | vim_free(files[i]); |
| 4038 | files[i] = p; |
Bram Moolenaar | 4ea8fe1 | 2006-03-09 22:32:39 +0000 | [diff] [blame] | 4039 | #if defined(BACKSLASH_IN_FILENAME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4040 | p = vim_strsave_escaped(files[i], (char_u *)" "); |
| 4041 | if (p != NULL) |
| 4042 | { |
| 4043 | vim_free(files[i]); |
| 4044 | files[i] = p; |
| 4045 | } |
| 4046 | #endif |
| 4047 | } |
| 4048 | } |
Bram Moolenaar | 0356c8c | 2008-05-28 20:02:48 +0000 | [diff] [blame] | 4049 | #ifdef BACKSLASH_IN_FILENAME |
| 4050 | p = vim_strsave_fnameescape(files[i], FALSE); |
| 4051 | #else |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4052 | p = vim_strsave_fnameescape(files[i], xp->xp_shell); |
Bram Moolenaar | 0356c8c | 2008-05-28 20:02:48 +0000 | [diff] [blame] | 4053 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4054 | if (p != NULL) |
| 4055 | { |
| 4056 | vim_free(files[i]); |
| 4057 | files[i] = p; |
| 4058 | } |
| 4059 | |
| 4060 | /* If 'str' starts with "\~", replace "~" at start of |
| 4061 | * files[i] with "\~". */ |
| 4062 | if (str[0] == '\\' && str[1] == '~' && files[i][0] == '~') |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4063 | escape_fname(&files[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4064 | } |
| 4065 | xp->xp_backslash = XP_BS_NONE; |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4066 | |
| 4067 | /* If the first file starts with a '+' escape it. Otherwise it |
| 4068 | * could be seen as "+cmd". */ |
| 4069 | if (*files[0] == '+') |
| 4070 | escape_fname(&files[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4071 | } |
| 4072 | else if (xp->xp_context == EXPAND_TAGS) |
| 4073 | { |
| 4074 | /* |
| 4075 | * Insert a backslash before characters in a tag name that |
| 4076 | * would terminate the ":tag" command. |
| 4077 | */ |
| 4078 | for (i = 0; i < numfiles; ++i) |
| 4079 | { |
| 4080 | p = vim_strsave_escaped(files[i], (char_u *)"\\|\""); |
| 4081 | if (p != NULL) |
| 4082 | { |
| 4083 | vim_free(files[i]); |
| 4084 | files[i] = p; |
| 4085 | } |
| 4086 | } |
| 4087 | } |
| 4088 | } |
| 4089 | } |
| 4090 | |
| 4091 | /* |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4092 | * Escape special characters in "fname" for when used as a file name argument |
| 4093 | * after a Vim command, or, when "shell" is non-zero, a shell command. |
| 4094 | * Returns the result in allocated memory. |
| 4095 | */ |
| 4096 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4097 | vim_strsave_fnameescape(char_u *fname, int shell) |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4098 | { |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 4099 | char_u *p; |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4100 | #ifdef BACKSLASH_IN_FILENAME |
| 4101 | char_u buf[20]; |
| 4102 | int j = 0; |
| 4103 | |
Bram Moolenaar | 8f5610d | 2013-11-12 05:28:26 +0100 | [diff] [blame] | 4104 | /* Don't escape '[', '{' and '!' if they are in 'isfname'. */ |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4105 | for (p = PATH_ESC_CHARS; *p != NUL; ++p) |
Bram Moolenaar | 8f5610d | 2013-11-12 05:28:26 +0100 | [diff] [blame] | 4106 | if ((*p != '[' && *p != '{' && *p != '!') || !vim_isfilec(*p)) |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4107 | buf[j++] = *p; |
| 4108 | buf[j] = NUL; |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4109 | p = vim_strsave_escaped(fname, buf); |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4110 | #else |
Bram Moolenaar | 7693ec6 | 2008-07-24 18:29:37 +0000 | [diff] [blame] | 4111 | p = vim_strsave_escaped(fname, shell ? SHELL_ESC_CHARS : PATH_ESC_CHARS); |
| 4112 | if (shell && csh_like_shell() && p != NULL) |
| 4113 | { |
| 4114 | char_u *s; |
| 4115 | |
| 4116 | /* For csh and similar shells need to put two backslashes before '!'. |
| 4117 | * One is taken by Vim, one by the shell. */ |
| 4118 | s = vim_strsave_escaped(p, (char_u *)"!"); |
| 4119 | vim_free(p); |
| 4120 | p = s; |
| 4121 | } |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4122 | #endif |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4123 | |
| 4124 | /* '>' and '+' are special at the start of some commands, e.g. ":edit" and |
| 4125 | * ":write". "cd -" has a special meaning. */ |
Bram Moolenaar | a9d52e3 | 2010-07-31 16:44:19 +0200 | [diff] [blame] | 4126 | if (p != NULL && (*p == '>' || *p == '+' || (*p == '-' && p[1] == NUL))) |
Bram Moolenaar | 1b24e4b | 2008-08-08 10:59:17 +0000 | [diff] [blame] | 4127 | escape_fname(&p); |
| 4128 | |
| 4129 | return p; |
Bram Moolenaar | aebaf89 | 2008-05-28 14:49:58 +0000 | [diff] [blame] | 4130 | } |
| 4131 | |
| 4132 | /* |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4133 | * Put a backslash before the file name in "pp", which is in allocated memory. |
| 4134 | */ |
| 4135 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4136 | escape_fname(char_u **pp) |
Bram Moolenaar | 4536002 | 2005-07-21 21:08:21 +0000 | [diff] [blame] | 4137 | { |
| 4138 | char_u *p; |
| 4139 | |
| 4140 | p = alloc((unsigned)(STRLEN(*pp) + 2)); |
| 4141 | if (p != NULL) |
| 4142 | { |
| 4143 | p[0] = '\\'; |
| 4144 | STRCPY(p + 1, *pp); |
| 4145 | vim_free(*pp); |
| 4146 | *pp = p; |
| 4147 | } |
| 4148 | } |
| 4149 | |
| 4150 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4151 | * For each file name in files[num_files]: |
| 4152 | * If 'orig_pat' starts with "~/", replace the home directory with "~". |
| 4153 | */ |
| 4154 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4155 | tilde_replace( |
| 4156 | char_u *orig_pat, |
| 4157 | int num_files, |
| 4158 | char_u **files) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4159 | { |
| 4160 | int i; |
| 4161 | char_u *p; |
| 4162 | |
| 4163 | if (orig_pat[0] == '~' && vim_ispathsep(orig_pat[1])) |
| 4164 | { |
| 4165 | for (i = 0; i < num_files; ++i) |
| 4166 | { |
| 4167 | p = home_replace_save(NULL, files[i]); |
| 4168 | if (p != NULL) |
| 4169 | { |
| 4170 | vim_free(files[i]); |
| 4171 | files[i] = p; |
| 4172 | } |
| 4173 | } |
| 4174 | } |
| 4175 | } |
| 4176 | |
| 4177 | /* |
| 4178 | * Show all matches for completion on the command line. |
| 4179 | * Returns EXPAND_NOTHING when the character that triggered expansion should |
| 4180 | * be inserted like a normal character. |
| 4181 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4182 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4183 | showmatches(expand_T *xp, int wildmenu UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4184 | { |
| 4185 | #define L_SHOWFILE(m) (showtail ? sm_gettail(files_found[m]) : files_found[m]) |
| 4186 | int num_files; |
| 4187 | char_u **files_found; |
| 4188 | int i, j, k; |
| 4189 | int maxlen; |
| 4190 | int lines; |
| 4191 | int columns; |
| 4192 | char_u *p; |
| 4193 | int lastlen; |
| 4194 | int attr; |
| 4195 | int showtail; |
| 4196 | |
| 4197 | if (xp->xp_numfiles == -1) |
| 4198 | { |
| 4199 | set_expand_context(xp); |
| 4200 | i = expand_cmdline(xp, ccline.cmdbuff, ccline.cmdpos, |
| 4201 | &num_files, &files_found); |
| 4202 | showtail = expand_showtail(xp); |
| 4203 | if (i != EXPAND_OK) |
| 4204 | return i; |
| 4205 | |
| 4206 | } |
| 4207 | else |
| 4208 | { |
| 4209 | num_files = xp->xp_numfiles; |
| 4210 | files_found = xp->xp_files; |
| 4211 | showtail = cmd_showtail; |
| 4212 | } |
| 4213 | |
| 4214 | #ifdef FEAT_WILDMENU |
| 4215 | if (!wildmenu) |
| 4216 | { |
| 4217 | #endif |
| 4218 | msg_didany = FALSE; /* lines_left will be set */ |
| 4219 | msg_start(); /* prepare for paging */ |
| 4220 | msg_putchar('\n'); |
| 4221 | out_flush(); |
| 4222 | cmdline_row = msg_row; |
| 4223 | msg_didany = FALSE; /* lines_left will be set again */ |
| 4224 | msg_start(); /* prepare for paging */ |
| 4225 | #ifdef FEAT_WILDMENU |
| 4226 | } |
| 4227 | #endif |
| 4228 | |
| 4229 | if (got_int) |
| 4230 | got_int = FALSE; /* only int. the completion, not the cmd line */ |
| 4231 | #ifdef FEAT_WILDMENU |
| 4232 | else if (wildmenu) |
Bram Moolenaar | ef8eb08 | 2017-03-30 22:04:55 +0200 | [diff] [blame] | 4233 | win_redr_status_matches(xp, num_files, files_found, -1, showtail); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4234 | #endif |
| 4235 | else |
| 4236 | { |
| 4237 | /* find the length of the longest file name */ |
| 4238 | maxlen = 0; |
| 4239 | for (i = 0; i < num_files; ++i) |
| 4240 | { |
| 4241 | if (!showtail && (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4242 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4243 | || xp->xp_context == EXPAND_BUFFERS)) |
| 4244 | { |
| 4245 | home_replace(NULL, files_found[i], NameBuff, MAXPATHL, TRUE); |
| 4246 | j = vim_strsize(NameBuff); |
| 4247 | } |
| 4248 | else |
| 4249 | j = vim_strsize(L_SHOWFILE(i)); |
| 4250 | if (j > maxlen) |
| 4251 | maxlen = j; |
| 4252 | } |
| 4253 | |
| 4254 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4255 | lines = num_files; |
| 4256 | else |
| 4257 | { |
| 4258 | /* compute the number of columns and lines for the listing */ |
| 4259 | maxlen += 2; /* two spaces between file names */ |
| 4260 | columns = ((int)Columns + 2) / maxlen; |
| 4261 | if (columns < 1) |
| 4262 | columns = 1; |
| 4263 | lines = (num_files + columns - 1) / columns; |
| 4264 | } |
| 4265 | |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4266 | attr = HL_ATTR(HLF_D); /* find out highlighting for directories */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4267 | |
| 4268 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4269 | { |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4270 | MSG_PUTS_ATTR(_("tagname"), HL_ATTR(HLF_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4271 | msg_clr_eos(); |
| 4272 | msg_advance(maxlen - 3); |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4273 | MSG_PUTS_ATTR(_(" kind file\n"), HL_ATTR(HLF_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4274 | } |
| 4275 | |
| 4276 | /* list the files line by line */ |
| 4277 | for (i = 0; i < lines; ++i) |
| 4278 | { |
| 4279 | lastlen = 999; |
| 4280 | for (k = i; k < num_files; k += lines) |
| 4281 | { |
| 4282 | if (xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4283 | { |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4284 | msg_outtrans_attr(files_found[k], HL_ATTR(HLF_D)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4285 | p = files_found[k] + STRLEN(files_found[k]) + 1; |
| 4286 | msg_advance(maxlen + 1); |
| 4287 | msg_puts(p); |
| 4288 | msg_advance(maxlen + 3); |
Bram Moolenaar | 8820b48 | 2017-03-16 17:23:31 +0100 | [diff] [blame] | 4289 | msg_puts_long_attr(p + 2, HL_ATTR(HLF_D)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4290 | break; |
| 4291 | } |
| 4292 | for (j = maxlen - lastlen; --j >= 0; ) |
| 4293 | msg_putchar(' '); |
| 4294 | if (xp->xp_context == EXPAND_FILES |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4295 | || xp->xp_context == EXPAND_SHELLCMD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4296 | || xp->xp_context == EXPAND_BUFFERS) |
| 4297 | { |
Bram Moolenaar | b91e59b | 2010-03-17 19:13:27 +0100 | [diff] [blame] | 4298 | /* highlight directories */ |
Bram Moolenaar | 63fa526 | 2010-03-23 18:06:52 +0100 | [diff] [blame] | 4299 | if (xp->xp_numfiles != -1) |
| 4300 | { |
| 4301 | char_u *halved_slash; |
| 4302 | char_u *exp_path; |
| 4303 | |
| 4304 | /* Expansion was done before and special characters |
| 4305 | * were escaped, need to halve backslashes. Also |
| 4306 | * $HOME has been replaced with ~/. */ |
| 4307 | exp_path = expand_env_save_opt(files_found[k], TRUE); |
| 4308 | halved_slash = backslash_halve_save( |
| 4309 | exp_path != NULL ? exp_path : files_found[k]); |
| 4310 | j = mch_isdir(halved_slash != NULL ? halved_slash |
| 4311 | : files_found[k]); |
| 4312 | vim_free(exp_path); |
| 4313 | vim_free(halved_slash); |
| 4314 | } |
| 4315 | else |
| 4316 | /* Expansion was done here, file names are literal. */ |
| 4317 | j = mch_isdir(files_found[k]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4318 | if (showtail) |
| 4319 | p = L_SHOWFILE(k); |
| 4320 | else |
| 4321 | { |
| 4322 | home_replace(NULL, files_found[k], NameBuff, MAXPATHL, |
| 4323 | TRUE); |
| 4324 | p = NameBuff; |
| 4325 | } |
| 4326 | } |
| 4327 | else |
| 4328 | { |
| 4329 | j = FALSE; |
| 4330 | p = L_SHOWFILE(k); |
| 4331 | } |
| 4332 | lastlen = msg_outtrans_attr(p, j ? attr : 0); |
| 4333 | } |
| 4334 | if (msg_col > 0) /* when not wrapped around */ |
| 4335 | { |
| 4336 | msg_clr_eos(); |
| 4337 | msg_putchar('\n'); |
| 4338 | } |
| 4339 | out_flush(); /* show one line at a time */ |
| 4340 | if (got_int) |
| 4341 | { |
| 4342 | got_int = FALSE; |
| 4343 | break; |
| 4344 | } |
| 4345 | } |
| 4346 | |
| 4347 | /* |
| 4348 | * we redraw the command below the lines that we have just listed |
| 4349 | * This is a bit tricky, but it saves a lot of screen updating. |
| 4350 | */ |
| 4351 | cmdline_row = msg_row; /* will put it back later */ |
| 4352 | } |
| 4353 | |
| 4354 | if (xp->xp_numfiles == -1) |
| 4355 | FreeWild(num_files, files_found); |
| 4356 | |
| 4357 | return EXPAND_OK; |
| 4358 | } |
| 4359 | |
| 4360 | /* |
| 4361 | * Private gettail for showmatches() (and win_redr_status_matches()): |
| 4362 | * Find tail of file name path, but ignore trailing "/". |
| 4363 | */ |
| 4364 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4365 | sm_gettail(char_u *s) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4366 | { |
| 4367 | char_u *p; |
| 4368 | char_u *t = s; |
| 4369 | int had_sep = FALSE; |
| 4370 | |
| 4371 | for (p = s; *p != NUL; ) |
| 4372 | { |
| 4373 | if (vim_ispathsep(*p) |
| 4374 | #ifdef BACKSLASH_IN_FILENAME |
| 4375 | && !rem_backslash(p) |
| 4376 | #endif |
| 4377 | ) |
| 4378 | had_sep = TRUE; |
| 4379 | else if (had_sep) |
| 4380 | { |
| 4381 | t = p; |
| 4382 | had_sep = FALSE; |
| 4383 | } |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 4384 | MB_PTR_ADV(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4385 | } |
| 4386 | return t; |
| 4387 | } |
| 4388 | |
| 4389 | /* |
| 4390 | * Return TRUE if we only need to show the tail of completion matches. |
| 4391 | * When not completing file names or there is a wildcard in the path FALSE is |
| 4392 | * returned. |
| 4393 | */ |
| 4394 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4395 | expand_showtail(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4396 | { |
| 4397 | char_u *s; |
| 4398 | char_u *end; |
| 4399 | |
| 4400 | /* When not completing file names a "/" may mean something different. */ |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4401 | if (xp->xp_context != EXPAND_FILES |
| 4402 | && xp->xp_context != EXPAND_SHELLCMD |
| 4403 | && xp->xp_context != EXPAND_DIRECTORIES) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4404 | return FALSE; |
| 4405 | |
| 4406 | end = gettail(xp->xp_pattern); |
| 4407 | if (end == xp->xp_pattern) /* there is no path separator */ |
| 4408 | return FALSE; |
| 4409 | |
| 4410 | for (s = xp->xp_pattern; s < end; s++) |
| 4411 | { |
| 4412 | /* Skip escaped wildcards. Only when the backslash is not a path |
| 4413 | * separator, on DOS the '*' "path\*\file" must not be skipped. */ |
| 4414 | if (rem_backslash(s)) |
| 4415 | ++s; |
| 4416 | else if (vim_strchr((char_u *)"*?[", *s) != NULL) |
| 4417 | return FALSE; |
| 4418 | } |
| 4419 | return TRUE; |
| 4420 | } |
| 4421 | |
| 4422 | /* |
| 4423 | * Prepare a string for expansion. |
| 4424 | * When expanding file names: The string will be used with expand_wildcards(). |
Bram Moolenaar | 6bcbcc5 | 2013-11-05 07:13:41 +0100 | [diff] [blame] | 4425 | * Copy "fname[len]" into allocated memory and add a '*' at the end. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4426 | * When expanding other names: The string will be used with regcomp(). Copy |
| 4427 | * the name into allocated memory and prepend "^". |
| 4428 | */ |
| 4429 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4430 | addstar( |
| 4431 | char_u *fname, |
| 4432 | int len, |
| 4433 | int context) /* EXPAND_FILES etc. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4434 | { |
| 4435 | char_u *retval; |
| 4436 | int i, j; |
| 4437 | int new_len; |
| 4438 | char_u *tail; |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4439 | int ends_in_star; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4440 | |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4441 | if (context != EXPAND_FILES |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4442 | && context != EXPAND_FILES_IN_PATH |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4443 | && context != EXPAND_SHELLCMD |
| 4444 | && context != EXPAND_DIRECTORIES) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4445 | { |
| 4446 | /* |
| 4447 | * Matching will be done internally (on something other than files). |
| 4448 | * So we convert the file-matching-type wildcards into our kind for |
| 4449 | * use with vim_regcomp(). First work out how long it will be: |
| 4450 | */ |
| 4451 | |
| 4452 | /* For help tags the translation is done in find_help_tags(). |
| 4453 | * For a tag pattern starting with "/" no translation is needed. */ |
| 4454 | if (context == EXPAND_HELP |
| 4455 | || context == EXPAND_COLORS |
| 4456 | || context == EXPAND_COMPILER |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4457 | || context == EXPAND_OWNSYNTAX |
Bram Moolenaar | 883f5d0 | 2010-06-21 06:24:34 +0200 | [diff] [blame] | 4458 | || context == EXPAND_FILETYPE |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 4459 | || context == EXPAND_PACKADD |
Bram Moolenaar | ba47b51 | 2017-01-24 21:18:19 +0100 | [diff] [blame] | 4460 | || ((context == EXPAND_TAGS_LISTFILES |
| 4461 | || context == EXPAND_TAGS) |
| 4462 | && fname[0] == '/')) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4463 | retval = vim_strnsave(fname, len); |
| 4464 | else |
| 4465 | { |
| 4466 | new_len = len + 2; /* +2 for '^' at start, NUL at end */ |
| 4467 | for (i = 0; i < len; i++) |
| 4468 | { |
| 4469 | if (fname[i] == '*' || fname[i] == '~') |
| 4470 | new_len++; /* '*' needs to be replaced by ".*" |
| 4471 | '~' needs to be replaced by "\~" */ |
| 4472 | |
| 4473 | /* Buffer names are like file names. "." should be literal */ |
| 4474 | if (context == EXPAND_BUFFERS && fname[i] == '.') |
| 4475 | new_len++; /* "." becomes "\." */ |
| 4476 | |
| 4477 | /* Custom expansion takes care of special things, match |
| 4478 | * backslashes literally (perhaps also for other types?) */ |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4479 | if ((context == EXPAND_USER_DEFINED |
| 4480 | || context == EXPAND_USER_LIST) && fname[i] == '\\') |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4481 | new_len++; /* '\' becomes "\\" */ |
| 4482 | } |
| 4483 | retval = alloc(new_len); |
| 4484 | if (retval != NULL) |
| 4485 | { |
| 4486 | retval[0] = '^'; |
| 4487 | j = 1; |
| 4488 | for (i = 0; i < len; i++, j++) |
| 4489 | { |
| 4490 | /* Skip backslash. But why? At least keep it for custom |
| 4491 | * expansion. */ |
| 4492 | if (context != EXPAND_USER_DEFINED |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4493 | && context != EXPAND_USER_LIST |
| 4494 | && fname[i] == '\\' |
| 4495 | && ++i == len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4496 | break; |
| 4497 | |
| 4498 | switch (fname[i]) |
| 4499 | { |
| 4500 | case '*': retval[j++] = '.'; |
| 4501 | break; |
| 4502 | case '~': retval[j++] = '\\'; |
| 4503 | break; |
| 4504 | case '?': retval[j] = '.'; |
| 4505 | continue; |
| 4506 | case '.': if (context == EXPAND_BUFFERS) |
| 4507 | retval[j++] = '\\'; |
| 4508 | break; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4509 | case '\\': if (context == EXPAND_USER_DEFINED |
| 4510 | || context == EXPAND_USER_LIST) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4511 | retval[j++] = '\\'; |
| 4512 | break; |
| 4513 | } |
| 4514 | retval[j] = fname[i]; |
| 4515 | } |
| 4516 | retval[j] = NUL; |
| 4517 | } |
| 4518 | } |
| 4519 | } |
| 4520 | else |
| 4521 | { |
| 4522 | retval = alloc(len + 4); |
| 4523 | if (retval != NULL) |
| 4524 | { |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 4525 | vim_strncpy(retval, fname, len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4526 | |
| 4527 | /* |
Bram Moolenaar | c6249bb | 2006-04-15 20:25:09 +0000 | [diff] [blame] | 4528 | * Don't add a star to *, ~, ~user, $var or `cmd`. |
| 4529 | * * would become **, which walks the whole tree. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4530 | * ~ would be at the start of the file name, but not the tail. |
| 4531 | * $ could be anywhere in the tail. |
| 4532 | * ` could be anywhere in the file name. |
Bram Moolenaar | 066b622 | 2008-01-04 14:17:47 +0000 | [diff] [blame] | 4533 | * When the name ends in '$' don't add a star, remove the '$'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4534 | */ |
| 4535 | tail = gettail(retval); |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4536 | ends_in_star = (len > 0 && retval[len - 1] == '*'); |
| 4537 | #ifndef BACKSLASH_IN_FILENAME |
| 4538 | for (i = len - 2; i >= 0; --i) |
| 4539 | { |
| 4540 | if (retval[i] != '\\') |
| 4541 | break; |
| 4542 | ends_in_star = !ends_in_star; |
| 4543 | } |
| 4544 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4545 | if ((*retval != '~' || tail != retval) |
Bram Moolenaar | 8cd213c | 2010-06-01 21:57:09 +0200 | [diff] [blame] | 4546 | && !ends_in_star |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4547 | && vim_strchr(tail, '$') == NULL |
| 4548 | && vim_strchr(retval, '`') == NULL) |
| 4549 | retval[len++] = '*'; |
Bram Moolenaar | 066b622 | 2008-01-04 14:17:47 +0000 | [diff] [blame] | 4550 | else if (len > 0 && retval[len - 1] == '$') |
| 4551 | --len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4552 | retval[len] = NUL; |
| 4553 | } |
| 4554 | } |
| 4555 | return retval; |
| 4556 | } |
| 4557 | |
| 4558 | /* |
| 4559 | * Must parse the command line so far to work out what context we are in. |
| 4560 | * Completion can then be done based on that context. |
| 4561 | * This routine sets the variables: |
| 4562 | * xp->xp_pattern The start of the pattern to be expanded within |
| 4563 | * the command line (ends at the cursor). |
| 4564 | * xp->xp_context The type of thing to expand. Will be one of: |
| 4565 | * |
| 4566 | * EXPAND_UNSUCCESSFUL Used sometimes when there is something illegal on |
| 4567 | * the command line, like an unknown command. Caller |
| 4568 | * should beep. |
| 4569 | * EXPAND_NOTHING Unrecognised context for completion, use char like |
| 4570 | * a normal char, rather than for completion. eg |
| 4571 | * :s/^I/ |
| 4572 | * EXPAND_COMMANDS Cursor is still touching the command, so complete |
| 4573 | * it. |
| 4574 | * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. |
| 4575 | * EXPAND_FILES After command with XFILE set, or after setting |
| 4576 | * with P_EXPAND set. eg :e ^I, :w>>^I |
| 4577 | * EXPAND_DIRECTORIES In some cases this is used instead of the latter |
| 4578 | * when we know only directories are of interest. eg |
| 4579 | * :set dir=^I |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 4580 | * EXPAND_SHELLCMD After ":!cmd", ":r !cmd" or ":w !cmd". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4581 | * EXPAND_SETTINGS Complete variable names. eg :set d^I |
| 4582 | * EXPAND_BOOL_SETTINGS Complete boolean variables only, eg :set no^I |
| 4583 | * EXPAND_TAGS Complete tags from the files in p_tags. eg :ta a^I |
| 4584 | * EXPAND_TAGS_LISTFILES As above, but list filenames on ^D, after :tselect |
| 4585 | * EXPAND_HELP Complete tags from the file 'helpfile'/tags |
| 4586 | * EXPAND_EVENTS Complete event names |
| 4587 | * EXPAND_SYNTAX Complete :syntax command arguments |
| 4588 | * EXPAND_HIGHLIGHT Complete highlight (syntax) group names |
| 4589 | * EXPAND_AUGROUP Complete autocommand group names |
| 4590 | * EXPAND_USER_VARS Complete user defined variable names, eg :unlet a^I |
| 4591 | * EXPAND_MAPPINGS Complete mapping and abbreviation names, |
| 4592 | * eg :unmap a^I , :cunab x^I |
| 4593 | * EXPAND_FUNCTIONS Complete internal or user defined function names, |
| 4594 | * eg :call sub^I |
| 4595 | * EXPAND_USER_FUNC Complete user defined function names, eg :delf F^I |
| 4596 | * EXPAND_EXPRESSION Complete internal or user defined function/variable |
| 4597 | * names in expressions, eg :while s^I |
| 4598 | * EXPAND_ENV_VARS Complete environment variable names |
Bram Moolenaar | 2430586 | 2012-08-15 14:05:05 +0200 | [diff] [blame] | 4599 | * EXPAND_USER Complete user names |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4600 | */ |
| 4601 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4602 | set_expand_context(expand_T *xp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4603 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4604 | /* only expansion for ':', '>' and '=' command-lines */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4605 | if (ccline.cmdfirstc != ':' |
| 4606 | #ifdef FEAT_EVAL |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4607 | && ccline.cmdfirstc != '>' && ccline.cmdfirstc != '=' |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4608 | && !ccline.input_fn |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4609 | #endif |
| 4610 | ) |
| 4611 | { |
| 4612 | xp->xp_context = EXPAND_NOTHING; |
| 4613 | return; |
| 4614 | } |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4615 | set_cmd_context(xp, ccline.cmdbuff, ccline.cmdlen, ccline.cmdpos, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4616 | } |
| 4617 | |
| 4618 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4619 | set_cmd_context( |
| 4620 | expand_T *xp, |
| 4621 | char_u *str, /* start of command line */ |
| 4622 | int len, /* length of command line (excl. NUL) */ |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4623 | int col, /* position of cursor */ |
| 4624 | int use_ccline UNUSED) /* use ccline for info */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4625 | { |
| 4626 | int old_char = NUL; |
| 4627 | char_u *nextcomm; |
| 4628 | |
| 4629 | /* |
| 4630 | * Avoid a UMR warning from Purify, only save the character if it has been |
| 4631 | * written before. |
| 4632 | */ |
| 4633 | if (col < len) |
| 4634 | old_char = str[col]; |
| 4635 | str[col] = NUL; |
| 4636 | nextcomm = str; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4637 | |
| 4638 | #ifdef FEAT_EVAL |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4639 | if (use_ccline && ccline.cmdfirstc == '=') |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4640 | { |
| 4641 | # ifdef FEAT_CMDL_COMPL |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4642 | /* pass CMD_SIZE because there is no real command */ |
| 4643 | set_context_for_expression(xp, str, CMD_SIZE); |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4644 | # endif |
| 4645 | } |
Bram Moolenaar | 33a80ee | 2016-09-05 21:51:14 +0200 | [diff] [blame] | 4646 | else if (use_ccline && ccline.input_fn) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4647 | { |
| 4648 | xp->xp_context = ccline.xp_context; |
| 4649 | xp->xp_pattern = ccline.cmdbuff; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4650 | # if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL) |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4651 | xp->xp_arg = ccline.xp_arg; |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 4652 | # endif |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 4653 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 4654 | else |
| 4655 | #endif |
| 4656 | while (nextcomm != NULL) |
| 4657 | nextcomm = set_one_cmd_context(xp, nextcomm); |
| 4658 | |
Bram Moolenaar | a4c8dcb | 2013-06-30 12:21:24 +0200 | [diff] [blame] | 4659 | /* Store the string here so that call_user_expand_func() can get to them |
| 4660 | * easily. */ |
| 4661 | xp->xp_line = str; |
| 4662 | xp->xp_col = col; |
| 4663 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4664 | str[col] = old_char; |
| 4665 | } |
| 4666 | |
| 4667 | /* |
| 4668 | * Expand the command line "str" from context "xp". |
| 4669 | * "xp" must have been set by set_cmd_context(). |
| 4670 | * xp->xp_pattern points into "str", to where the text that is to be expanded |
| 4671 | * starts. |
| 4672 | * Returns EXPAND_UNSUCCESSFUL when there is something illegal before the |
| 4673 | * cursor. |
| 4674 | * Returns EXPAND_NOTHING when there is nothing to expand, might insert the |
| 4675 | * key that triggered expansion literally. |
| 4676 | * Returns EXPAND_OK otherwise. |
| 4677 | */ |
| 4678 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4679 | expand_cmdline( |
| 4680 | expand_T *xp, |
| 4681 | char_u *str, /* start of command line */ |
| 4682 | int col, /* position of cursor */ |
| 4683 | int *matchcount, /* return: nr of matches */ |
| 4684 | char_u ***matches) /* return: array of pointers to matches */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4685 | { |
| 4686 | char_u *file_str = NULL; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4687 | int options = WILD_ADD_SLASH|WILD_SILENT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4688 | |
| 4689 | if (xp->xp_context == EXPAND_UNSUCCESSFUL) |
| 4690 | { |
| 4691 | beep_flush(); |
| 4692 | return EXPAND_UNSUCCESSFUL; /* Something illegal on command line */ |
| 4693 | } |
| 4694 | if (xp->xp_context == EXPAND_NOTHING) |
| 4695 | { |
| 4696 | /* Caller can use the character as a normal char instead */ |
| 4697 | return EXPAND_NOTHING; |
| 4698 | } |
| 4699 | |
| 4700 | /* 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] | 4701 | xp->xp_pattern_len = (int)(str + col - xp->xp_pattern); |
| 4702 | 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] | 4703 | if (file_str == NULL) |
| 4704 | return EXPAND_UNSUCCESSFUL; |
| 4705 | |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4706 | if (p_wic) |
| 4707 | options += WILD_ICASE; |
| 4708 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4709 | /* find all files that match the description */ |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4710 | if (ExpandFromContext(xp, file_str, matchcount, matches, options) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4711 | { |
| 4712 | *matchcount = 0; |
| 4713 | *matches = NULL; |
| 4714 | } |
| 4715 | vim_free(file_str); |
| 4716 | |
| 4717 | return EXPAND_OK; |
| 4718 | } |
| 4719 | |
| 4720 | #ifdef FEAT_MULTI_LANG |
| 4721 | /* |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4722 | * Cleanup matches for help tags: |
| 4723 | * Remove "@ab" if the top of 'helplang' is "ab" and the language of the first |
| 4724 | * tag matches it. Otherwise remove "@en" if "en" is the only language. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4725 | */ |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 4726 | static void cleanup_help_tags(int num_file, char_u **file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4727 | |
| 4728 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4729 | cleanup_help_tags(int num_file, char_u **file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4730 | { |
| 4731 | int i, j; |
| 4732 | int len; |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4733 | char_u buf[4]; |
| 4734 | char_u *p = buf; |
| 4735 | |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 4736 | 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] | 4737 | { |
| 4738 | *p++ = '@'; |
| 4739 | *p++ = p_hlg[0]; |
| 4740 | *p++ = p_hlg[1]; |
| 4741 | } |
| 4742 | *p = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4743 | |
| 4744 | for (i = 0; i < num_file; ++i) |
| 4745 | { |
| 4746 | len = (int)STRLEN(file[i]) - 3; |
Bram Moolenaar | 61264d9 | 2016-03-28 19:59:02 +0200 | [diff] [blame] | 4747 | if (len <= 0) |
| 4748 | continue; |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4749 | if (STRCMP(file[i] + len, "@en") == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4750 | { |
| 4751 | /* Sorting on priority means the same item in another language may |
| 4752 | * be anywhere. Search all items for a match up to the "@en". */ |
| 4753 | for (j = 0; j < num_file; ++j) |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4754 | if (j != i && (int)STRLEN(file[j]) == len + 3 |
| 4755 | && STRNCMP(file[i], file[j], len + 1) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4756 | break; |
| 4757 | if (j == num_file) |
Bram Moolenaar | 89c79b9 | 2016-05-05 17:18:41 +0200 | [diff] [blame] | 4758 | /* item only exists with @en, remove it */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4759 | file[i][len] = NUL; |
| 4760 | } |
| 4761 | } |
Bram Moolenaar | 9ccaae0 | 2016-05-07 18:36:48 +0200 | [diff] [blame] | 4762 | |
| 4763 | if (*buf != NUL) |
| 4764 | for (i = 0; i < num_file; ++i) |
| 4765 | { |
| 4766 | len = (int)STRLEN(file[i]) - 3; |
| 4767 | if (len <= 0) |
| 4768 | continue; |
| 4769 | if (STRCMP(file[i] + len, buf) == 0) |
| 4770 | { |
| 4771 | /* remove the default language */ |
| 4772 | file[i][len] = NUL; |
| 4773 | } |
| 4774 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4775 | } |
| 4776 | #endif |
| 4777 | |
| 4778 | /* |
| 4779 | * Do the expansion based on xp->xp_context and "pat". |
| 4780 | */ |
| 4781 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 4782 | ExpandFromContext( |
| 4783 | expand_T *xp, |
| 4784 | char_u *pat, |
| 4785 | int *num_file, |
| 4786 | char_u ***file, |
| 4787 | int options) /* EW_ flags */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4788 | { |
| 4789 | #ifdef FEAT_CMDL_COMPL |
| 4790 | regmatch_T regmatch; |
| 4791 | #endif |
| 4792 | int ret; |
| 4793 | int flags; |
| 4794 | |
| 4795 | flags = EW_DIR; /* include directories */ |
| 4796 | if (options & WILD_LIST_NOTFOUND) |
| 4797 | flags |= EW_NOTFOUND; |
| 4798 | if (options & WILD_ADD_SLASH) |
| 4799 | flags |= EW_ADDSLASH; |
| 4800 | if (options & WILD_KEEP_ALL) |
| 4801 | flags |= EW_KEEPALL; |
| 4802 | if (options & WILD_SILENT) |
| 4803 | flags |= EW_SILENT; |
Bram Moolenaar | a245bc7 | 2015-03-05 19:35:25 +0100 | [diff] [blame] | 4804 | if (options & WILD_ALLLINKS) |
| 4805 | flags |= EW_ALLLINKS; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4806 | |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4807 | if (xp->xp_context == EXPAND_FILES |
| 4808 | || xp->xp_context == EXPAND_DIRECTORIES |
| 4809 | || xp->xp_context == EXPAND_FILES_IN_PATH) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4810 | { |
| 4811 | /* |
| 4812 | * Expand file or directory names. |
| 4813 | */ |
| 4814 | int free_pat = FALSE; |
| 4815 | int i; |
| 4816 | |
| 4817 | /* for ":set path=" and ":set tags=" halve backslashes for escaped |
| 4818 | * space */ |
| 4819 | if (xp->xp_backslash != XP_BS_NONE) |
| 4820 | { |
| 4821 | free_pat = TRUE; |
| 4822 | pat = vim_strsave(pat); |
| 4823 | for (i = 0; pat[i]; ++i) |
| 4824 | if (pat[i] == '\\') |
| 4825 | { |
| 4826 | if (xp->xp_backslash == XP_BS_THREE |
| 4827 | && pat[i + 1] == '\\' |
| 4828 | && pat[i + 2] == '\\' |
| 4829 | && pat[i + 3] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4830 | STRMOVE(pat + i, pat + i + 3); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4831 | if (xp->xp_backslash == XP_BS_ONE |
| 4832 | && pat[i + 1] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4833 | STRMOVE(pat + i, pat + i + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4834 | } |
| 4835 | } |
| 4836 | |
| 4837 | if (xp->xp_context == EXPAND_FILES) |
| 4838 | flags |= EW_FILE; |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4839 | else if (xp->xp_context == EXPAND_FILES_IN_PATH) |
| 4840 | flags |= (EW_FILE | EW_PATH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4841 | else |
| 4842 | flags = (flags | EW_DIR) & ~EW_FILE; |
Bram Moolenaar | 94950a9 | 2010-12-02 16:01:29 +0100 | [diff] [blame] | 4843 | if (options & WILD_ICASE) |
| 4844 | flags |= EW_ICASE; |
| 4845 | |
Bram Moolenaar | d7834d3 | 2009-12-02 16:14:36 +0000 | [diff] [blame] | 4846 | /* Expand wildcards, supporting %:h and the like. */ |
| 4847 | ret = expand_wildcards_eval(&pat, num_file, file, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4848 | if (free_pat) |
| 4849 | vim_free(pat); |
| 4850 | return ret; |
| 4851 | } |
| 4852 | |
| 4853 | *file = (char_u **)""; |
| 4854 | *num_file = 0; |
| 4855 | if (xp->xp_context == EXPAND_HELP) |
| 4856 | { |
Bram Moolenaar | c62e2fe | 2008-08-06 13:03:07 +0000 | [diff] [blame] | 4857 | /* With an empty argument we would get all the help tags, which is |
| 4858 | * very slow. Get matches for "help" instead. */ |
| 4859 | if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat, |
| 4860 | num_file, file, FALSE) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4861 | { |
| 4862 | #ifdef FEAT_MULTI_LANG |
| 4863 | cleanup_help_tags(*num_file, *file); |
| 4864 | #endif |
| 4865 | return OK; |
| 4866 | } |
| 4867 | return FAIL; |
| 4868 | } |
| 4869 | |
| 4870 | #ifndef FEAT_CMDL_COMPL |
| 4871 | return FAIL; |
| 4872 | #else |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 4873 | if (xp->xp_context == EXPAND_SHELLCMD) |
| 4874 | return expand_shellcmd(pat, num_file, file, flags); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4875 | if (xp->xp_context == EXPAND_OLD_SETTING) |
| 4876 | return ExpandOldSetting(num_file, file); |
| 4877 | if (xp->xp_context == EXPAND_BUFFERS) |
| 4878 | return ExpandBufnames(pat, num_file, file, options); |
| 4879 | if (xp->xp_context == EXPAND_TAGS |
| 4880 | || xp->xp_context == EXPAND_TAGS_LISTFILES) |
| 4881 | return expand_tags(xp->xp_context == EXPAND_TAGS, pat, num_file, file); |
| 4882 | if (xp->xp_context == EXPAND_COLORS) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4883 | { |
| 4884 | char *directories[] = {"colors", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4885 | return ExpandRTDir(pat, DIP_START + DIP_OPT, num_file, file, |
| 4886 | directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4887 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4888 | if (xp->xp_context == EXPAND_COMPILER) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4889 | { |
Bram Moolenaar | a627c96 | 2011-09-30 16:23:32 +0200 | [diff] [blame] | 4890 | char *directories[] = {"compiler", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4891 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4892 | } |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4893 | if (xp->xp_context == EXPAND_OWNSYNTAX) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4894 | { |
| 4895 | char *directories[] = {"syntax", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4896 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4897 | } |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 4898 | if (xp->xp_context == EXPAND_FILETYPE) |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4899 | { |
| 4900 | char *directories[] = {"syntax", "indent", "ftplugin", NULL}; |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 4901 | return ExpandRTDir(pat, 0, num_file, file, directories); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 4902 | } |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4903 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
| 4904 | if (xp->xp_context == EXPAND_USER_LIST) |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 4905 | return ExpandUserList(xp, num_file, file); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 4906 | # endif |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 4907 | if (xp->xp_context == EXPAND_PACKADD) |
| 4908 | return ExpandPackAddDir(pat, num_file, file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4909 | |
| 4910 | regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); |
| 4911 | if (regmatch.regprog == NULL) |
| 4912 | return FAIL; |
| 4913 | |
| 4914 | /* set ignore-case according to p_ic, p_scs and pat */ |
| 4915 | regmatch.rm_ic = ignorecase(pat); |
| 4916 | |
| 4917 | if (xp->xp_context == EXPAND_SETTINGS |
| 4918 | || xp->xp_context == EXPAND_BOOL_SETTINGS) |
| 4919 | ret = ExpandSettings(xp, ®match, num_file, file); |
| 4920 | else if (xp->xp_context == EXPAND_MAPPINGS) |
| 4921 | ret = ExpandMappings(®match, num_file, file); |
| 4922 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
| 4923 | else if (xp->xp_context == EXPAND_USER_DEFINED) |
| 4924 | ret = ExpandUserDefined(xp, ®match, num_file, file); |
| 4925 | # endif |
| 4926 | else |
| 4927 | { |
| 4928 | static struct expgen |
| 4929 | { |
| 4930 | int context; |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 4931 | char_u *((*func)(expand_T *, int)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4932 | int ic; |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4933 | int escaped; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4934 | } tab[] = |
| 4935 | { |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4936 | {EXPAND_COMMANDS, get_command_name, FALSE, TRUE}, |
| 4937 | {EXPAND_BEHAVE, get_behave_arg, TRUE, TRUE}, |
Bram Moolenaar | cae92dc | 2017-08-06 15:22:15 +0200 | [diff] [blame] | 4938 | {EXPAND_MAPCLEAR, get_mapclear_arg, TRUE, TRUE}, |
Bram Moolenaar | 9e507ca | 2016-10-15 15:39:39 +0200 | [diff] [blame] | 4939 | {EXPAND_MESSAGES, get_messages_arg, TRUE, TRUE}, |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 4940 | #ifdef FEAT_CMDHIST |
| 4941 | {EXPAND_HISTORY, get_history_arg, TRUE, TRUE}, |
| 4942 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4943 | #ifdef FEAT_USR_CMDS |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4944 | {EXPAND_USER_COMMANDS, get_user_commands, FALSE, TRUE}, |
Bram Moolenaar | f1d6ccf | 2014-12-08 04:16:44 +0100 | [diff] [blame] | 4945 | {EXPAND_USER_ADDR_TYPE, get_user_cmd_addr_type, FALSE, TRUE}, |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4946 | {EXPAND_USER_CMD_FLAGS, get_user_cmd_flags, FALSE, TRUE}, |
| 4947 | {EXPAND_USER_NARGS, get_user_cmd_nargs, FALSE, TRUE}, |
| 4948 | {EXPAND_USER_COMPLETE, get_user_cmd_complete, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4949 | #endif |
| 4950 | #ifdef FEAT_EVAL |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4951 | {EXPAND_USER_VARS, get_user_var_name, FALSE, TRUE}, |
| 4952 | {EXPAND_FUNCTIONS, get_function_name, FALSE, TRUE}, |
| 4953 | {EXPAND_USER_FUNC, get_user_func_name, FALSE, TRUE}, |
| 4954 | {EXPAND_EXPRESSION, get_expr_name, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4955 | #endif |
| 4956 | #ifdef FEAT_MENU |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4957 | {EXPAND_MENUS, get_menu_name, FALSE, TRUE}, |
| 4958 | {EXPAND_MENUNAMES, get_menu_names, FALSE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4959 | #endif |
| 4960 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4961 | {EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4962 | #endif |
Bram Moolenaar | cd9c462 | 2013-06-08 15:24:48 +0200 | [diff] [blame] | 4963 | #ifdef FEAT_PROFILE |
| 4964 | {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE}, |
| 4965 | #endif |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4966 | {EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4967 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4968 | {EXPAND_EVENTS, get_event_name, TRUE, TRUE}, |
| 4969 | {EXPAND_AUGROUP, get_augroup_name, TRUE, TRUE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4970 | #endif |
Bram Moolenaar | f4580d8 | 2009-03-18 11:52:53 +0000 | [diff] [blame] | 4971 | #ifdef FEAT_CSCOPE |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4972 | {EXPAND_CSCOPE, get_cscope_name, TRUE, TRUE}, |
Bram Moolenaar | f4580d8 | 2009-03-18 11:52:53 +0000 | [diff] [blame] | 4973 | #endif |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 4974 | #ifdef FEAT_SIGNS |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4975 | {EXPAND_SIGN, get_sign_name, TRUE, TRUE}, |
Bram Moolenaar | 3c65e31 | 2009-04-29 16:47:23 +0000 | [diff] [blame] | 4976 | #endif |
Bram Moolenaar | f86f26c | 2010-02-03 15:14:22 +0100 | [diff] [blame] | 4977 | #ifdef FEAT_PROFILE |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4978 | {EXPAND_PROFILE, get_profile_name, TRUE, TRUE}, |
Bram Moolenaar | f86f26c | 2010-02-03 15:14:22 +0100 | [diff] [blame] | 4979 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4980 | #if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \ |
| 4981 | && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)) |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4982 | {EXPAND_LANGUAGE, get_lang_arg, TRUE, FALSE}, |
| 4983 | {EXPAND_LOCALES, get_locales, TRUE, FALSE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4984 | #endif |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 4985 | {EXPAND_ENV_VARS, get_env_name, TRUE, TRUE}, |
Bram Moolenaar | 2430586 | 2012-08-15 14:05:05 +0200 | [diff] [blame] | 4986 | {EXPAND_USER, get_users, TRUE, FALSE}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4987 | }; |
| 4988 | int i; |
| 4989 | |
| 4990 | /* |
| 4991 | * Find a context in the table and call the ExpandGeneric() with the |
| 4992 | * right function to do the expansion. |
| 4993 | */ |
| 4994 | ret = FAIL; |
Bram Moolenaar | af0167f | 2009-05-16 15:31:32 +0000 | [diff] [blame] | 4995 | for (i = 0; i < (int)(sizeof(tab) / sizeof(struct expgen)); ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4996 | if (xp->xp_context == tab[i].context) |
| 4997 | { |
| 4998 | if (tab[i].ic) |
| 4999 | regmatch.rm_ic = TRUE; |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 5000 | ret = ExpandGeneric(xp, ®match, num_file, file, |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 5001 | tab[i].func, tab[i].escaped); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5002 | break; |
| 5003 | } |
| 5004 | } |
| 5005 | |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 5006 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5007 | |
| 5008 | return ret; |
| 5009 | #endif /* FEAT_CMDL_COMPL */ |
| 5010 | } |
| 5011 | |
| 5012 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 5013 | /* |
| 5014 | * Expand a list of names. |
| 5015 | * |
| 5016 | * Generic function for command line completion. It calls a function to |
| 5017 | * obtain strings, one by one. The strings are matched against a regexp |
| 5018 | * program. Matching strings are copied into an array, which is returned. |
| 5019 | * |
| 5020 | * Returns OK when no problems encountered, FAIL for error (out of memory). |
| 5021 | */ |
| 5022 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5023 | ExpandGeneric( |
| 5024 | expand_T *xp, |
| 5025 | regmatch_T *regmatch, |
| 5026 | int *num_file, |
| 5027 | char_u ***file, |
| 5028 | char_u *((*func)(expand_T *, int)), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5029 | /* returns a string from the list */ |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5030 | int escaped) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5031 | { |
| 5032 | int i; |
| 5033 | int count = 0; |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5034 | int round; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5035 | char_u *str; |
| 5036 | |
| 5037 | /* do this loop twice: |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5038 | * round == 0: count the number of matching names |
| 5039 | * round == 1: copy the matching names into allocated memory |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5040 | */ |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5041 | for (round = 0; round <= 1; ++round) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5042 | { |
| 5043 | for (i = 0; ; ++i) |
| 5044 | { |
| 5045 | str = (*func)(xp, i); |
| 5046 | if (str == NULL) /* end of list */ |
| 5047 | break; |
| 5048 | if (*str == NUL) /* skip empty strings */ |
| 5049 | continue; |
| 5050 | |
| 5051 | if (vim_regexec(regmatch, str, (colnr_T)0)) |
| 5052 | { |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5053 | if (round) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5054 | { |
Bram Moolenaar | 9b486ca | 2011-05-19 18:26:40 +0200 | [diff] [blame] | 5055 | if (escaped) |
| 5056 | str = vim_strsave_escaped(str, (char_u *)" \t\\."); |
| 5057 | else |
| 5058 | str = vim_strsave(str); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5059 | (*file)[count] = str; |
| 5060 | #ifdef FEAT_MENU |
| 5061 | if (func == get_menu_names && str != NULL) |
| 5062 | { |
| 5063 | /* test for separator added by get_menu_names() */ |
| 5064 | str += STRLEN(str) - 1; |
| 5065 | if (*str == '\001') |
| 5066 | *str = '.'; |
| 5067 | } |
| 5068 | #endif |
| 5069 | } |
| 5070 | ++count; |
| 5071 | } |
| 5072 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5073 | if (round == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5074 | { |
| 5075 | if (count == 0) |
| 5076 | return OK; |
| 5077 | *num_file = count; |
| 5078 | *file = (char_u **)alloc((unsigned)(count * sizeof(char_u *))); |
| 5079 | if (*file == NULL) |
| 5080 | { |
| 5081 | *file = (char_u **)""; |
| 5082 | return FAIL; |
| 5083 | } |
| 5084 | count = 0; |
| 5085 | } |
| 5086 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5087 | |
Bram Moolenaar | 7fc904b | 2006-04-13 20:37:35 +0000 | [diff] [blame] | 5088 | /* Sort the results. Keep menu's in the specified order. */ |
| 5089 | if (xp->xp_context != EXPAND_MENUNAMES && xp->xp_context != EXPAND_MENUS) |
Bram Moolenaar | db710ed | 2011-10-26 22:02:15 +0200 | [diff] [blame] | 5090 | { |
| 5091 | if (xp->xp_context == EXPAND_EXPRESSION |
| 5092 | || xp->xp_context == EXPAND_FUNCTIONS |
| 5093 | || xp->xp_context == EXPAND_USER_FUNC) |
| 5094 | /* <SNR> functions should be sorted to the end. */ |
| 5095 | qsort((void *)*file, (size_t)*num_file, sizeof(char_u *), |
| 5096 | sort_func_compare); |
| 5097 | else |
| 5098 | sort_strings(*file, *num_file); |
| 5099 | } |
Bram Moolenaar | 90cfdbe | 2005-08-12 19:59:19 +0000 | [diff] [blame] | 5100 | |
Bram Moolenaar | 4f68858 | 2007-07-24 12:34:30 +0000 | [diff] [blame] | 5101 | #ifdef FEAT_CMDL_COMPL |
| 5102 | /* Reset the variables used for special highlight names expansion, so that |
| 5103 | * they don't show up when getting normal highlight names by ID. */ |
| 5104 | reset_expand_highlight(); |
| 5105 | #endif |
| 5106 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5107 | return OK; |
| 5108 | } |
| 5109 | |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5110 | /* |
| 5111 | * Complete a shell command. |
| 5112 | * Returns FAIL or OK; |
| 5113 | */ |
| 5114 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5115 | expand_shellcmd( |
| 5116 | char_u *filepat, /* pattern to match with command names */ |
| 5117 | int *num_file, /* return: number of matches */ |
| 5118 | char_u ***file, /* return: array with matches */ |
| 5119 | int flagsarg) /* EW_ flags */ |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5120 | { |
| 5121 | char_u *pat; |
| 5122 | int i; |
| 5123 | char_u *path; |
| 5124 | int mustfree = FALSE; |
| 5125 | garray_T ga; |
| 5126 | char_u *buf = alloc(MAXPATHL); |
| 5127 | size_t l; |
| 5128 | char_u *s, *e; |
| 5129 | int flags = flagsarg; |
| 5130 | int ret; |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5131 | int did_curdir = FALSE; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5132 | |
| 5133 | if (buf == NULL) |
| 5134 | return FAIL; |
| 5135 | |
| 5136 | /* for ":set path=" and ":set tags=" halve backslashes for escaped |
| 5137 | * space */ |
| 5138 | pat = vim_strsave(filepat); |
| 5139 | for (i = 0; pat[i]; ++i) |
| 5140 | if (pat[i] == '\\' && pat[i + 1] == ' ') |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 5141 | STRMOVE(pat + i, pat + i + 1); |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5142 | |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5143 | flags |= EW_FILE | EW_EXEC | EW_SHELLCMD; |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5144 | |
| 5145 | /* For an absolute name we don't use $PATH. */ |
Bram Moolenaar | 68c3174 | 2006-09-02 15:54:18 +0000 | [diff] [blame] | 5146 | if (mch_isFullName(pat)) |
| 5147 | path = (char_u *)" "; |
| 5148 | else if ((pat[0] == '.' && (vim_ispathsep(pat[1]) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5149 | || (pat[1] == '.' && vim_ispathsep(pat[2]))))) |
| 5150 | path = (char_u *)"."; |
| 5151 | else |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 5152 | { |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5153 | path = vim_getenv((char_u *)"PATH", &mustfree); |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 5154 | if (path == NULL) |
| 5155 | path = (char_u *)""; |
| 5156 | } |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5157 | |
| 5158 | /* |
| 5159 | * Go over all directories in $PATH. Expand matches in that directory and |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5160 | * collect them in "ga". When "." is not in $PATH also expand for the |
| 5161 | * current directory, to find "subdir/cmd". |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5162 | */ |
| 5163 | ga_init2(&ga, (int)sizeof(char *), 10); |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5164 | for (s = path; ; s = e) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5165 | { |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 5166 | if (*s == NUL) |
| 5167 | { |
| 5168 | if (did_curdir) |
| 5169 | break; |
| 5170 | /* Find directories in the current directory, path is empty. */ |
| 5171 | did_curdir = TRUE; |
| 5172 | } |
| 5173 | else if (*s == '.') |
| 5174 | did_curdir = TRUE; |
| 5175 | |
Bram Moolenaar | 68c3174 | 2006-09-02 15:54:18 +0000 | [diff] [blame] | 5176 | if (*s == ' ') |
| 5177 | ++s; /* Skip space used for absolute path name. */ |
| 5178 | |
Bram Moolenaar | 48e330a | 2016-02-23 14:53:34 +0100 | [diff] [blame] | 5179 | #if defined(MSWIN) |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5180 | e = vim_strchr(s, ';'); |
| 5181 | #else |
| 5182 | e = vim_strchr(s, ':'); |
| 5183 | #endif |
| 5184 | if (e == NULL) |
| 5185 | e = s + STRLEN(s); |
| 5186 | |
| 5187 | l = e - s; |
| 5188 | if (l > MAXPATHL - 5) |
| 5189 | break; |
| 5190 | vim_strncpy(buf, s, l); |
| 5191 | add_pathsep(buf); |
| 5192 | l = STRLEN(buf); |
| 5193 | vim_strncpy(buf + l, pat, MAXPATHL - 1 - l); |
| 5194 | |
| 5195 | /* Expand matches in one directory of $PATH. */ |
| 5196 | ret = expand_wildcards(1, &buf, num_file, file, flags); |
| 5197 | if (ret == OK) |
| 5198 | { |
| 5199 | if (ga_grow(&ga, *num_file) == FAIL) |
| 5200 | FreeWild(*num_file, *file); |
| 5201 | else |
| 5202 | { |
| 5203 | for (i = 0; i < *num_file; ++i) |
| 5204 | { |
| 5205 | s = (*file)[i]; |
| 5206 | if (STRLEN(s) > l) |
| 5207 | { |
| 5208 | /* Remove the path again. */ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 5209 | STRMOVE(s, s + l); |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 5210 | ((char_u **)ga.ga_data)[ga.ga_len++] = s; |
| 5211 | } |
| 5212 | else |
| 5213 | vim_free(s); |
| 5214 | } |
| 5215 | vim_free(*file); |
| 5216 | } |
| 5217 | } |
| 5218 | if (*e != NUL) |
| 5219 | ++e; |
| 5220 | } |
| 5221 | *file = ga.ga_data; |
| 5222 | *num_file = ga.ga_len; |
| 5223 | |
| 5224 | vim_free(buf); |
| 5225 | vim_free(pat); |
| 5226 | if (mustfree) |
| 5227 | vim_free(path); |
| 5228 | return OK; |
| 5229 | } |
| 5230 | |
| 5231 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5232 | # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 5233 | 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] | 5234 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5235 | /* |
Bram Moolenaar | b544f3c | 2017-02-23 19:03:28 +0100 | [diff] [blame] | 5236 | * Call "user_expand_func()" to invoke a user defined Vim script function and |
| 5237 | * return the result (either a string or a List). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5238 | */ |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5239 | static void * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5240 | call_user_expand_func( |
| 5241 | void *(*user_expand_func)(char_u *, int, char_u **, int), |
| 5242 | expand_T *xp, |
| 5243 | int *num_file, |
| 5244 | char_u ***file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5245 | { |
Bram Moolenaar | 673b9a3 | 2013-06-30 22:43:27 +0200 | [diff] [blame] | 5246 | int keep = 0; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5247 | char_u num[50]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5248 | char_u *args[3]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5249 | int save_current_SID = current_SID; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5250 | void *ret; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5251 | struct cmdline_info save_ccline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5252 | |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5253 | 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] | 5254 | return NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5255 | *num_file = 0; |
| 5256 | *file = NULL; |
| 5257 | |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5258 | if (ccline.cmdbuff != NULL) |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5259 | { |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5260 | keep = ccline.cmdbuff[ccline.cmdlen]; |
| 5261 | ccline.cmdbuff[ccline.cmdlen] = 0; |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5262 | } |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5263 | |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 5264 | args[0] = vim_strnsave(xp->xp_pattern, xp->xp_pattern_len); |
Bram Moolenaar | b751546 | 2013-06-29 12:58:33 +0200 | [diff] [blame] | 5265 | args[1] = xp->xp_line; |
| 5266 | sprintf((char *)num, "%d", xp->xp_col); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5267 | args[2] = num; |
| 5268 | |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5269 | /* Save the cmdline, we don't know what the function may do. */ |
| 5270 | save_ccline = ccline; |
| 5271 | ccline.cmdbuff = NULL; |
| 5272 | ccline.cmdprompt = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5273 | current_SID = xp->xp_scriptID; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5274 | |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5275 | ret = user_expand_func(xp->xp_arg, 3, args, FALSE); |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 5276 | |
| 5277 | ccline = save_ccline; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5278 | current_SID = save_current_SID; |
Bram Moolenaar | 21669c0 | 2008-01-18 12:16:16 +0000 | [diff] [blame] | 5279 | if (ccline.cmdbuff != NULL) |
| 5280 | ccline.cmdbuff[ccline.cmdlen] = keep; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5281 | |
Bram Moolenaar | 67b891e | 2009-09-18 15:25:52 +0000 | [diff] [blame] | 5282 | vim_free(args[0]); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5283 | return ret; |
| 5284 | } |
| 5285 | |
| 5286 | /* |
| 5287 | * Expand names with a function defined by the user. |
| 5288 | */ |
| 5289 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5290 | ExpandUserDefined( |
| 5291 | expand_T *xp, |
| 5292 | regmatch_T *regmatch, |
| 5293 | int *num_file, |
| 5294 | char_u ***file) |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5295 | { |
| 5296 | char_u *retstr; |
| 5297 | char_u *s; |
| 5298 | char_u *e; |
| 5299 | char_u keep; |
| 5300 | garray_T ga; |
| 5301 | |
| 5302 | retstr = call_user_expand_func(call_func_retstr, xp, num_file, file); |
| 5303 | if (retstr == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5304 | return FAIL; |
| 5305 | |
| 5306 | ga_init2(&ga, (int)sizeof(char *), 3); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5307 | for (s = retstr; *s != NUL; s = e) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5308 | { |
| 5309 | e = vim_strchr(s, '\n'); |
| 5310 | if (e == NULL) |
| 5311 | e = s + STRLEN(s); |
| 5312 | keep = *e; |
| 5313 | *e = 0; |
| 5314 | |
| 5315 | if (xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0) |
| 5316 | { |
| 5317 | *e = keep; |
| 5318 | if (*e != NUL) |
| 5319 | ++e; |
| 5320 | continue; |
| 5321 | } |
| 5322 | |
| 5323 | if (ga_grow(&ga, 1) == FAIL) |
| 5324 | break; |
| 5325 | |
| 5326 | ((char_u **)ga.ga_data)[ga.ga_len] = vim_strnsave(s, (int)(e - s)); |
| 5327 | ++ga.ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5328 | |
| 5329 | *e = keep; |
| 5330 | if (*e != NUL) |
| 5331 | ++e; |
| 5332 | } |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5333 | vim_free(retstr); |
| 5334 | *file = ga.ga_data; |
| 5335 | *num_file = ga.ga_len; |
| 5336 | return OK; |
| 5337 | } |
| 5338 | |
| 5339 | /* |
| 5340 | * Expand names with a list returned by a function defined by the user. |
| 5341 | */ |
| 5342 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5343 | ExpandUserList( |
| 5344 | expand_T *xp, |
| 5345 | int *num_file, |
| 5346 | char_u ***file) |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5347 | { |
| 5348 | list_T *retlist; |
| 5349 | listitem_T *li; |
| 5350 | garray_T ga; |
| 5351 | |
| 5352 | retlist = call_user_expand_func(call_func_retlist, xp, num_file, file); |
| 5353 | if (retlist == NULL) |
| 5354 | return FAIL; |
| 5355 | |
| 5356 | ga_init2(&ga, (int)sizeof(char *), 3); |
| 5357 | /* Loop over the items in the list. */ |
| 5358 | for (li = retlist->lv_first; li != NULL; li = li->li_next) |
| 5359 | { |
Bram Moolenaar | 8d3b8c4 | 2009-06-24 15:05:00 +0000 | [diff] [blame] | 5360 | if (li->li_tv.v_type != VAR_STRING || li->li_tv.vval.v_string == NULL) |
| 5361 | continue; /* Skip non-string items and empty strings */ |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5362 | |
| 5363 | if (ga_grow(&ga, 1) == FAIL) |
| 5364 | break; |
| 5365 | |
| 5366 | ((char_u **)ga.ga_data)[ga.ga_len] = |
Bram Moolenaar | 8d3b8c4 | 2009-06-24 15:05:00 +0000 | [diff] [blame] | 5367 | vim_strsave(li->li_tv.vval.v_string); |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5368 | ++ga.ga_len; |
| 5369 | } |
| 5370 | list_unref(retlist); |
| 5371 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5372 | *file = ga.ga_data; |
| 5373 | *num_file = ga.ga_len; |
| 5374 | return OK; |
| 5375 | } |
| 5376 | #endif |
| 5377 | |
| 5378 | /* |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5379 | * Expand color scheme, compiler or filetype names. |
| 5380 | * Search from 'runtimepath': |
| 5381 | * 'runtimepath'/{dirnames}/{pat}.vim |
| 5382 | * When "flags" has DIP_START: search also from 'start' of 'packpath': |
| 5383 | * 'packpath'/pack/ * /start/ * /{dirnames}/{pat}.vim |
| 5384 | * When "flags" has DIP_OPT: search also from 'opt' of 'packpath': |
| 5385 | * 'packpath'/pack/ * /opt/ * /{dirnames}/{pat}.vim |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5386 | * "dirnames" is an array with one or more directory names. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5387 | */ |
| 5388 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5389 | ExpandRTDir( |
| 5390 | char_u *pat, |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5391 | int flags, |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5392 | int *num_file, |
| 5393 | char_u ***file, |
| 5394 | char *dirnames[]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5395 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5396 | char_u *s; |
| 5397 | char_u *e; |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5398 | char_u *match; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5399 | garray_T ga; |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5400 | int i; |
| 5401 | int pat_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5402 | |
| 5403 | *num_file = 0; |
| 5404 | *file = NULL; |
Bram Moolenaar | 5cfe2d7 | 2011-07-07 15:04:52 +0200 | [diff] [blame] | 5405 | pat_len = (int)STRLEN(pat); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5406 | ga_init2(&ga, (int)sizeof(char *), 10); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5407 | |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5408 | for (i = 0; dirnames[i] != NULL; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5409 | { |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5410 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 7)); |
| 5411 | if (s == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5412 | { |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5413 | ga_clear_strings(&ga); |
| 5414 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5415 | } |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5416 | sprintf((char *)s, "%s/%s*.vim", dirnames[i], pat); |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5417 | globpath(p_rtp, s, &ga, 0); |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5418 | vim_free(s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5419 | } |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5420 | |
Bram Moolenaar | 52f9c19 | 2016-03-13 13:24:45 +0100 | [diff] [blame] | 5421 | if (flags & DIP_START) { |
| 5422 | for (i = 0; dirnames[i] != NULL; ++i) |
| 5423 | { |
| 5424 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 22)); |
| 5425 | if (s == NULL) |
| 5426 | { |
| 5427 | ga_clear_strings(&ga); |
| 5428 | return FAIL; |
| 5429 | } |
| 5430 | sprintf((char *)s, "pack/*/start/*/%s/%s*.vim", dirnames[i], pat); |
| 5431 | globpath(p_pp, s, &ga, 0); |
| 5432 | vim_free(s); |
| 5433 | } |
| 5434 | } |
| 5435 | |
| 5436 | if (flags & DIP_OPT) { |
| 5437 | for (i = 0; dirnames[i] != NULL; ++i) |
| 5438 | { |
| 5439 | s = alloc((unsigned)(STRLEN(dirnames[i]) + pat_len + 20)); |
| 5440 | if (s == NULL) |
| 5441 | { |
| 5442 | ga_clear_strings(&ga); |
| 5443 | return FAIL; |
| 5444 | } |
| 5445 | sprintf((char *)s, "pack/*/opt/*/%s/%s*.vim", dirnames[i], pat); |
| 5446 | globpath(p_pp, s, &ga, 0); |
| 5447 | vim_free(s); |
| 5448 | } |
| 5449 | } |
| 5450 | |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5451 | for (i = 0; i < ga.ga_len; ++i) |
| 5452 | { |
| 5453 | match = ((char_u **)ga.ga_data)[i]; |
| 5454 | s = match; |
| 5455 | e = s + STRLEN(s); |
| 5456 | if (e - 4 > s && STRNICMP(e - 4, ".vim", 4) == 0) |
| 5457 | { |
| 5458 | e -= 4; |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 5459 | for (s = e; s > match; MB_PTR_BACK(match, s)) |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5460 | if (s < match || vim_ispathsep(*s)) |
| 5461 | break; |
| 5462 | ++s; |
| 5463 | *e = NUL; |
| 5464 | mch_memmove(match, s, e - s + 1); |
| 5465 | } |
| 5466 | } |
| 5467 | |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5468 | if (ga.ga_len == 0) |
Bram Moolenaar | e79abdd | 2012-06-29 13:44:41 +0200 | [diff] [blame] | 5469 | return FAIL; |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 5470 | |
| 5471 | /* Sort and remove duplicates which can happen when specifying multiple |
Bram Moolenaar | 0c7437a | 2011-06-26 19:40:23 +0200 | [diff] [blame] | 5472 | * directories in dirnames. */ |
Bram Moolenaar | 1587a1e | 2010-07-29 20:59:59 +0200 | [diff] [blame] | 5473 | remove_duplicates(&ga); |
| 5474 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5475 | *file = ga.ga_data; |
| 5476 | *num_file = ga.ga_len; |
| 5477 | return OK; |
| 5478 | } |
| 5479 | |
Bram Moolenaar | 35ca0e7 | 2016-03-05 17:41:49 +0100 | [diff] [blame] | 5480 | /* |
| 5481 | * Expand loadplugin names: |
| 5482 | * 'packpath'/pack/ * /opt/{pat} |
| 5483 | */ |
| 5484 | static int |
| 5485 | ExpandPackAddDir( |
| 5486 | char_u *pat, |
| 5487 | int *num_file, |
| 5488 | char_u ***file) |
| 5489 | { |
| 5490 | char_u *s; |
| 5491 | char_u *e; |
| 5492 | char_u *match; |
| 5493 | garray_T ga; |
| 5494 | int i; |
| 5495 | int pat_len; |
| 5496 | |
| 5497 | *num_file = 0; |
| 5498 | *file = NULL; |
| 5499 | pat_len = (int)STRLEN(pat); |
| 5500 | ga_init2(&ga, (int)sizeof(char *), 10); |
| 5501 | |
| 5502 | s = alloc((unsigned)(pat_len + 26)); |
| 5503 | if (s == NULL) |
| 5504 | { |
| 5505 | ga_clear_strings(&ga); |
| 5506 | return FAIL; |
| 5507 | } |
| 5508 | sprintf((char *)s, "pack/*/opt/%s*", pat); |
| 5509 | globpath(p_pp, s, &ga, 0); |
| 5510 | vim_free(s); |
| 5511 | |
| 5512 | for (i = 0; i < ga.ga_len; ++i) |
| 5513 | { |
| 5514 | match = ((char_u **)ga.ga_data)[i]; |
| 5515 | s = gettail(match); |
| 5516 | e = s + STRLEN(s); |
| 5517 | mch_memmove(match, s, e - s + 1); |
| 5518 | } |
| 5519 | |
| 5520 | if (ga.ga_len == 0) |
| 5521 | return FAIL; |
| 5522 | |
| 5523 | /* Sort and remove duplicates which can happen when specifying multiple |
| 5524 | * directories in dirnames. */ |
| 5525 | remove_duplicates(&ga); |
| 5526 | |
| 5527 | *file = ga.ga_data; |
| 5528 | *num_file = ga.ga_len; |
| 5529 | return OK; |
| 5530 | } |
| 5531 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5532 | #endif |
| 5533 | |
| 5534 | #if defined(FEAT_CMDL_COMPL) || defined(FEAT_EVAL) || defined(PROTO) |
| 5535 | /* |
| 5536 | * Expand "file" for all comma-separated directories in "path". |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5537 | * Adds the matches to "ga". Caller must init "ga". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5538 | */ |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5539 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5540 | globpath( |
| 5541 | char_u *path, |
| 5542 | char_u *file, |
| 5543 | garray_T *ga, |
| 5544 | int expand_options) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5545 | { |
| 5546 | expand_T xpc; |
| 5547 | char_u *buf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5548 | int i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5549 | int num_p; |
| 5550 | char_u **p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5551 | |
| 5552 | buf = alloc(MAXPATHL); |
| 5553 | if (buf == NULL) |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5554 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5555 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 5556 | ExpandInit(&xpc); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5557 | xpc.xp_context = EXPAND_FILES; |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 5558 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5559 | /* Loop over all entries in {path}. */ |
| 5560 | while (*path != NUL) |
| 5561 | { |
| 5562 | /* Copy one item of the path to buf[] and concatenate the file name. */ |
| 5563 | copy_option_part(&path, buf, MAXPATHL, ","); |
| 5564 | if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL) |
| 5565 | { |
Bram Moolenaar | 48e330a | 2016-02-23 14:53:34 +0100 | [diff] [blame] | 5566 | # if defined(MSWIN) |
Bram Moolenaar | 84f888a | 2010-08-05 21:40:16 +0200 | [diff] [blame] | 5567 | /* Using the platform's path separator (\) makes vim incorrectly |
| 5568 | * treat it as an escape character, use '/' instead. */ |
| 5569 | if (*buf != NUL && !after_pathsep(buf, buf + STRLEN(buf))) |
| 5570 | STRCAT(buf, "/"); |
| 5571 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5572 | add_pathsep(buf); |
Bram Moolenaar | 84f888a | 2010-08-05 21:40:16 +0200 | [diff] [blame] | 5573 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5574 | STRCAT(buf, file); |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 5575 | if (ExpandFromContext(&xpc, buf, &num_p, &p, |
| 5576 | WILD_SILENT|expand_options) != FAIL && num_p > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5577 | { |
Bram Moolenaar | bb5ddda | 2008-11-28 10:01:10 +0000 | [diff] [blame] | 5578 | ExpandEscape(&xpc, buf, num_p, p, WILD_SILENT|expand_options); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5579 | |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5580 | if (ga_grow(ga, num_p) == OK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5581 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5582 | for (i = 0; i < num_p; ++i) |
| 5583 | { |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5584 | ((char_u **)ga->ga_data)[ga->ga_len] = |
Bram Moolenaar | 7116aa0 | 2014-05-29 14:36:29 +0200 | [diff] [blame] | 5585 | vim_strnsave(p[i], (int)STRLEN(p[i])); |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5586 | ++ga->ga_len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5587 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5588 | } |
Bram Moolenaar | 1b1063a | 2014-05-07 18:35:30 +0200 | [diff] [blame] | 5589 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5590 | FreeWild(num_p, p); |
| 5591 | } |
| 5592 | } |
| 5593 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5594 | |
| 5595 | vim_free(buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5596 | } |
| 5597 | |
| 5598 | #endif |
| 5599 | |
| 5600 | #if defined(FEAT_CMDHIST) || defined(PROTO) |
| 5601 | |
| 5602 | /********************************* |
| 5603 | * Command line history stuff * |
| 5604 | *********************************/ |
| 5605 | |
| 5606 | /* |
| 5607 | * Translate a history character to the associated type number. |
| 5608 | */ |
| 5609 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5610 | hist_char2type(int c) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5611 | { |
| 5612 | if (c == ':') |
| 5613 | return HIST_CMD; |
| 5614 | if (c == '=') |
| 5615 | return HIST_EXPR; |
| 5616 | if (c == '@') |
| 5617 | return HIST_INPUT; |
| 5618 | if (c == '>') |
| 5619 | return HIST_DEBUG; |
| 5620 | return HIST_SEARCH; /* must be '?' or '/' */ |
| 5621 | } |
| 5622 | |
| 5623 | /* |
| 5624 | * Table of history names. |
| 5625 | * These names are used in :history and various hist...() functions. |
| 5626 | * It is sufficient to give the significant prefix of a history name. |
| 5627 | */ |
| 5628 | |
| 5629 | static char *(history_names[]) = |
| 5630 | { |
| 5631 | "cmd", |
| 5632 | "search", |
| 5633 | "expr", |
| 5634 | "input", |
| 5635 | "debug", |
| 5636 | NULL |
| 5637 | }; |
| 5638 | |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5639 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 5640 | /* |
| 5641 | * Function given to ExpandGeneric() to obtain the possible first |
| 5642 | * arguments of the ":history command. |
| 5643 | */ |
| 5644 | static char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5645 | get_history_arg(expand_T *xp UNUSED, int idx) |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5646 | { |
| 5647 | static char_u compl[2] = { NUL, NUL }; |
| 5648 | char *short_names = ":=@>?/"; |
Bram Moolenaar | 17bd9dc | 2012-05-25 11:02:41 +0200 | [diff] [blame] | 5649 | int short_names_count = (int)STRLEN(short_names); |
Bram Moolenaar | 5ae636b | 2012-04-30 18:48:53 +0200 | [diff] [blame] | 5650 | int history_name_count = sizeof(history_names) / sizeof(char *) - 1; |
| 5651 | |
| 5652 | if (idx < short_names_count) |
| 5653 | { |
| 5654 | compl[0] = (char_u)short_names[idx]; |
| 5655 | return compl; |
| 5656 | } |
| 5657 | if (idx < short_names_count + history_name_count) |
| 5658 | return (char_u *)history_names[idx - short_names_count]; |
| 5659 | if (idx == short_names_count + history_name_count) |
| 5660 | return (char_u *)"all"; |
| 5661 | return NULL; |
| 5662 | } |
| 5663 | #endif |
| 5664 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5665 | /* |
| 5666 | * init_history() - Initialize the command line history. |
| 5667 | * Also used to re-allocate the history when the size changes. |
| 5668 | */ |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 5669 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5670 | init_history(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5671 | { |
| 5672 | int newlen; /* new length of history table */ |
| 5673 | histentry_T *temp; |
| 5674 | int i; |
| 5675 | int j; |
| 5676 | int type; |
| 5677 | |
| 5678 | /* |
| 5679 | * If size of history table changed, reallocate it |
| 5680 | */ |
| 5681 | newlen = (int)p_hi; |
| 5682 | if (newlen != hislen) /* history length changed */ |
| 5683 | { |
| 5684 | for (type = 0; type < HIST_COUNT; ++type) /* adjust the tables */ |
| 5685 | { |
| 5686 | if (newlen) |
| 5687 | { |
| 5688 | temp = (histentry_T *)lalloc( |
| 5689 | (long_u)(newlen * sizeof(histentry_T)), TRUE); |
| 5690 | if (temp == NULL) /* out of memory! */ |
| 5691 | { |
| 5692 | if (type == 0) /* first one: just keep the old length */ |
| 5693 | { |
| 5694 | newlen = hislen; |
| 5695 | break; |
| 5696 | } |
| 5697 | /* Already changed one table, now we can only have zero |
| 5698 | * length for all tables. */ |
| 5699 | newlen = 0; |
| 5700 | type = -1; |
| 5701 | continue; |
| 5702 | } |
| 5703 | } |
| 5704 | else |
| 5705 | temp = NULL; |
| 5706 | if (newlen == 0 || temp != NULL) |
| 5707 | { |
| 5708 | if (hisidx[type] < 0) /* there are no entries yet */ |
| 5709 | { |
| 5710 | for (i = 0; i < newlen; ++i) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5711 | clear_hist_entry(&temp[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5712 | } |
| 5713 | else if (newlen > hislen) /* array becomes bigger */ |
| 5714 | { |
| 5715 | for (i = 0; i <= hisidx[type]; ++i) |
| 5716 | temp[i] = history[type][i]; |
| 5717 | j = i; |
| 5718 | for ( ; i <= newlen - (hislen - hisidx[type]); ++i) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5719 | clear_hist_entry(&temp[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5720 | for ( ; j < hislen; ++i, ++j) |
| 5721 | temp[i] = history[type][j]; |
| 5722 | } |
| 5723 | else /* array becomes smaller or 0 */ |
| 5724 | { |
| 5725 | j = hisidx[type]; |
| 5726 | for (i = newlen - 1; ; --i) |
| 5727 | { |
| 5728 | if (i >= 0) /* copy newest entries */ |
| 5729 | temp[i] = history[type][j]; |
| 5730 | else /* remove older entries */ |
| 5731 | vim_free(history[type][j].hisstr); |
| 5732 | if (--j < 0) |
| 5733 | j = hislen - 1; |
| 5734 | if (j == hisidx[type]) |
| 5735 | break; |
| 5736 | } |
| 5737 | hisidx[type] = newlen - 1; |
| 5738 | } |
| 5739 | vim_free(history[type]); |
| 5740 | history[type] = temp; |
| 5741 | } |
| 5742 | } |
| 5743 | hislen = newlen; |
| 5744 | } |
| 5745 | } |
| 5746 | |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5747 | static void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5748 | clear_hist_entry(histentry_T *hisptr) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5749 | { |
| 5750 | hisptr->hisnum = 0; |
| 5751 | hisptr->viminfo = FALSE; |
| 5752 | hisptr->hisstr = NULL; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 5753 | hisptr->time_set = 0; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5754 | } |
| 5755 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5756 | /* |
| 5757 | * Check if command line 'str' is already in history. |
| 5758 | * If 'move_to_front' is TRUE, matching entry is moved to end of history. |
| 5759 | */ |
| 5760 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5761 | in_history( |
| 5762 | int type, |
| 5763 | char_u *str, |
| 5764 | int move_to_front, /* Move the entry to the front if it exists */ |
| 5765 | int sep, |
| 5766 | int writing) /* ignore entries read from viminfo */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5767 | { |
| 5768 | int i; |
| 5769 | int last_i = -1; |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5770 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5771 | |
| 5772 | if (hisidx[type] < 0) |
| 5773 | return FALSE; |
| 5774 | i = hisidx[type]; |
| 5775 | do |
| 5776 | { |
| 5777 | if (history[type][i].hisstr == NULL) |
| 5778 | return FALSE; |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5779 | |
| 5780 | /* For search history, check that the separator character matches as |
| 5781 | * well. */ |
| 5782 | p = history[type][i].hisstr; |
| 5783 | if (STRCMP(str, p) == 0 |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 5784 | && !(writing && history[type][i].viminfo) |
Bram Moolenaar | 4c40223 | 2011-07-27 17:58:46 +0200 | [diff] [blame] | 5785 | && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5786 | { |
| 5787 | if (!move_to_front) |
| 5788 | return TRUE; |
| 5789 | last_i = i; |
| 5790 | break; |
| 5791 | } |
| 5792 | if (--i < 0) |
| 5793 | i = hislen - 1; |
| 5794 | } while (i != hisidx[type]); |
| 5795 | |
| 5796 | if (last_i >= 0) |
| 5797 | { |
| 5798 | str = history[type][i].hisstr; |
| 5799 | while (i != hisidx[type]) |
| 5800 | { |
| 5801 | if (++i >= hislen) |
| 5802 | i = 0; |
| 5803 | history[type][last_i] = history[type][i]; |
| 5804 | last_i = i; |
| 5805 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5806 | history[type][i].hisnum = ++hisnum[type]; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5807 | history[type][i].viminfo = FALSE; |
| 5808 | history[type][i].hisstr = str; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 5809 | history[type][i].time_set = vim_time(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5810 | return TRUE; |
| 5811 | } |
| 5812 | return FALSE; |
| 5813 | } |
| 5814 | |
| 5815 | /* |
| 5816 | * Convert history name (from table above) to its HIST_ equivalent. |
| 5817 | * When "name" is empty, return "cmd" history. |
| 5818 | * Returns -1 for unknown history name. |
| 5819 | */ |
| 5820 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5821 | get_histtype(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5822 | { |
| 5823 | int i; |
| 5824 | int len = (int)STRLEN(name); |
| 5825 | |
| 5826 | /* No argument: use current history. */ |
| 5827 | if (len == 0) |
| 5828 | return hist_char2type(ccline.cmdfirstc); |
| 5829 | |
| 5830 | for (i = 0; history_names[i] != NULL; ++i) |
| 5831 | if (STRNICMP(name, history_names[i], len) == 0) |
| 5832 | return i; |
| 5833 | |
| 5834 | if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL) |
| 5835 | return hist_char2type(name[0]); |
| 5836 | |
| 5837 | return -1; |
| 5838 | } |
| 5839 | |
| 5840 | static int last_maptick = -1; /* last seen maptick */ |
| 5841 | |
| 5842 | /* |
| 5843 | * Add the given string to the given history. If the string is already in the |
| 5844 | * history then it is moved to the front. "histype" may be one of he HIST_ |
| 5845 | * values. |
| 5846 | */ |
| 5847 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5848 | add_to_history( |
| 5849 | int histype, |
| 5850 | char_u *new_entry, |
| 5851 | int in_map, /* consider maptick when inside a mapping */ |
| 5852 | int sep) /* separator character used (search hist) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5853 | { |
| 5854 | histentry_T *hisptr; |
| 5855 | int len; |
| 5856 | |
| 5857 | if (hislen == 0) /* no history */ |
| 5858 | return; |
| 5859 | |
Bram Moolenaar | a939e43 | 2013-11-09 05:30:26 +0100 | [diff] [blame] | 5860 | if (cmdmod.keeppatterns && histype == HIST_SEARCH) |
| 5861 | return; |
| 5862 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5863 | /* |
| 5864 | * Searches inside the same mapping overwrite each other, so that only |
| 5865 | * the last line is kept. Be careful not to remove a line that was moved |
| 5866 | * down, only lines that were added. |
| 5867 | */ |
| 5868 | if (histype == HIST_SEARCH && in_map) |
| 5869 | { |
Bram Moolenaar | 4664371 | 2016-09-09 21:42:36 +0200 | [diff] [blame] | 5870 | if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5871 | { |
| 5872 | /* Current line is from the same mapping, remove it */ |
| 5873 | hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]]; |
| 5874 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5875 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5876 | --hisnum[histype]; |
| 5877 | if (--hisidx[HIST_SEARCH] < 0) |
| 5878 | hisidx[HIST_SEARCH] = hislen - 1; |
| 5879 | } |
| 5880 | last_maptick = -1; |
| 5881 | } |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 5882 | if (!in_history(histype, new_entry, TRUE, sep, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5883 | { |
| 5884 | if (++hisidx[histype] == hislen) |
| 5885 | hisidx[histype] = 0; |
| 5886 | hisptr = &history[histype][hisidx[histype]]; |
| 5887 | vim_free(hisptr->hisstr); |
| 5888 | |
| 5889 | /* Store the separator after the NUL of the string. */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5890 | len = (int)STRLEN(new_entry); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5891 | hisptr->hisstr = vim_strnsave(new_entry, len + 2); |
| 5892 | if (hisptr->hisstr != NULL) |
| 5893 | hisptr->hisstr[len + 1] = sep; |
| 5894 | |
| 5895 | hisptr->hisnum = ++hisnum[histype]; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5896 | hisptr->viminfo = FALSE; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 5897 | hisptr->time_set = vim_time(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5898 | if (histype == HIST_SEARCH && in_map) |
| 5899 | last_maptick = maptick; |
| 5900 | } |
| 5901 | } |
| 5902 | |
| 5903 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 5904 | |
| 5905 | /* |
| 5906 | * Get identifier of newest history entry. |
| 5907 | * "histype" may be one of the HIST_ values. |
| 5908 | */ |
| 5909 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5910 | get_history_idx(int histype) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5911 | { |
| 5912 | if (hislen == 0 || histype < 0 || histype >= HIST_COUNT |
| 5913 | || hisidx[histype] < 0) |
| 5914 | return -1; |
| 5915 | |
| 5916 | return history[histype][hisidx[histype]].hisnum; |
| 5917 | } |
| 5918 | |
Bram Moolenaar | bfd8fc0 | 2005-09-20 23:22:24 +0000 | [diff] [blame] | 5919 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5920 | * Calculate history index from a number: |
| 5921 | * num > 0: seen as identifying number of a history entry |
| 5922 | * num < 0: relative position in history wrt newest entry |
| 5923 | * "histype" may be one of the HIST_ values. |
| 5924 | */ |
| 5925 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5926 | calc_hist_idx(int histype, int num) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5927 | { |
| 5928 | int i; |
| 5929 | histentry_T *hist; |
| 5930 | int wrapped = FALSE; |
| 5931 | |
| 5932 | if (hislen == 0 || histype < 0 || histype >= HIST_COUNT |
| 5933 | || (i = hisidx[histype]) < 0 || num == 0) |
| 5934 | return -1; |
| 5935 | |
| 5936 | hist = history[histype]; |
| 5937 | if (num > 0) |
| 5938 | { |
| 5939 | while (hist[i].hisnum > num) |
| 5940 | if (--i < 0) |
| 5941 | { |
| 5942 | if (wrapped) |
| 5943 | break; |
| 5944 | i += hislen; |
| 5945 | wrapped = TRUE; |
| 5946 | } |
| 5947 | if (hist[i].hisnum == num && hist[i].hisstr != NULL) |
| 5948 | return i; |
| 5949 | } |
| 5950 | else if (-num <= hislen) |
| 5951 | { |
| 5952 | i += num + 1; |
| 5953 | if (i < 0) |
| 5954 | i += hislen; |
| 5955 | if (hist[i].hisstr != NULL) |
| 5956 | return i; |
| 5957 | } |
| 5958 | return -1; |
| 5959 | } |
| 5960 | |
| 5961 | /* |
| 5962 | * Get a history entry by its index. |
| 5963 | * "histype" may be one of the HIST_ values. |
| 5964 | */ |
| 5965 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5966 | get_history_entry(int histype, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5967 | { |
| 5968 | idx = calc_hist_idx(histype, idx); |
| 5969 | if (idx >= 0) |
| 5970 | return history[histype][idx].hisstr; |
| 5971 | else |
| 5972 | return (char_u *)""; |
| 5973 | } |
| 5974 | |
| 5975 | /* |
| 5976 | * Clear all entries of a history. |
| 5977 | * "histype" may be one of the HIST_ values. |
| 5978 | */ |
| 5979 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 5980 | clr_history(int histype) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5981 | { |
| 5982 | int i; |
| 5983 | histentry_T *hisptr; |
| 5984 | |
| 5985 | if (hislen != 0 && histype >= 0 && histype < HIST_COUNT) |
| 5986 | { |
| 5987 | hisptr = history[histype]; |
| 5988 | for (i = hislen; i--;) |
| 5989 | { |
| 5990 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 5991 | clear_hist_entry(hisptr); |
Bram Moolenaar | 119d469 | 2016-03-05 21:21:24 +0100 | [diff] [blame] | 5992 | hisptr++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5993 | } |
| 5994 | hisidx[histype] = -1; /* mark history as cleared */ |
| 5995 | hisnum[histype] = 0; /* reset identifier counter */ |
| 5996 | return OK; |
| 5997 | } |
| 5998 | return FAIL; |
| 5999 | } |
| 6000 | |
| 6001 | /* |
| 6002 | * Remove all entries matching {str} from a history. |
| 6003 | * "histype" may be one of the HIST_ values. |
| 6004 | */ |
| 6005 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6006 | del_history_entry(int histype, char_u *str) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6007 | { |
| 6008 | regmatch_T regmatch; |
| 6009 | histentry_T *hisptr; |
| 6010 | int idx; |
| 6011 | int i; |
| 6012 | int last; |
| 6013 | int found = FALSE; |
| 6014 | |
| 6015 | regmatch.regprog = NULL; |
| 6016 | regmatch.rm_ic = FALSE; /* always match case */ |
| 6017 | if (hislen != 0 |
| 6018 | && histype >= 0 |
| 6019 | && histype < HIST_COUNT |
| 6020 | && *str != NUL |
| 6021 | && (idx = hisidx[histype]) >= 0 |
| 6022 | && (regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING)) |
| 6023 | != NULL) |
| 6024 | { |
| 6025 | i = last = idx; |
| 6026 | do |
| 6027 | { |
| 6028 | hisptr = &history[histype][i]; |
| 6029 | if (hisptr->hisstr == NULL) |
| 6030 | break; |
| 6031 | if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) |
| 6032 | { |
| 6033 | found = TRUE; |
| 6034 | vim_free(hisptr->hisstr); |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6035 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6036 | } |
| 6037 | else |
| 6038 | { |
| 6039 | if (i != last) |
| 6040 | { |
| 6041 | history[histype][last] = *hisptr; |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6042 | clear_hist_entry(hisptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6043 | } |
| 6044 | if (--last < 0) |
| 6045 | last += hislen; |
| 6046 | } |
| 6047 | if (--i < 0) |
| 6048 | i += hislen; |
| 6049 | } while (i != idx); |
| 6050 | if (history[histype][idx].hisstr == NULL) |
| 6051 | hisidx[histype] = -1; |
| 6052 | } |
Bram Moolenaar | 473de61 | 2013-06-08 18:19:48 +0200 | [diff] [blame] | 6053 | vim_regfree(regmatch.regprog); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6054 | return found; |
| 6055 | } |
| 6056 | |
| 6057 | /* |
| 6058 | * Remove an indexed entry from a history. |
| 6059 | * "histype" may be one of the HIST_ values. |
| 6060 | */ |
| 6061 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6062 | del_history_idx(int histype, int idx) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6063 | { |
| 6064 | int i, j; |
| 6065 | |
| 6066 | i = calc_hist_idx(histype, idx); |
| 6067 | if (i < 0) |
| 6068 | return FALSE; |
| 6069 | idx = hisidx[histype]; |
| 6070 | vim_free(history[histype][i].hisstr); |
| 6071 | |
| 6072 | /* When deleting the last added search string in a mapping, reset |
| 6073 | * last_maptick, so that the last added search string isn't deleted again. |
| 6074 | */ |
| 6075 | if (histype == HIST_SEARCH && maptick == last_maptick && i == idx) |
| 6076 | last_maptick = -1; |
| 6077 | |
| 6078 | while (i != idx) |
| 6079 | { |
| 6080 | j = (i + 1) % hislen; |
| 6081 | history[histype][i] = history[histype][j]; |
| 6082 | i = j; |
| 6083 | } |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6084 | clear_hist_entry(&history[histype][i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6085 | if (--i < 0) |
| 6086 | i += hislen; |
| 6087 | hisidx[histype] = i; |
| 6088 | return TRUE; |
| 6089 | } |
| 6090 | |
| 6091 | #endif /* FEAT_EVAL */ |
| 6092 | |
| 6093 | #if defined(FEAT_CRYPT) || defined(PROTO) |
| 6094 | /* |
| 6095 | * Very specific function to remove the value in ":set key=val" from the |
| 6096 | * history. |
| 6097 | */ |
| 6098 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6099 | remove_key_from_history(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6100 | { |
| 6101 | char_u *p; |
| 6102 | int i; |
| 6103 | |
| 6104 | i = hisidx[HIST_CMD]; |
| 6105 | if (i < 0) |
| 6106 | return; |
| 6107 | p = history[HIST_CMD][i].hisstr; |
| 6108 | if (p != NULL) |
| 6109 | for ( ; *p; ++p) |
| 6110 | if (STRNCMP(p, "key", 3) == 0 && !isalpha(p[3])) |
| 6111 | { |
| 6112 | p = vim_strchr(p + 3, '='); |
| 6113 | if (p == NULL) |
| 6114 | break; |
| 6115 | ++p; |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 6116 | for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6117 | if (p[i] == '\\' && p[i + 1]) |
| 6118 | ++i; |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 6119 | STRMOVE(p, p + i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6120 | --p; |
| 6121 | } |
| 6122 | } |
| 6123 | #endif |
| 6124 | |
| 6125 | #endif /* FEAT_CMDHIST */ |
| 6126 | |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6127 | #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6128 | /* |
| 6129 | * Get pointer to the command line info to use. cmdline_paste() may clear |
| 6130 | * ccline and put the previous value in prev_ccline. |
| 6131 | */ |
| 6132 | static struct cmdline_info * |
| 6133 | get_ccline_ptr(void) |
| 6134 | { |
| 6135 | if ((State & CMDLINE) == 0) |
| 6136 | return NULL; |
| 6137 | if (ccline.cmdbuff != NULL) |
| 6138 | return &ccline; |
| 6139 | if (prev_ccline_used && prev_ccline.cmdbuff != NULL) |
| 6140 | return &prev_ccline; |
| 6141 | return NULL; |
| 6142 | } |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6143 | #endif |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6144 | |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6145 | #if defined(FEAT_EVAL) || defined(PROTO) |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6146 | /* |
| 6147 | * Get the current command line in allocated memory. |
| 6148 | * Only works when the command line is being edited. |
| 6149 | * Returns NULL when something is wrong. |
| 6150 | */ |
| 6151 | char_u * |
| 6152 | get_cmdline_str(void) |
| 6153 | { |
| 6154 | struct cmdline_info *p = get_ccline_ptr(); |
| 6155 | |
| 6156 | if (p == NULL) |
| 6157 | return NULL; |
| 6158 | return vim_strnsave(p->cmdbuff, p->cmdlen); |
| 6159 | } |
| 6160 | |
| 6161 | /* |
| 6162 | * Get the current command line position, counted in bytes. |
| 6163 | * Zero is the first position. |
| 6164 | * Only works when the command line is being edited. |
| 6165 | * Returns -1 when something is wrong. |
| 6166 | */ |
| 6167 | int |
| 6168 | get_cmdline_pos(void) |
| 6169 | { |
| 6170 | struct cmdline_info *p = get_ccline_ptr(); |
| 6171 | |
| 6172 | if (p == NULL) |
| 6173 | return -1; |
| 6174 | return p->cmdpos; |
| 6175 | } |
| 6176 | |
| 6177 | /* |
| 6178 | * Set the command line byte position to "pos". Zero is the first position. |
| 6179 | * Only works when the command line is being edited. |
| 6180 | * Returns 1 when failed, 0 when OK. |
| 6181 | */ |
| 6182 | int |
| 6183 | set_cmdline_pos( |
| 6184 | int pos) |
| 6185 | { |
| 6186 | struct cmdline_info *p = get_ccline_ptr(); |
| 6187 | |
| 6188 | if (p == NULL) |
| 6189 | return 1; |
| 6190 | |
| 6191 | /* The position is not set directly but after CTRL-\ e or CTRL-R = has |
| 6192 | * changed the command line. */ |
| 6193 | if (pos < 0) |
| 6194 | new_cmdpos = 0; |
| 6195 | else |
| 6196 | new_cmdpos = pos; |
| 6197 | return 0; |
| 6198 | } |
| 6199 | #endif |
| 6200 | |
| 6201 | #if defined(FEAT_EVAL) || defined(FEAT_CMDWIN) || defined(PROTO) |
| 6202 | /* |
| 6203 | * Get the current command-line type. |
| 6204 | * Returns ':' or '/' or '?' or '@' or '>' or '-' |
| 6205 | * Only works when the command line is being edited. |
| 6206 | * Returns NUL when something is wrong. |
| 6207 | */ |
| 6208 | int |
| 6209 | get_cmdline_type(void) |
| 6210 | { |
| 6211 | struct cmdline_info *p = get_ccline_ptr(); |
| 6212 | |
| 6213 | if (p == NULL) |
| 6214 | return NUL; |
| 6215 | if (p->cmdfirstc == NUL) |
Bram Moolenaar | 064154c | 2016-03-19 22:50:43 +0100 | [diff] [blame] | 6216 | return |
| 6217 | # ifdef FEAT_EVAL |
| 6218 | (p->input_fn) ? '@' : |
| 6219 | # endif |
| 6220 | '-'; |
Bram Moolenaar | d293b2b | 2016-03-19 22:29:49 +0100 | [diff] [blame] | 6221 | return p->cmdfirstc; |
| 6222 | } |
| 6223 | #endif |
| 6224 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6225 | #if defined(FEAT_QUICKFIX) || defined(FEAT_CMDHIST) || defined(PROTO) |
| 6226 | /* |
| 6227 | * Get indices "num1,num2" that specify a range within a list (not a range of |
| 6228 | * text lines in a buffer!) from a string. Used for ":history" and ":clist". |
| 6229 | * Returns OK if parsed successfully, otherwise FAIL. |
| 6230 | */ |
| 6231 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6232 | get_list_range(char_u **str, int *num1, int *num2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6233 | { |
| 6234 | int len; |
| 6235 | int first = FALSE; |
Bram Moolenaar | 22fcfad | 2016-07-01 18:17:26 +0200 | [diff] [blame] | 6236 | varnumber_T num; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6237 | |
| 6238 | *str = skipwhite(*str); |
| 6239 | if (**str == '-' || vim_isdigit(**str)) /* parse "from" part of range */ |
| 6240 | { |
Bram Moolenaar | 887c1fe | 2016-01-02 17:56:35 +0100 | [diff] [blame] | 6241 | vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6242 | *str += len; |
| 6243 | *num1 = (int)num; |
| 6244 | first = TRUE; |
| 6245 | } |
| 6246 | *str = skipwhite(*str); |
| 6247 | if (**str == ',') /* parse "to" part of range */ |
| 6248 | { |
| 6249 | *str = skipwhite(*str + 1); |
Bram Moolenaar | 887c1fe | 2016-01-02 17:56:35 +0100 | [diff] [blame] | 6250 | vim_str2nr(*str, NULL, &len, 0, &num, NULL, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6251 | if (len > 0) |
| 6252 | { |
| 6253 | *num2 = (int)num; |
| 6254 | *str = skipwhite(*str + len); |
| 6255 | } |
| 6256 | else if (!first) /* no number given at all */ |
| 6257 | return FAIL; |
| 6258 | } |
| 6259 | else if (first) /* only one number given */ |
| 6260 | *num2 = *num1; |
| 6261 | return OK; |
| 6262 | } |
| 6263 | #endif |
| 6264 | |
| 6265 | #if defined(FEAT_CMDHIST) || defined(PROTO) |
| 6266 | /* |
| 6267 | * :history command - print a history |
| 6268 | */ |
| 6269 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6270 | ex_history(exarg_T *eap) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6271 | { |
| 6272 | histentry_T *hist; |
| 6273 | int histype1 = HIST_CMD; |
| 6274 | int histype2 = HIST_CMD; |
| 6275 | int hisidx1 = 1; |
| 6276 | int hisidx2 = -1; |
| 6277 | int idx; |
| 6278 | int i, j, k; |
| 6279 | char_u *end; |
| 6280 | char_u *arg = eap->arg; |
| 6281 | |
| 6282 | if (hislen == 0) |
| 6283 | { |
| 6284 | MSG(_("'history' option is zero")); |
| 6285 | return; |
| 6286 | } |
| 6287 | |
| 6288 | if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ',')) |
| 6289 | { |
| 6290 | end = arg; |
| 6291 | while (ASCII_ISALPHA(*end) |
| 6292 | || vim_strchr((char_u *)":=@>/?", *end) != NULL) |
| 6293 | end++; |
| 6294 | i = *end; |
| 6295 | *end = NUL; |
| 6296 | histype1 = get_histtype(arg); |
| 6297 | if (histype1 == -1) |
| 6298 | { |
Bram Moolenaar | b9c1e96 | 2009-04-22 11:52:33 +0000 | [diff] [blame] | 6299 | if (STRNICMP(arg, "all", STRLEN(arg)) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6300 | { |
| 6301 | histype1 = 0; |
| 6302 | histype2 = HIST_COUNT-1; |
| 6303 | } |
| 6304 | else |
| 6305 | { |
| 6306 | *end = i; |
| 6307 | EMSG(_(e_trailing)); |
| 6308 | return; |
| 6309 | } |
| 6310 | } |
| 6311 | else |
| 6312 | histype2 = histype1; |
| 6313 | *end = i; |
| 6314 | } |
| 6315 | else |
| 6316 | end = arg; |
| 6317 | if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) |
| 6318 | { |
| 6319 | EMSG(_(e_trailing)); |
| 6320 | return; |
| 6321 | } |
| 6322 | |
| 6323 | for (; !got_int && histype1 <= histype2; ++histype1) |
| 6324 | { |
| 6325 | STRCPY(IObuff, "\n # "); |
| 6326 | STRCAT(STRCAT(IObuff, history_names[histype1]), " history"); |
| 6327 | MSG_PUTS_TITLE(IObuff); |
| 6328 | idx = hisidx[histype1]; |
| 6329 | hist = history[histype1]; |
| 6330 | j = hisidx1; |
| 6331 | k = hisidx2; |
| 6332 | if (j < 0) |
| 6333 | j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum; |
| 6334 | if (k < 0) |
| 6335 | k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum; |
| 6336 | if (idx >= 0 && j <= k) |
| 6337 | for (i = idx + 1; !got_int; ++i) |
| 6338 | { |
| 6339 | if (i == hislen) |
| 6340 | i = 0; |
| 6341 | if (hist[i].hisstr != NULL |
| 6342 | && hist[i].hisnum >= j && hist[i].hisnum <= k) |
| 6343 | { |
| 6344 | msg_putchar('\n'); |
| 6345 | sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ', |
| 6346 | hist[i].hisnum); |
| 6347 | if (vim_strsize(hist[i].hisstr) > (int)Columns - 10) |
| 6348 | trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff), |
Bram Moolenaar | 38f5f95 | 2012-01-26 13:01:59 +0100 | [diff] [blame] | 6349 | (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6350 | else |
| 6351 | STRCAT(IObuff, hist[i].hisstr); |
| 6352 | msg_outtrans(IObuff); |
| 6353 | out_flush(); |
| 6354 | } |
| 6355 | if (i == idx) |
| 6356 | break; |
| 6357 | } |
| 6358 | } |
| 6359 | } |
| 6360 | #endif |
| 6361 | |
| 6362 | #if (defined(FEAT_VIMINFO) && defined(FEAT_CMDHIST)) || defined(PROTO) |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6363 | /* |
| 6364 | * Buffers for history read from a viminfo file. Only valid while reading. |
| 6365 | */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6366 | static histentry_T *viminfo_history[HIST_COUNT] = |
| 6367 | {NULL, NULL, NULL, NULL, NULL}; |
| 6368 | static int viminfo_hisidx[HIST_COUNT] = {0, 0, 0, 0, 0}; |
| 6369 | static int viminfo_hislen[HIST_COUNT] = {0, 0, 0, 0, 0}; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6370 | static int viminfo_add_at_front = FALSE; |
| 6371 | |
Bram Moolenaar | d25c16e | 2016-01-29 22:13:30 +0100 | [diff] [blame] | 6372 | static int hist_type2char(int type, int use_question); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6373 | |
| 6374 | /* |
| 6375 | * Translate a history type number to the associated character. |
| 6376 | */ |
| 6377 | static int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6378 | hist_type2char( |
| 6379 | int type, |
| 6380 | int use_question) /* use '?' instead of '/' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6381 | { |
| 6382 | if (type == HIST_CMD) |
| 6383 | return ':'; |
| 6384 | if (type == HIST_SEARCH) |
| 6385 | { |
| 6386 | if (use_question) |
| 6387 | return '?'; |
| 6388 | else |
| 6389 | return '/'; |
| 6390 | } |
| 6391 | if (type == HIST_EXPR) |
| 6392 | return '='; |
| 6393 | return '@'; |
| 6394 | } |
| 6395 | |
| 6396 | /* |
| 6397 | * Prepare for reading the history from the viminfo file. |
| 6398 | * This allocates history arrays to store the read history lines. |
| 6399 | */ |
| 6400 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6401 | prepare_viminfo_history(int asklen, int writing) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6402 | { |
| 6403 | int i; |
| 6404 | int num; |
| 6405 | int type; |
| 6406 | int len; |
| 6407 | |
| 6408 | init_history(); |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6409 | viminfo_add_at_front = (asklen != 0 && !writing); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6410 | if (asklen > hislen) |
| 6411 | asklen = hislen; |
| 6412 | |
| 6413 | for (type = 0; type < HIST_COUNT; ++type) |
| 6414 | { |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6415 | /* Count the number of empty spaces in the history list. Entries read |
| 6416 | * from viminfo previously are also considered empty. If there are |
| 6417 | * more spaces available than we request, then fill them up. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6418 | for (i = 0, num = 0; i < hislen; i++) |
Bram Moolenaar | b3049f4 | 2013-04-05 18:58:47 +0200 | [diff] [blame] | 6419 | if (history[type][i].hisstr == NULL || history[type][i].viminfo) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6420 | num++; |
| 6421 | len = asklen; |
| 6422 | if (num > len) |
| 6423 | len = num; |
| 6424 | if (len <= 0) |
| 6425 | viminfo_history[type] = NULL; |
| 6426 | else |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6427 | viminfo_history[type] = (histentry_T *)lalloc( |
| 6428 | (long_u)(len * sizeof(histentry_T)), FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6429 | if (viminfo_history[type] == NULL) |
| 6430 | len = 0; |
| 6431 | viminfo_hislen[type] = len; |
| 6432 | viminfo_hisidx[type] = 0; |
| 6433 | } |
| 6434 | } |
| 6435 | |
| 6436 | /* |
| 6437 | * Accept a line from the viminfo, store it in the history array when it's |
| 6438 | * new. |
| 6439 | */ |
| 6440 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6441 | read_viminfo_history(vir_T *virp, int writing) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6442 | { |
| 6443 | int type; |
| 6444 | long_u len; |
| 6445 | char_u *val; |
| 6446 | char_u *p; |
| 6447 | |
| 6448 | type = hist_char2type(virp->vir_line[0]); |
| 6449 | if (viminfo_hisidx[type] < viminfo_hislen[type]) |
| 6450 | { |
| 6451 | val = viminfo_readstring(virp, 1, TRUE); |
| 6452 | if (val != NULL && *val != NUL) |
| 6453 | { |
Bram Moolenaar | d87fbc2 | 2012-02-04 22:44:32 +0100 | [diff] [blame] | 6454 | int sep = (*val == ' ' ? NUL : *val); |
| 6455 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6456 | if (!in_history(type, val + (type == HIST_SEARCH), |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6457 | viminfo_add_at_front, sep, writing)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6458 | { |
| 6459 | /* Need to re-allocate to append the separator byte. */ |
| 6460 | len = STRLEN(val); |
| 6461 | p = lalloc(len + 2, TRUE); |
| 6462 | if (p != NULL) |
| 6463 | { |
| 6464 | if (type == HIST_SEARCH) |
| 6465 | { |
| 6466 | /* Search entry: Move the separator from the first |
| 6467 | * column to after the NUL. */ |
| 6468 | mch_memmove(p, val + 1, (size_t)len); |
Bram Moolenaar | d87fbc2 | 2012-02-04 22:44:32 +0100 | [diff] [blame] | 6469 | p[len] = sep; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6470 | } |
| 6471 | else |
| 6472 | { |
| 6473 | /* Not a search entry: No separator in the viminfo |
| 6474 | * file, add a NUL separator. */ |
| 6475 | mch_memmove(p, val, (size_t)len + 1); |
| 6476 | p[len + 1] = NUL; |
| 6477 | } |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6478 | viminfo_history[type][viminfo_hisidx[type]].hisstr = p; |
| 6479 | viminfo_history[type][viminfo_hisidx[type]].time_set = 0; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6480 | viminfo_history[type][viminfo_hisidx[type]].viminfo = TRUE; |
| 6481 | viminfo_history[type][viminfo_hisidx[type]].hisnum = 0; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6482 | viminfo_hisidx[type]++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6483 | } |
| 6484 | } |
| 6485 | } |
| 6486 | vim_free(val); |
| 6487 | } |
| 6488 | return viminfo_readline(virp); |
| 6489 | } |
| 6490 | |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6491 | /* |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6492 | * Accept a new style history line from the viminfo, store it in the history |
| 6493 | * array when it's new. |
| 6494 | */ |
| 6495 | void |
| 6496 | handle_viminfo_history( |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6497 | garray_T *values, |
| 6498 | int writing) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6499 | { |
| 6500 | int type; |
| 6501 | long_u len; |
| 6502 | char_u *val; |
| 6503 | char_u *p; |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6504 | bval_T *vp = (bval_T *)values->ga_data; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6505 | |
| 6506 | /* Check the format: |
| 6507 | * |{bartype},{histtype},{timestamp},{separator},"text" */ |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6508 | if (values->ga_len < 4 |
| 6509 | || vp[0].bv_type != BVAL_NR |
| 6510 | || vp[1].bv_type != BVAL_NR |
| 6511 | || (vp[2].bv_type != BVAL_NR && vp[2].bv_type != BVAL_EMPTY) |
| 6512 | || vp[3].bv_type != BVAL_STRING) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6513 | return; |
| 6514 | |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6515 | type = vp[0].bv_nr; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6516 | if (type >= HIST_COUNT) |
| 6517 | return; |
| 6518 | if (viminfo_hisidx[type] < viminfo_hislen[type]) |
| 6519 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6520 | val = vp[3].bv_string; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6521 | if (val != NULL && *val != NUL) |
| 6522 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6523 | int sep = type == HIST_SEARCH && vp[2].bv_type == BVAL_NR |
| 6524 | ? vp[2].bv_nr : NUL; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6525 | int idx; |
| 6526 | int overwrite = FALSE; |
| 6527 | |
| 6528 | if (!in_history(type, val, viminfo_add_at_front, sep, writing)) |
| 6529 | { |
| 6530 | /* If lines were written by an older Vim we need to avoid |
| 6531 | * getting duplicates. See if the entry already exists. */ |
| 6532 | for (idx = 0; idx < viminfo_hisidx[type]; ++idx) |
| 6533 | { |
| 6534 | p = viminfo_history[type][idx].hisstr; |
| 6535 | if (STRCMP(val, p) == 0 |
| 6536 | && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1])) |
| 6537 | { |
| 6538 | overwrite = TRUE; |
| 6539 | break; |
| 6540 | } |
| 6541 | } |
| 6542 | |
| 6543 | if (!overwrite) |
| 6544 | { |
| 6545 | /* Need to re-allocate to append the separator byte. */ |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6546 | len = vp[3].bv_len; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6547 | p = lalloc(len + 2, TRUE); |
| 6548 | } |
Bram Moolenaar | 72e697d | 2016-06-13 22:48:01 +0200 | [diff] [blame] | 6549 | else |
| 6550 | len = 0; /* for picky compilers */ |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6551 | if (p != NULL) |
| 6552 | { |
Bram Moolenaar | 46bbb0c | 2016-06-11 21:04:39 +0200 | [diff] [blame] | 6553 | viminfo_history[type][idx].time_set = vp[1].bv_nr; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6554 | if (!overwrite) |
| 6555 | { |
| 6556 | mch_memmove(p, val, (size_t)len + 1); |
| 6557 | /* Put the separator after the NUL. */ |
| 6558 | p[len + 1] = sep; |
| 6559 | viminfo_history[type][idx].hisstr = p; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6560 | viminfo_history[type][idx].hisnum = 0; |
| 6561 | viminfo_history[type][idx].viminfo = TRUE; |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6562 | viminfo_hisidx[type]++; |
| 6563 | } |
| 6564 | } |
| 6565 | } |
| 6566 | } |
| 6567 | } |
| 6568 | } |
| 6569 | |
| 6570 | /* |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6571 | * Concatenate history lines from viminfo after the lines typed in this Vim. |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6572 | */ |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6573 | static void |
| 6574 | concat_history(int type) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6575 | { |
| 6576 | int idx; |
| 6577 | int i; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6578 | |
| 6579 | idx = hisidx[type] + viminfo_hisidx[type]; |
| 6580 | if (idx >= hislen) |
| 6581 | idx -= hislen; |
| 6582 | else if (idx < 0) |
| 6583 | idx = hislen - 1; |
| 6584 | if (viminfo_add_at_front) |
| 6585 | hisidx[type] = idx; |
| 6586 | else |
| 6587 | { |
| 6588 | if (hisidx[type] == -1) |
| 6589 | hisidx[type] = hislen - 1; |
| 6590 | do |
| 6591 | { |
| 6592 | if (history[type][idx].hisstr != NULL |
| 6593 | || history[type][idx].viminfo) |
| 6594 | break; |
| 6595 | if (++idx == hislen) |
| 6596 | idx = 0; |
| 6597 | } while (idx != hisidx[type]); |
| 6598 | if (idx != hisidx[type] && --idx < 0) |
| 6599 | idx = hislen - 1; |
| 6600 | } |
| 6601 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6602 | { |
| 6603 | vim_free(history[type][idx].hisstr); |
| 6604 | history[type][idx].hisstr = viminfo_history[type][i].hisstr; |
| 6605 | history[type][idx].viminfo = TRUE; |
| 6606 | history[type][idx].time_set = viminfo_history[type][i].time_set; |
| 6607 | if (--idx < 0) |
| 6608 | idx = hislen - 1; |
| 6609 | } |
| 6610 | idx += 1; |
| 6611 | idx %= hislen; |
| 6612 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6613 | { |
| 6614 | history[type][idx++].hisnum = ++hisnum[type]; |
| 6615 | idx %= hislen; |
| 6616 | } |
| 6617 | } |
| 6618 | |
| 6619 | #if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
| 6620 | static int |
| 6621 | #ifdef __BORLANDC__ |
| 6622 | _RTLENTRYF |
| 6623 | #endif |
| 6624 | sort_hist(const void *s1, const void *s2) |
| 6625 | { |
| 6626 | histentry_T *p1 = *(histentry_T **)s1; |
| 6627 | histentry_T *p2 = *(histentry_T **)s2; |
| 6628 | |
| 6629 | if (p1->time_set < p2->time_set) return -1; |
| 6630 | if (p1->time_set > p2->time_set) return 1; |
| 6631 | return 0; |
| 6632 | } |
| 6633 | #endif |
| 6634 | |
| 6635 | /* |
| 6636 | * Merge history lines from viminfo and lines typed in this Vim based on the |
| 6637 | * timestamp; |
| 6638 | */ |
| 6639 | static void |
| 6640 | merge_history(int type) |
| 6641 | { |
| 6642 | int max_len; |
| 6643 | histentry_T **tot_hist; |
| 6644 | histentry_T *new_hist; |
| 6645 | int i; |
| 6646 | int len; |
| 6647 | |
| 6648 | /* Make one long list with all entries. */ |
| 6649 | max_len = hislen + viminfo_hisidx[type]; |
| 6650 | tot_hist = (histentry_T **)alloc(max_len * (int)sizeof(histentry_T *)); |
| 6651 | new_hist = (histentry_T *)alloc(hislen * (int)sizeof(histentry_T)); |
| 6652 | if (tot_hist == NULL || new_hist == NULL) |
| 6653 | { |
| 6654 | vim_free(tot_hist); |
| 6655 | vim_free(new_hist); |
| 6656 | return; |
| 6657 | } |
| 6658 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6659 | tot_hist[i] = &viminfo_history[type][i]; |
| 6660 | len = i; |
| 6661 | for (i = 0; i < hislen; i++) |
| 6662 | if (history[type][i].hisstr != NULL) |
| 6663 | tot_hist[len++] = &history[type][i]; |
| 6664 | |
| 6665 | /* Sort the list on timestamp. */ |
| 6666 | qsort((void *)tot_hist, (size_t)len, sizeof(histentry_T *), sort_hist); |
| 6667 | |
| 6668 | /* Keep the newest ones. */ |
| 6669 | for (i = 0; i < hislen; i++) |
| 6670 | { |
| 6671 | if (i < len) |
| 6672 | { |
| 6673 | new_hist[i] = *tot_hist[i]; |
| 6674 | tot_hist[i]->hisstr = NULL; |
| 6675 | if (new_hist[i].hisnum == 0) |
| 6676 | new_hist[i].hisnum = ++hisnum[type]; |
| 6677 | } |
| 6678 | else |
| 6679 | clear_hist_entry(&new_hist[i]); |
| 6680 | } |
Bram Moolenaar | a890f5e | 2016-06-12 23:03:19 +0200 | [diff] [blame] | 6681 | hisidx[type] = (i < len ? i : len) - 1; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6682 | |
| 6683 | /* Free what is not kept. */ |
| 6684 | for (i = 0; i < viminfo_hisidx[type]; i++) |
| 6685 | vim_free(viminfo_history[type][i].hisstr); |
| 6686 | for (i = 0; i < hislen; i++) |
| 6687 | vim_free(history[type][i].hisstr); |
| 6688 | vim_free(history[type]); |
| 6689 | history[type] = new_hist; |
Bram Moolenaar | 62f8b4e | 2016-06-11 15:31:47 +0200 | [diff] [blame] | 6690 | vim_free(tot_hist); |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6691 | } |
| 6692 | |
| 6693 | /* |
| 6694 | * Finish reading history lines from viminfo. Not used when writing viminfo. |
| 6695 | */ |
| 6696 | void |
| 6697 | finish_viminfo_history(vir_T *virp) |
| 6698 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6699 | int type; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6700 | int merge = virp->vir_version >= VIMINFO_VERSION_WITH_HISTORY; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6701 | |
| 6702 | for (type = 0; type < HIST_COUNT; ++type) |
| 6703 | { |
| 6704 | if (history[type] == NULL) |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6705 | continue; |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6706 | |
| 6707 | if (merge) |
| 6708 | merge_history(type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6709 | else |
Bram Moolenaar | 1fd99c1 | 2016-06-09 20:24:28 +0200 | [diff] [blame] | 6710 | concat_history(type); |
| 6711 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6712 | vim_free(viminfo_history[type]); |
| 6713 | viminfo_history[type] = NULL; |
Bram Moolenaar | f687cf3 | 2013-04-24 15:39:11 +0200 | [diff] [blame] | 6714 | viminfo_hisidx[type] = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6715 | } |
| 6716 | } |
| 6717 | |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6718 | /* |
| 6719 | * Write history to viminfo file in "fp". |
| 6720 | * When "merge" is TRUE merge history lines with a previously read viminfo |
| 6721 | * file, data is in viminfo_history[]. |
| 6722 | * When "merge" is FALSE just write all history lines. Used for ":wviminfo!". |
| 6723 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6724 | void |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6725 | write_viminfo_history(FILE *fp, int merge) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6726 | { |
| 6727 | int i; |
| 6728 | int type; |
| 6729 | int num_saved; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6730 | int round; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6731 | |
| 6732 | init_history(); |
| 6733 | if (hislen == 0) |
| 6734 | return; |
| 6735 | for (type = 0; type < HIST_COUNT; ++type) |
| 6736 | { |
| 6737 | num_saved = get_viminfo_parameter(hist_type2char(type, FALSE)); |
| 6738 | if (num_saved == 0) |
| 6739 | continue; |
| 6740 | if (num_saved < 0) /* Use default */ |
| 6741 | num_saved = hislen; |
| 6742 | fprintf(fp, _("\n# %s History (newest to oldest):\n"), |
| 6743 | type == HIST_CMD ? _("Command Line") : |
| 6744 | type == HIST_SEARCH ? _("Search String") : |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6745 | type == HIST_EXPR ? _("Expression") : |
| 6746 | type == HIST_INPUT ? _("Input Line") : |
| 6747 | _("Debug Line")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6748 | if (num_saved > hislen) |
| 6749 | num_saved = hislen; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6750 | |
| 6751 | /* |
| 6752 | * Merge typed and viminfo history: |
| 6753 | * round 1: history of typed commands. |
| 6754 | * round 2: history from recently read viminfo. |
| 6755 | */ |
| 6756 | for (round = 1; round <= 2; ++round) |
| 6757 | { |
Bram Moolenaar | a8565fe | 2013-04-15 16:14:22 +0200 | [diff] [blame] | 6758 | if (round == 1) |
| 6759 | /* start at newest entry, somewhere in the list */ |
| 6760 | i = hisidx[type]; |
| 6761 | else if (viminfo_hisidx[type] > 0) |
| 6762 | /* start at newest entry, first in the list */ |
| 6763 | i = 0; |
| 6764 | else |
| 6765 | /* empty list */ |
| 6766 | i = -1; |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6767 | if (i >= 0) |
| 6768 | while (num_saved > 0 |
| 6769 | && !(round == 2 && i >= viminfo_hisidx[type])) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6770 | { |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6771 | char_u *p; |
| 6772 | time_t timestamp; |
| 6773 | int c = NUL; |
| 6774 | |
| 6775 | if (round == 1) |
| 6776 | { |
| 6777 | p = history[type][i].hisstr; |
| 6778 | timestamp = history[type][i].time_set; |
| 6779 | } |
| 6780 | else |
| 6781 | { |
| 6782 | p = viminfo_history[type] == NULL ? NULL |
| 6783 | : viminfo_history[type][i].hisstr; |
| 6784 | timestamp = viminfo_history[type] == NULL ? 0 |
| 6785 | : viminfo_history[type][i].time_set; |
| 6786 | } |
| 6787 | |
Bram Moolenaar | ff1806f | 2013-06-15 16:31:47 +0200 | [diff] [blame] | 6788 | if (p != NULL && (round == 2 |
| 6789 | || !merge |
| 6790 | || !history[type][i].viminfo)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6791 | { |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6792 | --num_saved; |
| 6793 | fputc(hist_type2char(type, TRUE), fp); |
| 6794 | /* For the search history: put the separator in the |
| 6795 | * second column; use a space if there isn't one. */ |
| 6796 | if (type == HIST_SEARCH) |
| 6797 | { |
| 6798 | c = p[STRLEN(p) + 1]; |
| 6799 | putc(c == NUL ? ' ' : c, fp); |
| 6800 | } |
| 6801 | viminfo_writestring(fp, p); |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6802 | |
| 6803 | { |
| 6804 | char cbuf[NUMBUFLEN]; |
| 6805 | |
| 6806 | /* New style history with a bar line. Format: |
| 6807 | * |{bartype},{histtype},{timestamp},{separator},"text" */ |
| 6808 | if (c == NUL) |
| 6809 | cbuf[0] = NUL; |
| 6810 | else |
| 6811 | sprintf(cbuf, "%d", c); |
| 6812 | fprintf(fp, "|%d,%d,%ld,%s,", BARTYPE_HISTORY, |
| 6813 | type, (long)timestamp, cbuf); |
| 6814 | barline_writestring(fp, p, LSIZE - 20); |
| 6815 | putc('\n', fp); |
| 6816 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6817 | } |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6818 | if (round == 1) |
| 6819 | { |
| 6820 | /* Decrement index, loop around and stop when back at |
| 6821 | * the start. */ |
| 6822 | if (--i < 0) |
| 6823 | i = hislen - 1; |
| 6824 | if (i == hisidx[type]) |
| 6825 | break; |
| 6826 | } |
| 6827 | else |
| 6828 | { |
| 6829 | /* Increment index. Stop at the end in the while. */ |
| 6830 | ++i; |
| 6831 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6832 | } |
Bram Moolenaar | 6f852a5 | 2013-04-14 16:26:15 +0200 | [diff] [blame] | 6833 | } |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6834 | for (i = 0; i < viminfo_hisidx[type]; ++i) |
Bram Moolenaar | f687cf3 | 2013-04-24 15:39:11 +0200 | [diff] [blame] | 6835 | if (viminfo_history[type] != NULL) |
Bram Moolenaar | 45d2eea | 2016-06-06 21:07:52 +0200 | [diff] [blame] | 6836 | vim_free(viminfo_history[type][i].hisstr); |
Bram Moolenaar | 07219f9 | 2013-04-14 23:19:36 +0200 | [diff] [blame] | 6837 | vim_free(viminfo_history[type]); |
| 6838 | viminfo_history[type] = NULL; |
Bram Moolenaar | b70a473 | 2013-04-15 22:22:57 +0200 | [diff] [blame] | 6839 | viminfo_hisidx[type] = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6840 | } |
| 6841 | } |
| 6842 | #endif /* FEAT_VIMINFO */ |
| 6843 | |
| 6844 | #if defined(FEAT_FKMAP) || defined(PROTO) |
| 6845 | /* |
| 6846 | * Write a character at the current cursor+offset position. |
| 6847 | * It is directly written into the command buffer block. |
| 6848 | */ |
| 6849 | void |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6850 | cmd_pchar(int c, int offset) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6851 | { |
| 6852 | if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) |
| 6853 | { |
| 6854 | EMSG(_("E198: cmd_pchar beyond the command length")); |
| 6855 | return; |
| 6856 | } |
| 6857 | ccline.cmdbuff[ccline.cmdpos + offset] = (char_u)c; |
| 6858 | ccline.cmdbuff[ccline.cmdlen] = NUL; |
| 6859 | } |
| 6860 | |
| 6861 | int |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 6862 | cmd_gchar(int offset) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6863 | { |
| 6864 | if (ccline.cmdpos + offset >= ccline.cmdlen || ccline.cmdpos + offset < 0) |
| 6865 | { |
| 6866 | /* EMSG(_("cmd_gchar beyond the command length")); */ |
| 6867 | return NUL; |
| 6868 | } |
| 6869 | return (int)ccline.cmdbuff[ccline.cmdpos + offset]; |
| 6870 | } |
| 6871 | #endif |
| 6872 | |
| 6873 | #if defined(FEAT_CMDWIN) || defined(PROTO) |
| 6874 | /* |
| 6875 | * Open a window on the current command line and history. Allow editing in |
| 6876 | * the window. Returns when the window is closed. |
| 6877 | * Returns: |
| 6878 | * CR if the command is to be executed |
| 6879 | * Ctrl_C if it is to be abandoned |
| 6880 | * K_IGNORE if editing continues |
| 6881 | */ |
| 6882 | static int |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 6883 | open_cmdwin(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6884 | { |
| 6885 | struct cmdline_info save_ccline; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6886 | bufref_T old_curbuf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6887 | win_T *old_curwin = curwin; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6888 | bufref_T bufref; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6889 | win_T *wp; |
| 6890 | int i; |
| 6891 | linenr_T lnum; |
| 6892 | int histtype; |
| 6893 | garray_T winsizes; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6894 | int save_restart_edit = restart_edit; |
| 6895 | int save_State = State; |
| 6896 | int save_exmode = exmode_active; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6897 | #ifdef FEAT_RIGHTLEFT |
| 6898 | int save_cmdmsg_rl = cmdmsg_rl; |
| 6899 | #endif |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 6900 | #ifdef FEAT_FOLDING |
| 6901 | int save_KeyTyped; |
| 6902 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6903 | |
| 6904 | /* Can't do this recursively. Can't do it when typing a password. */ |
| 6905 | if (cmdwin_type != 0 |
| 6906 | # if defined(FEAT_CRYPT) || defined(FEAT_EVAL) |
| 6907 | || cmdline_star > 0 |
| 6908 | # endif |
| 6909 | ) |
| 6910 | { |
| 6911 | beep_flush(); |
| 6912 | return K_IGNORE; |
| 6913 | } |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 6914 | set_bufref(&old_curbuf, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6915 | |
| 6916 | /* Save current window sizes. */ |
| 6917 | win_size_save(&winsizes); |
| 6918 | |
| 6919 | # ifdef FEAT_AUTOCMD |
| 6920 | /* Don't execute autocommands while creating the window. */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6921 | block_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6922 | # endif |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 6923 | /* don't use a new tab page */ |
| 6924 | cmdmod.tab = 0; |
Bram Moolenaar | 3bab939 | 2017-04-07 15:42:25 +0200 | [diff] [blame] | 6925 | cmdmod.noswapfile = 1; |
Bram Moolenaar | df1bdc9 | 2006-02-23 21:32:16 +0000 | [diff] [blame] | 6926 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6927 | /* Create a window for the command-line buffer. */ |
| 6928 | if (win_split((int)p_cwh, WSP_BOT) == FAIL) |
| 6929 | { |
| 6930 | beep_flush(); |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6931 | # ifdef FEAT_AUTOCMD |
| 6932 | unblock_autocmds(); |
| 6933 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6934 | return K_IGNORE; |
| 6935 | } |
Bram Moolenaar | e8bd5ce | 2009-03-02 01:12:48 +0000 | [diff] [blame] | 6936 | cmdwin_type = get_cmdline_type(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6937 | |
| 6938 | /* Create the command-line buffer empty. */ |
Bram Moolenaar | 701f7af | 2008-11-15 13:12:07 +0000 | [diff] [blame] | 6939 | (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 6940 | (void)setfname(curbuf, (char_u *)"[Command Line]", NULL, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6941 | set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6942 | curbuf->b_p_ma = TRUE; |
Bram Moolenaar | 876f6d7 | 2009-04-29 10:05:51 +0000 | [diff] [blame] | 6943 | #ifdef FEAT_FOLDING |
| 6944 | curwin->w_p_fen = FALSE; |
| 6945 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6946 | # ifdef FEAT_RIGHTLEFT |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6947 | curwin->w_p_rl = cmdmsg_rl; |
| 6948 | cmdmsg_rl = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6949 | # endif |
Bram Moolenaar | 3368ea2 | 2010-09-21 16:56:35 +0200 | [diff] [blame] | 6950 | RESET_BINDING(curwin); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6951 | |
| 6952 | # ifdef FEAT_AUTOCMD |
| 6953 | /* Do execute autocommands for setting the filetype (load syntax). */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 6954 | unblock_autocmds(); |
Bram Moolenaar | 1814183 | 2017-06-25 21:17:25 +0200 | [diff] [blame] | 6955 | /* But don't allow switching to another buffer. */ |
| 6956 | ++curbuf_lock; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6957 | # endif |
| 6958 | |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 6959 | /* Showing the prompt may have set need_wait_return, reset it. */ |
| 6960 | need_wait_return = FALSE; |
| 6961 | |
Bram Moolenaar | e8bd5ce | 2009-03-02 01:12:48 +0000 | [diff] [blame] | 6962 | histtype = hist_char2type(cmdwin_type); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6963 | if (histtype == HIST_CMD || histtype == HIST_DEBUG) |
| 6964 | { |
| 6965 | if (p_wc == TAB) |
| 6966 | { |
| 6967 | add_map((char_u *)"<buffer> <Tab> <C-X><C-V>", INSERT); |
| 6968 | add_map((char_u *)"<buffer> <Tab> a<C-X><C-V>", NORMAL); |
| 6969 | } |
| 6970 | set_option_value((char_u *)"ft", 0L, (char_u *)"vim", OPT_LOCAL); |
| 6971 | } |
Bram Moolenaar | 1814183 | 2017-06-25 21:17:25 +0200 | [diff] [blame] | 6972 | # ifdef FEAT_AUTOCMD |
| 6973 | --curbuf_lock; |
| 6974 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6975 | |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 6976 | /* Reset 'textwidth' after setting 'filetype' (the Vim filetype plugin |
| 6977 | * sets 'textwidth' to 78). */ |
| 6978 | curbuf->b_p_tw = 0; |
| 6979 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6980 | /* Fill the buffer with the history. */ |
| 6981 | init_history(); |
| 6982 | if (hislen > 0) |
| 6983 | { |
| 6984 | i = hisidx[histtype]; |
| 6985 | if (i >= 0) |
| 6986 | { |
| 6987 | lnum = 0; |
| 6988 | do |
| 6989 | { |
| 6990 | if (++i == hislen) |
| 6991 | i = 0; |
| 6992 | if (history[histtype][i].hisstr != NULL) |
| 6993 | ml_append(lnum++, history[histtype][i].hisstr, |
| 6994 | (colnr_T)0, FALSE); |
| 6995 | } |
| 6996 | while (i != hisidx[histtype]); |
| 6997 | } |
| 6998 | } |
| 6999 | |
| 7000 | /* Replace the empty last line with the current command-line and put the |
| 7001 | * cursor there. */ |
| 7002 | ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); |
| 7003 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 7004 | curwin->w_cursor.col = ccline.cmdpos; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7005 | changed_line_abv_curs(); |
| 7006 | invalidate_botline(); |
Bram Moolenaar | 600dddc | 2006-03-12 22:05:10 +0000 | [diff] [blame] | 7007 | redraw_later(SOME_VALID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7008 | |
| 7009 | /* Save the command line info, can be used recursively. */ |
Bram Moolenaar | 1d669c2 | 2017-01-11 22:40:19 +0100 | [diff] [blame] | 7010 | save_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7011 | |
| 7012 | /* No Ex mode here! */ |
| 7013 | exmode_active = 0; |
| 7014 | |
| 7015 | State = NORMAL; |
| 7016 | # ifdef FEAT_MOUSE |
| 7017 | setmouse(); |
| 7018 | # endif |
| 7019 | |
| 7020 | # ifdef FEAT_AUTOCMD |
| 7021 | /* Trigger CmdwinEnter autocommands. */ |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 7022 | trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINENTER); |
Bram Moolenaar | 5495cc9 | 2006-08-16 14:23:04 +0000 | [diff] [blame] | 7023 | if (restart_edit != 0) /* autocmd with ":startinsert" */ |
| 7024 | stuffcharReadbuff(K_NOP); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7025 | # endif |
| 7026 | |
| 7027 | i = RedrawingDisabled; |
| 7028 | RedrawingDisabled = 0; |
| 7029 | |
| 7030 | /* |
| 7031 | * Call the main loop until <CR> or CTRL-C is typed. |
| 7032 | */ |
| 7033 | cmdwin_result = 0; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 7034 | main_loop(TRUE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7035 | |
| 7036 | RedrawingDisabled = i; |
| 7037 | |
| 7038 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 7039 | |
| 7040 | # ifdef FEAT_FOLDING |
| 7041 | save_KeyTyped = KeyTyped; |
| 7042 | # endif |
| 7043 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7044 | /* Trigger CmdwinLeave autocommands. */ |
Bram Moolenaar | fafcf0d | 2017-10-19 18:35:51 +0200 | [diff] [blame] | 7045 | trigger_cmd_autocmd(cmdwin_type, EVENT_CMDWINLEAVE); |
Bram Moolenaar | 42f06f9 | 2014-08-17 17:24:07 +0200 | [diff] [blame] | 7046 | |
| 7047 | # ifdef FEAT_FOLDING |
| 7048 | /* Restore KeyTyped in case it is modified by autocommands */ |
| 7049 | KeyTyped = save_KeyTyped; |
| 7050 | # endif |
| 7051 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7052 | # endif |
| 7053 | |
Bram Moolenaar | ccc1822 | 2007-05-10 18:25:20 +0000 | [diff] [blame] | 7054 | /* Restore the command line info. */ |
Bram Moolenaar | 1d669c2 | 2017-01-11 22:40:19 +0100 | [diff] [blame] | 7055 | restore_cmdline(&save_ccline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7056 | cmdwin_type = 0; |
| 7057 | |
| 7058 | exmode_active = save_exmode; |
| 7059 | |
Bram Moolenaar | f982106 | 2008-06-20 16:31:07 +0000 | [diff] [blame] | 7060 | /* 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] | 7061 | * this happens! */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 7062 | if (!win_valid(old_curwin) || !bufref_valid(&old_curbuf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7063 | { |
| 7064 | cmdwin_result = Ctrl_C; |
| 7065 | EMSG(_("E199: Active window or buffer deleted")); |
| 7066 | } |
| 7067 | else |
| 7068 | { |
| 7069 | # if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
| 7070 | /* autocmds may abort script processing */ |
| 7071 | if (aborting() && cmdwin_result != K_IGNORE) |
| 7072 | cmdwin_result = Ctrl_C; |
| 7073 | # endif |
| 7074 | /* Set the new command line from the cmdline buffer. */ |
| 7075 | vim_free(ccline.cmdbuff); |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7076 | if (cmdwin_result == K_XF1 || cmdwin_result == K_XF2) /* :qa[!] typed */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7077 | { |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7078 | char *p = (cmdwin_result == K_XF2) ? "qa" : "qa!"; |
| 7079 | |
| 7080 | if (histtype == HIST_CMD) |
| 7081 | { |
| 7082 | /* Execute the command directly. */ |
| 7083 | ccline.cmdbuff = vim_strsave((char_u *)p); |
| 7084 | cmdwin_result = CAR; |
| 7085 | } |
| 7086 | else |
| 7087 | { |
| 7088 | /* First need to cancel what we were doing. */ |
| 7089 | ccline.cmdbuff = NULL; |
| 7090 | stuffcharReadbuff(':'); |
| 7091 | stuffReadbuff((char_u *)p); |
| 7092 | stuffcharReadbuff(CAR); |
| 7093 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7094 | } |
| 7095 | else if (cmdwin_result == K_XF2) /* :qa typed */ |
| 7096 | { |
| 7097 | ccline.cmdbuff = vim_strsave((char_u *)"qa"); |
| 7098 | cmdwin_result = CAR; |
| 7099 | } |
Bram Moolenaar | 9bd1a7e | 2011-05-19 14:50:54 +0200 | [diff] [blame] | 7100 | else if (cmdwin_result == Ctrl_C) |
| 7101 | { |
| 7102 | /* :q or :close, don't execute any command |
| 7103 | * and don't modify the cmd window. */ |
| 7104 | ccline.cmdbuff = NULL; |
| 7105 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7106 | else |
| 7107 | ccline.cmdbuff = vim_strsave(ml_get_curline()); |
| 7108 | if (ccline.cmdbuff == NULL) |
Bram Moolenaar | 5a15b6a | 2017-07-11 15:11:57 +0200 | [diff] [blame] | 7109 | { |
| 7110 | ccline.cmdbuff = vim_strsave((char_u *)""); |
| 7111 | ccline.cmdlen = 0; |
| 7112 | ccline.cmdbufflen = 1; |
| 7113 | ccline.cmdpos = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7114 | cmdwin_result = Ctrl_C; |
Bram Moolenaar | 5a15b6a | 2017-07-11 15:11:57 +0200 | [diff] [blame] | 7115 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7116 | else |
| 7117 | { |
| 7118 | ccline.cmdlen = (int)STRLEN(ccline.cmdbuff); |
| 7119 | ccline.cmdbufflen = ccline.cmdlen + 1; |
| 7120 | ccline.cmdpos = curwin->w_cursor.col; |
| 7121 | if (ccline.cmdpos > ccline.cmdlen) |
| 7122 | ccline.cmdpos = ccline.cmdlen; |
| 7123 | if (cmdwin_result == K_IGNORE) |
| 7124 | { |
| 7125 | set_cmdspos_cursor(); |
| 7126 | redrawcmd(); |
| 7127 | } |
| 7128 | } |
| 7129 | |
| 7130 | # ifdef FEAT_AUTOCMD |
| 7131 | /* Don't execute autocommands while deleting the window. */ |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 7132 | block_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7133 | # endif |
Bram Moolenaar | fa67fbe | 2015-06-25 18:20:36 +0200 | [diff] [blame] | 7134 | # ifdef FEAT_CONCEAL |
| 7135 | /* Avoid command-line window first character being concealed. */ |
| 7136 | curwin->w_p_cole = 0; |
| 7137 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7138 | wp = curwin; |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 7139 | set_bufref(&bufref, curbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7140 | win_goto(old_curwin); |
| 7141 | win_close(wp, TRUE); |
Bram Moolenaar | 8006d69 | 2010-03-02 17:23:21 +0100 | [diff] [blame] | 7142 | |
| 7143 | /* win_close() may have already wiped the buffer when 'bh' is |
| 7144 | * set to 'wipe' */ |
Bram Moolenaar | 7c0a2f3 | 2016-07-10 22:11:16 +0200 | [diff] [blame] | 7145 | if (bufref_valid(&bufref)) |
| 7146 | close_buffer(NULL, bufref.br_buf, DOBUF_WIPE, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7147 | |
| 7148 | /* Restore window sizes. */ |
| 7149 | win_size_restore(&winsizes); |
| 7150 | |
| 7151 | # ifdef FEAT_AUTOCMD |
Bram Moolenaar | 78ab331 | 2007-09-29 12:16:41 +0000 | [diff] [blame] | 7152 | unblock_autocmds(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7153 | # endif |
| 7154 | } |
| 7155 | |
| 7156 | ga_clear(&winsizes); |
| 7157 | restart_edit = save_restart_edit; |
Bram Moolenaar | 4615234 | 2005-09-07 21:18:43 +0000 | [diff] [blame] | 7158 | # ifdef FEAT_RIGHTLEFT |
| 7159 | cmdmsg_rl = save_cmdmsg_rl; |
| 7160 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7161 | |
| 7162 | State = save_State; |
| 7163 | # ifdef FEAT_MOUSE |
| 7164 | setmouse(); |
| 7165 | # endif |
| 7166 | |
| 7167 | return cmdwin_result; |
| 7168 | } |
| 7169 | #endif /* FEAT_CMDWIN */ |
| 7170 | |
| 7171 | /* |
| 7172 | * Used for commands that either take a simple command string argument, or: |
| 7173 | * cmd << endmarker |
| 7174 | * {script} |
| 7175 | * endmarker |
| 7176 | * Returns a pointer to allocated memory with {script} or NULL. |
| 7177 | */ |
| 7178 | char_u * |
Bram Moolenaar | 78c0b7d | 2016-01-30 15:52:46 +0100 | [diff] [blame] | 7179 | script_get(exarg_T *eap, char_u *cmd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7180 | { |
| 7181 | char_u *theline; |
| 7182 | char *end_pattern = NULL; |
| 7183 | char dot[] = "."; |
| 7184 | garray_T ga; |
| 7185 | |
| 7186 | if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) |
| 7187 | return NULL; |
| 7188 | |
| 7189 | ga_init2(&ga, 1, 0x400); |
| 7190 | |
| 7191 | if (cmd[2] != NUL) |
| 7192 | end_pattern = (char *)skipwhite(cmd + 2); |
| 7193 | else |
| 7194 | end_pattern = dot; |
| 7195 | |
| 7196 | for (;;) |
| 7197 | { |
| 7198 | theline = eap->getline( |
| 7199 | #ifdef FEAT_EVAL |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 7200 | eap->cstack->cs_looplevel > 0 ? -1 : |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7201 | #endif |
| 7202 | NUL, eap->cookie, 0); |
| 7203 | |
| 7204 | if (theline == NULL || STRCMP(end_pattern, theline) == 0) |
Bram Moolenaar | be555e7 | 2008-08-06 12:19:26 +0000 | [diff] [blame] | 7205 | { |
| 7206 | vim_free(theline); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7207 | break; |
Bram Moolenaar | be555e7 | 2008-08-06 12:19:26 +0000 | [diff] [blame] | 7208 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7209 | |
| 7210 | ga_concat(&ga, theline); |
| 7211 | ga_append(&ga, '\n'); |
| 7212 | vim_free(theline); |
| 7213 | } |
Bram Moolenaar | 269ec65 | 2004-07-29 08:43:53 +0000 | [diff] [blame] | 7214 | ga_append(&ga, NUL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7215 | |
| 7216 | return (char_u *)ga.ga_data; |
| 7217 | } |
Bram Moolenaar | 4d6f32c | 2016-08-26 19:13:46 +0200 | [diff] [blame] | 7218 | |
| 7219 | #ifdef FEAT_SEARCH_EXTRA |
| 7220 | static void |
| 7221 | set_search_match(pos_T *t) |
| 7222 | { |
| 7223 | /* |
| 7224 | * First move cursor to end of match, then to the start. This |
| 7225 | * moves the whole match onto the screen when 'nowrap' is set. |
| 7226 | */ |
| 7227 | t->lnum += search_match_lines; |
| 7228 | t->col = search_match_endcol; |
| 7229 | if (t->lnum > curbuf->b_ml.ml_line_count) |
| 7230 | { |
| 7231 | t->lnum = curbuf->b_ml.ml_line_count; |
| 7232 | coladvance((colnr_T)MAXCOL); |
| 7233 | } |
| 7234 | } |
| 7235 | #endif |