summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.cc b/src/normal.cc
index 1ce53158..69fc9285 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -998,7 +998,7 @@ void use_selection_as_search_pattern(Context& context, NormalParams params)
smart and is_bow(buffer, beg) ? "\\b" : "",
escape(buffer.string(beg, end), "^$\\.*+?()[]{}|", '\\'),
smart and is_eow(buffer, end) ? "\\b" : "");
- }) | gather<HashSet>();
+ }) | gather<HashSet<String>>();
String pattern = join(patterns, '|', false);
const char reg = to_lower(params.reg ? params.reg : '/');