Argument text object no longer handles <>

This commit is contained in:
Viktor Palmkvist 2015-08-25 15:56:49 +02:00
parent c7aca37633
commit 1bdaf0675d

View File

@ -435,8 +435,8 @@ Selection select_argument(const Buffer& buffer, const Selection& selection,
auto classify = [](Codepoint c) {
switch (c)
{
case '(': case '[': case '{': case '<': return Opening;
case ')': case ']': case '}': case '>': return Closing;
case '(': case '[': case '{': return Opening;
case ')': case ']': case '}': return Closing;
case ',': case ';': return Delimiter;
default: return None;
}