annotate src/cmdhist.c @ 35681:044c6ba2f540 v9.1.0579

patch 9.1.0579: Ex command is still executed after giving E1247 Commit: https://github.com/vim/vim/commit/d1b5ea984d41102d253ecdd9a76124cd4c58b97d Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Jul 13 19:04:10 2024 +0200 patch 9.1.0579: Ex command is still executed after giving E1247 Problem: Ex command is still executed after giving E1247. Solution: Indicate the error properly and set cmd to NULL. (zeertzjq) closes: #15241 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 17 Jul 2024 08:13:29 +0200
parents 0d12f2f627f9
children e97822daab98
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 * cmdhist.c: Functions for the history of the command-line.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 #include "vim.h"
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 static histentry_T *(history[HIST_COUNT]) = {NULL, NULL, NULL, NULL, NULL};
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 static int hisidx[HIST_COUNT] = {-1, -1, -1, -1, -1}; // lastused entry
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 static int hisnum[HIST_COUNT] = {0, 0, 0, 0, 0};
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 // identifying (unique) number of newest history entry
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 static int hislen = 0; // actual length of history tables
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 * Return the length of the history tables
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 get_hislen(void)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 return hislen;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 * Return a pointer to a specified history table
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 histentry_T *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 get_histentry(int hist_type)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 return history[hist_type];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
40 #if defined(FEAT_VIMINFO) || defined(PROTO)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 set_histentry(int hist_type, histentry_T *entry)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 history[hist_type] = entry;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
46 #endif
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 int *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 get_hisidx(int hist_type)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51 return &hisidx[hist_type];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
54 #if defined(FEAT_VIMINFO) || defined(PROTO)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 int *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
56 get_hisnum(int hist_type)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
57 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
58 return &hisnum[hist_type];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
59 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
60 #endif
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
61
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
62 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
63 * Translate a history character to the associated type number.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
64 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
65 int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
66 hist_char2type(int c)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
67 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
68 if (c == ':')
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
69 return HIST_CMD;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
70 if (c == '=')
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
71 return HIST_EXPR;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
72 if (c == '@')
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
73 return HIST_INPUT;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
74 if (c == '>')
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
75 return HIST_DEBUG;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
76 return HIST_SEARCH; // must be '?' or '/'
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
77 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
78
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
79 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
80 * Table of history names.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
81 * These names are used in :history and various hist...() functions.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
82 * It is sufficient to give the significant prefix of a history name.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
83 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
84
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
85 static char *(history_names[]) =
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
86 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
87 "cmd",
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
88 "search",
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
89 "expr",
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
90 "input",
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
91 "debug",
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
92 NULL
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
93 };
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
94
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
95 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
96 * Function given to ExpandGeneric() to obtain the possible first
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
97 * arguments of the ":history command.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
98 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
99 char_u *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
100 get_history_arg(expand_T *xp UNUSED, int idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
101 {
29892
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
102 char *short_names = ":=@>?/";
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
103 int short_names_count = (int)STRLEN(short_names);
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
104 int history_name_count = ARRAY_LENGTH(history_names) - 1;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
105
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
106 if (idx < short_names_count)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
107 {
29892
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
108 xp->xp_buf[0] = (char_u)short_names[idx];
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
109 xp->xp_buf[1] = NUL;
db0939444c96 patch 9.0.0284: using static buffer for multiple completion functions
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
110 return xp->xp_buf;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
111 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
112 if (idx < short_names_count + history_name_count)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
113 return (char_u *)history_names[idx - short_names_count];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
114 if (idx == short_names_count + history_name_count)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
115 return (char_u *)"all";
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
116 return NULL;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
117 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
118
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
119 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
120 * init_history() - Initialize the command line history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
121 * Also used to re-allocate the history when the size changes.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
122 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
123 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
124 init_history(void)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
125 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
126 int newlen; // new length of history table
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
127 histentry_T *temp;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
128 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
129 int j;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
130 int type;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
131
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
132 // If size of history table changed, reallocate it
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
133 newlen = (int)p_hi;
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
134 if (newlen == hislen) // history length didn't change
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
135 return;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
136
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
137 // history length changed
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
138 for (type = 0; type < HIST_COUNT; ++type) // adjust the tables
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
139 {
31087
a220f176350a patch 9.0.0878: Coverity warns for dead code
Bram Moolenaar <Bram@vim.org>
parents: 31075
diff changeset
140 if (newlen > 0)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
141 {
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
142 temp = ALLOC_MULT(histentry_T, newlen);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
143 if (temp == NULL) // out of memory!
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
144 {
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
145 if (type == 0) // first one: just keep the old length
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
146 {
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
147 newlen = hislen;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
148 break;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
149 }
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
150 // Already changed one table, now we can only have zero
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
151 // length for all tables.
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
152 newlen = 0;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
153 type = -1;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
154 continue;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
155 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
156 }
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
157 else
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
158 temp = NULL;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
159
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
160 if (hisidx[type] < 0) // there are no entries yet
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
161 {
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
162 for (i = 0; i < newlen; ++i)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
163 clear_hist_entry(&temp[i]);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
164 }
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
165 else if (newlen > hislen) // array becomes bigger
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
166 {
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
167 for (i = 0; i <= hisidx[type]; ++i)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
168 temp[i] = history[type][i];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
169 j = i;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
170 for ( ; i <= newlen - (hislen - hisidx[type]); ++i)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
171 clear_hist_entry(&temp[i]);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
172 for ( ; j < hislen; ++i, ++j)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
173 temp[i] = history[type][j];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
174 }
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
175 else // array becomes smaller or 0
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
176 {
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
177 j = hisidx[type];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
178 for (i = newlen - 1; ; --i)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
179 {
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
180 if (i >= 0) // copy newest entries
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
181 temp[i] = history[type][j];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
182 else // remove older entries
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
183 vim_free(history[type][j].hisstr);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
184 if (--j < 0)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
185 j = hislen - 1;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
186 if (j == hisidx[type])
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
187 break;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
188 }
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
189 hisidx[type] = newlen - 1;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
190 }
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
191 vim_free(history[type]);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
192 history[type] = temp;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
193 }
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
194 hislen = newlen;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
195 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
196
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
197 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
198 clear_hist_entry(histentry_T *hisptr)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
199 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
200 hisptr->hisnum = 0;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
201 hisptr->viminfo = FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
202 hisptr->hisstr = NULL;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
203 hisptr->time_set = 0;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
204 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
205
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
206 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
207 * Check if command line 'str' is already in history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
208 * If 'move_to_front' is TRUE, matching entry is moved to end of history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
209 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
210 int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
211 in_history(
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
212 int type,
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
213 char_u *str,
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
214 int move_to_front, // Move the entry to the front if it exists
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
215 int sep,
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
216 int writing) // ignore entries read from viminfo
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
217 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
218 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
219 int last_i = -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
220 char_u *p;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
221
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
222 if (hisidx[type] < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
223 return FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
224 i = hisidx[type];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
225 do
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
226 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
227 if (history[type][i].hisstr == NULL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
228 return FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
229
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
230 // For search history, check that the separator character matches as
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
231 // well.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
232 p = history[type][i].hisstr;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
233 if (STRCMP(str, p) == 0
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
234 && !(writing && history[type][i].viminfo)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
235 && (type != HIST_SEARCH || sep == p[STRLEN(p) + 1]))
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
236 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
237 if (!move_to_front)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
238 return TRUE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
239 last_i = i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
240 break;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
241 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
242 if (--i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
243 i = hislen - 1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
244 } while (i != hisidx[type]);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
245
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
246 if (last_i < 0)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
247 return FALSE;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
248
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
249 str = history[type][i].hisstr;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
250 while (i != hisidx[type])
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
251 {
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
252 if (++i >= hislen)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
253 i = 0;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
254 history[type][last_i] = history[type][i];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
255 last_i = i;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
256 }
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
257 history[type][i].hisnum = ++hisnum[type];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
258 history[type][i].viminfo = FALSE;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
259 history[type][i].hisstr = str;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
260 history[type][i].time_set = vim_time();
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
261 return TRUE;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
262 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
263
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
264 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
265 * Convert history name (from table above) to its HIST_ equivalent.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
266 * When "name" is empty, return "cmd" history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
267 * Returns -1 for unknown history name.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
268 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
269 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
270 get_histtype(char_u *name)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
271 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
272 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
273 int len = (int)STRLEN(name);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
274
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
275 // No argument: use current history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
276 if (len == 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
277 return hist_char2type(get_cmdline_firstc());
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
278
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
279 for (i = 0; history_names[i] != NULL; ++i)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
280 if (STRNICMP(name, history_names[i], len) == 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
281 return i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
282
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
283 if (vim_strchr((char_u *)":=@>?/", name[0]) != NULL && name[1] == NUL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
284 return hist_char2type(name[0]);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
285
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
286 return -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
287 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
288
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
289 static int last_maptick = -1; // last seen maptick
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
290
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
291 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
292 * Add the given string to the given history. If the string is already in the
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
293 * history then it is moved to the front. "histype" may be one of he HIST_
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
294 * values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
295 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
296 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
297 add_to_history(
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
298 int histype,
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
299 char_u *new_entry,
35227
ffeda71f42d7 patch 9.1.0426: too many strlen() calls in search.c
Christian Brabandt <cb@256bit.org>
parents: 34074
diff changeset
300 size_t new_entrylen,
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
301 int in_map, // consider maptick when inside a mapping
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
302 int sep) // separator character used (search hist)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
303 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
304 histentry_T *hisptr;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
305
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
306 if (hislen == 0) // no history
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
307 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
308
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 21461
diff changeset
309 if ((cmdmod.cmod_flags & CMOD_KEEPPATTERNS) && histype == HIST_SEARCH)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
310 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
311
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
312 // Searches inside the same mapping overwrite each other, so that only
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
313 // the last line is kept. Be careful not to remove a line that was moved
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
314 // down, only lines that were added.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
315 if (histype == HIST_SEARCH && in_map)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
316 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
317 if (maptick == last_maptick && hisidx[HIST_SEARCH] >= 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
318 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
319 // Current line is from the same mapping, remove it
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
320 hisptr = &history[HIST_SEARCH][hisidx[HIST_SEARCH]];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
321 vim_free(hisptr->hisstr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
322 clear_hist_entry(hisptr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
323 --hisnum[histype];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
324 if (--hisidx[HIST_SEARCH] < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
325 hisidx[HIST_SEARCH] = hislen - 1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
326 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
327 last_maptick = -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
328 }
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
329
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
330 if (in_history(histype, new_entry, TRUE, sep, FALSE))
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
331 return;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
332
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
333 if (++hisidx[histype] == hislen)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
334 hisidx[histype] = 0;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
335 hisptr = &history[histype][hisidx[histype]];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
336 vim_free(hisptr->hisstr);
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
337
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
338 // Store the separator after the NUL of the string.
35227
ffeda71f42d7 patch 9.1.0426: too many strlen() calls in search.c
Christian Brabandt <cb@256bit.org>
parents: 34074
diff changeset
339 hisptr->hisstr = vim_strnsave(new_entry, new_entrylen + 2);
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
340 if (hisptr->hisstr != NULL)
35227
ffeda71f42d7 patch 9.1.0426: too many strlen() calls in search.c
Christian Brabandt <cb@256bit.org>
parents: 34074
diff changeset
341 hisptr->hisstr[new_entrylen + 1] = sep;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
342
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
343 hisptr->hisnum = ++hisnum[histype];
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
344 hisptr->viminfo = FALSE;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
345 hisptr->time_set = vim_time();
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
346 if (histype == HIST_SEARCH && in_map)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
347 last_maptick = maptick;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
348 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
349
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
350 #if defined(FEAT_EVAL) || defined(PROTO)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
351
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
352 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
353 * Get identifier of newest history entry.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
354 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
355 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
356 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
357 get_history_idx(int histype)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
358 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
359 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
360 || hisidx[histype] < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
361 return -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
362
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
363 return history[histype][hisidx[histype]].hisnum;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
364 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
365
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
366 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
367 * Calculate history index from a number:
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
368 * num > 0: seen as identifying number of a history entry
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
369 * num < 0: relative position in history wrt newest entry
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
370 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
371 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
372 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
373 calc_hist_idx(int histype, int num)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
374 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
375 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
376 histentry_T *hist;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
377 int wrapped = FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
378
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
379 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
380 || (i = hisidx[histype]) < 0 || num == 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
381 return -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
382
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
383 hist = history[histype];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
384 if (num > 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
385 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
386 while (hist[i].hisnum > num)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
387 if (--i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
388 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
389 if (wrapped)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
390 break;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
391 i += hislen;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
392 wrapped = TRUE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
393 }
19517
738a4fe2c8c5 patch 8.2.0316: ex_getln.c code has insufficient test coverage
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
394 if (i >= 0 && hist[i].hisnum == num && hist[i].hisstr != NULL)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
395 return i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
396 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
397 else if (-num <= hislen)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
398 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
399 i += num + 1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
400 if (i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
401 i += hislen;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
402 if (hist[i].hisstr != NULL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
403 return i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
404 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
405 return -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
406 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
407
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
408 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
409 * Get a history entry by its index.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
410 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
411 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
412 static char_u *
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
413 get_history_entry(int histype, int idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
414 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
415 idx = calc_hist_idx(histype, idx);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
416 if (idx >= 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
417 return history[histype][idx].hisstr;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
418 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
419 return (char_u *)"";
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
420 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
421
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
422 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
423 * Clear all entries of a history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
424 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
425 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
426 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
427 clr_history(int histype)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
428 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
429 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
430 histentry_T *hisptr;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
431
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
432 if (hislen != 0 && histype >= 0 && histype < HIST_COUNT)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
433 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
434 hisptr = history[histype];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
435 for (i = hislen; i--;)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
436 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
437 vim_free(hisptr->hisstr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
438 clear_hist_entry(hisptr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
439 hisptr++;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
440 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
441 hisidx[histype] = -1; // mark history as cleared
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
442 hisnum[histype] = 0; // reset identifier counter
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
443 return OK;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
444 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
445 return FAIL;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
446 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
447
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
448 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
449 * Remove all entries matching {str} from a history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
450 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
451 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
452 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
453 del_history_entry(int histype, char_u *str)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
454 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
455 regmatch_T regmatch;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
456 histentry_T *hisptr;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
457 int idx;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
458 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
459 int last;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
460 int found = FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
461
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
462 if (hislen == 0 || histype < 0 || histype >= HIST_COUNT || *str == NUL
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
463 || hisidx[histype] < 0)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
464 return FALSE;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
465
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
466 idx = hisidx[histype];
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
467 regmatch.regprog = vim_regcomp(str, RE_MAGIC + RE_STRING);
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
468 if (regmatch.regprog == NULL)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
469 return FALSE;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
470
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
471 regmatch.rm_ic = FALSE; // always match case
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
472
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
473 i = last = idx;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
474 do
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
475 {
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
476 hisptr = &history[histype][i];
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
477 if (hisptr->hisstr == NULL)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
478 break;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
479 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0))
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
480 {
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
481 found = TRUE;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
482 vim_free(hisptr->hisstr);
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
483 clear_hist_entry(hisptr);
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
484 }
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
485 else
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
486 {
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
487 if (i != last)
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
488 {
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
489 history[histype][last] = *hisptr;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
490 clear_hist_entry(hisptr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
491 }
31531
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
492 if (--last < 0)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
493 last += hislen;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
494 }
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
495 if (--i < 0)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
496 i += hislen;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
497 } while (i != idx);
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
498
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
499 if (history[histype][idx].hisstr == NULL)
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
500 hisidx[histype] = -1;
6e24001000ed patch 9.0.1098: code uses too much indent
Bram Moolenaar <Bram@vim.org>
parents: 31087
diff changeset
501
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
502 vim_regfree(regmatch.regprog);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
503 return found;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
504 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
505
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
506 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
507 * Remove an indexed entry from a history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
508 * "histype" may be one of the HIST_ values.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
509 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
510 static int
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
511 del_history_idx(int histype, int idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
512 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
513 int i, j;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
514
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
515 i = calc_hist_idx(histype, idx);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
516 if (i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
517 return FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
518 idx = hisidx[histype];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
519 vim_free(history[histype][i].hisstr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
520
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
521 // When deleting the last added search string in a mapping, reset
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
522 // last_maptick, so that the last added search string isn't deleted again.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
523 if (histype == HIST_SEARCH && maptick == last_maptick && i == idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
524 last_maptick = -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
525
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
526 while (i != idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
527 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
528 j = (i + 1) % hislen;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
529 history[histype][i] = history[histype][j];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
530 i = j;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
531 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
532 clear_hist_entry(&history[histype][i]);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
533 if (--i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
534 i += hislen;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
535 hisidx[histype] = i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
536 return TRUE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
537 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
538
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
539 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
540 * "histadd()" function
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
541 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
542 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
543 f_histadd(typval_T *argvars UNUSED, typval_T *rettv)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
544 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
545 int histype;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
546 char_u *str;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
547 char_u buf[NUMBUFLEN];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
548
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
549 rettv->vval.v_number = FALSE;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
550 if (check_secure())
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
551 return;
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
552
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
553 if (in_vim9script()
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
554 && (check_for_string_arg(argvars, 0) == FAIL
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
555 || check_for_string_arg(argvars, 1) == FAIL))
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
556 return;
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
557
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
558 str = tv_get_string_chk(&argvars[0]); // NULL on type error
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
559 histype = str != NULL ? get_histtype(str) : -1;
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
560 if (histype < 0)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
561 return;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
562
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
563 str = tv_get_string_buf(&argvars[1], buf);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
564 if (*str == NUL)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
565 return;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
566
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
567 init_history();
35227
ffeda71f42d7 patch 9.1.0426: too many strlen() calls in search.c
Christian Brabandt <cb@256bit.org>
parents: 34074
diff changeset
568 add_to_history(histype, str, STRLEN(str), FALSE, NUL);
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
569 rettv->vval.v_number = TRUE;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
570 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
571
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
572 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
573 * "histdel()" function
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
574 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
575 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
576 f_histdel(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
577 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
578 int n;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
579 char_u buf[NUMBUFLEN];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
580 char_u *str;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
581
25338
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25302
diff changeset
582 if (in_vim9script()
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25302
diff changeset
583 && (check_for_string_arg(argvars, 0) == FAIL
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25302
diff changeset
584 || check_for_opt_string_or_number_arg(argvars, 1) == FAIL))
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25302
diff changeset
585 return;
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25302
diff changeset
586
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
587 str = tv_get_string_chk(&argvars[0]); // NULL on type error
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
588 if (str == NULL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
589 n = 0;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
590 else if (argvars[1].v_type == VAR_UNKNOWN)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
591 // only one argument: clear entire history
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
592 n = clr_history(get_histtype(str));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
593 else if (argvars[1].v_type == VAR_NUMBER)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
594 // index given: remove that entry
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
595 n = del_history_idx(get_histtype(str),
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
596 (int)tv_get_number(&argvars[1]));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
597 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
598 // string given: remove all matching entries
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
599 n = del_history_entry(get_histtype(str),
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
600 tv_get_string_buf(&argvars[1], buf));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
601 rettv->vval.v_number = n;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
602 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
603
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
604 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
605 * "histget()" function
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
606 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
607 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
608 f_histget(typval_T *argvars UNUSED, typval_T *rettv)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
609 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
610 int type;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
611 int idx;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
612 char_u *str;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
613
25252
acda780ffc3e patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
614 if (in_vim9script()
acda780ffc3e patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
615 && (check_for_string_arg(argvars, 0) == FAIL
25302
4d3c68196d05 patch 8.2.3188: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25252
diff changeset
616 || check_for_opt_number_arg(argvars, 1) == FAIL))
25252
acda780ffc3e patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
617 return;
acda780ffc3e patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
618
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
619 str = tv_get_string_chk(&argvars[0]); // NULL on type error
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
620 if (str == NULL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
621 rettv->vval.v_string = NULL;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
622 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
623 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
624 type = get_histtype(str);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
625 if (argvars[1].v_type == VAR_UNKNOWN)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
626 idx = get_history_idx(type);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
627 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
628 idx = (int)tv_get_number_chk(&argvars[1], NULL);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
629 // -1 on type error
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
630 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
631 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
632 rettv->v_type = VAR_STRING;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
633 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
634
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
635 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
636 * "histnr()" function
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
637 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
638 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
639 f_histnr(typval_T *argvars UNUSED, typval_T *rettv)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
640 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
641 int i;
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
642 char_u *histname;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
643
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
644 if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
645 return;
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
646
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
647 histname = tv_get_string_chk(&argvars[0]);
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
648 i = histname == NULL ? HIST_CMD - 1 : get_histtype(histname);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
649 if (i >= HIST_CMD && i < HIST_COUNT)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
650 i = get_history_idx(i);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
651 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
652 i = -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
653 rettv->vval.v_number = i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
654 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
655 #endif // FEAT_EVAL
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
656
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
657 #if defined(FEAT_CRYPT) || defined(PROTO)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
658 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
659 * Very specific function to remove the value in ":set key=val" from the
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
660 * history.
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
661 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
662 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
663 remove_key_from_history(void)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
664 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
665 char_u *p;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
666 int i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
667
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
668 i = hisidx[HIST_CMD];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
669 if (i < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
670 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
671 p = history[HIST_CMD][i].hisstr;
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
672 if (p == NULL)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
673 return;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
674
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
675 for ( ; *p; ++p)
34074
1629cc65d78d patch 9.1.0006: is*() and to*() function may be unsafe
Christian Brabandt <cb@256bit.org>
parents: 33660
diff changeset
676 if (STRNCMP(p, "key", 3) == 0 && !SAFE_isalpha(p[3]))
31075
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
677 {
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
678 p = vim_strchr(p + 3, '=');
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
679 if (p == NULL)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
680 break;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
681 ++p;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
682 for (i = 0; p[i] && !VIM_ISWHITE(p[i]); ++i)
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
683 if (p[i] == '\\' && p[i + 1])
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
684 ++i;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
685 STRMOVE(p, p + i);
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
686 --p;
9fe10dc9aeec patch 9.0.0872: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 29892
diff changeset
687 }
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
688 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
689 #endif
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
690
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
691 /*
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
692 * :history command - print a history
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
693 */
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
694 void
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
695 ex_history(exarg_T *eap)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
696 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
697 histentry_T *hist;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
698 int histype1 = HIST_CMD;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
699 int histype2 = HIST_CMD;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
700 int hisidx1 = 1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
701 int hisidx2 = -1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
702 int idx;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
703 int i, j, k;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
704 char_u *end;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
705 char_u *arg = eap->arg;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
706
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
707 if (hislen == 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
708 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
709 msg(_("'history' option is zero"));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
710 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
711 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
712
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
713 if (!(VIM_ISDIGIT(*arg) || *arg == '-' || *arg == ','))
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
714 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
715 end = arg;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
716 while (ASCII_ISALPHA(*end)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
717 || vim_strchr((char_u *)":=@>/?", *end) != NULL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
718 end++;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
719 i = *end;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
720 *end = NUL;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
721 histype1 = get_histtype(arg);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
722 if (histype1 == -1)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
723 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
724 if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
725 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
726 histype1 = 0;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
727 histype2 = HIST_COUNT-1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
728 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
729 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
730 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
731 *end = i;
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25384
diff changeset
732 semsg(_(e_trailing_characters_str), arg);
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
733 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
734 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
735 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
736 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
737 histype2 = histype1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
738 *end = i;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
739 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
740 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
741 end = arg;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
742 if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
743 {
33660
ca0229869b38 patch 9.0.2068: [security] overflow in :history
Christian Brabandt <cb@256bit.org>
parents: 31531
diff changeset
744 if (*end != NUL)
ca0229869b38 patch 9.0.2068: [security] overflow in :history
Christian Brabandt <cb@256bit.org>
parents: 31531
diff changeset
745 semsg(_(e_trailing_characters_str), end);
ca0229869b38 patch 9.0.2068: [security] overflow in :history
Christian Brabandt <cb@256bit.org>
parents: 31531
diff changeset
746 else
ca0229869b38 patch 9.0.2068: [security] overflow in :history
Christian Brabandt <cb@256bit.org>
parents: 31531
diff changeset
747 semsg(_(e_val_too_large), arg);
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
748 return;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
749 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
750
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
751 for (; !got_int && histype1 <= histype2; ++histype1)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
752 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
753 STRCPY(IObuff, "\n # ");
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
754 STRCAT(STRCAT(IObuff, history_names[histype1]), " history");
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
755 msg_puts_title((char *)IObuff);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
756 idx = hisidx[histype1];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
757 hist = history[histype1];
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
758 j = hisidx1;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
759 k = hisidx2;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
760 if (j < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
761 j = (-j > hislen) ? 0 : hist[(hislen+j+idx+1) % hislen].hisnum;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
762 if (k < 0)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
763 k = (-k > hislen) ? 0 : hist[(hislen+k+idx+1) % hislen].hisnum;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
764 if (idx >= 0 && j <= k)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
765 for (i = idx + 1; !got_int; ++i)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
766 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
767 if (i == hislen)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
768 i = 0;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
769 if (hist[i].hisstr != NULL
35260
0d12f2f627f9 patch 9.1.0439: Cannot filter the history
Christian Brabandt <cb@256bit.org>
parents: 35227
diff changeset
770 && hist[i].hisnum >= j && hist[i].hisnum <= k
0d12f2f627f9 patch 9.1.0439: Cannot filter the history
Christian Brabandt <cb@256bit.org>
parents: 35227
diff changeset
771 && !message_filtered(hist[i].hisstr))
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
772 {
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
773 msg_putchar('\n');
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
774 sprintf((char *)IObuff, "%c%6d ", i == idx ? '>' : ' ',
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
775 hist[i].hisnum);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
776 if (vim_strsize(hist[i].hisstr) > (int)Columns - 10)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
777 trunc_string(hist[i].hisstr, IObuff + STRLEN(IObuff),
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
778 (int)Columns - 10, IOSIZE - (int)STRLEN(IObuff));
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
779 else
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
780 STRCAT(IObuff, hist[i].hisstr);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
781 msg_outtrans(IObuff);
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
782 out_flush();
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
783 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
784 if (i == idx)
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
785 break;
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
786 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
787 }
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
788 }