summaryrefslogtreecommitdiff
path: root/src/highlighters.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-05-17 19:35:54 +0100
committerMaxime Coste <mawww@kakoune.org>2017-05-17 19:40:52 +0100
commitdfaafcd49a34f55bc832da96ab365e1c4bb3350a (patch)
treeb086525a5edb2749027e64cb3e7abac78642d63e /src/highlighters.hh
parent44d2db2706da29fa9aad2e0a882bb850d7c8168b (diff)
Rename range-faces to range-specs
range-faces are now used to replace-range highlighters, where the string part is not interpretted as a face but as a display line, so the name was not relevant anymore.
Diffstat (limited to 'src/highlighters.hh')
-rw-r--r--src/highlighters.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/highlighters.hh b/src/highlighters.hh
index 6435efdc..2ea3390d 100644
--- a/src/highlighters.hh
+++ b/src/highlighters.hh
@@ -19,7 +19,7 @@ String option_to_string(InclusiveBufferRange range);
void option_from_string(StringView str, InclusiveBufferRange& opt);
using LineAndFlag = std::tuple<LineCount, String>;
-using RangeAndFace = std::tuple<InclusiveBufferRange, String>;
+using RangeAndString = std::tuple<InclusiveBufferRange, String>;
}