summaryrefslogtreecommitdiffstats
path: root/src/proto/search.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-20 16:57:02 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-20 16:57:02 +0200
commit66e29d7112e437b2b50efe1f82c7e892736d23e4 (patch)
treea99f9f43e0fc5b56f13cb1426b1fa78f8319632c /src/proto/search.pro
parentf04507d132fbcb63999167ec006fc6e700b5af4f (diff)
patch 7.4.2230v7.4.2230
Problem: There is no equivalent of 'smartcase' for a tag search. Solution: Add value "followscs" and "smart" to 'tagcase'. (Christian Brabandt, closes #712) Turn tagcase test into new style.
Diffstat (limited to 'src/proto/search.pro')
-rw-r--r--src/proto/search.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/search.pro b/src/proto/search.pro
index 339aa34625..3b9ca5c74a 100644
--- a/src/proto/search.pro
+++ b/src/proto/search.pro
@@ -7,6 +7,7 @@ void save_search_patterns(void);
void restore_search_patterns(void);
void free_search_patterns(void);
int ignorecase(char_u *pat);
+int ignorecase_opt(char_u *pat, int ic_in, int scs);
int pat_has_uppercase(char_u *pat);
char_u *last_csearch(void);
int last_csearch_forward(void);