diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-06-07 07:48:57 +0100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-06-07 07:48:57 +0100 |
| commit | fd00e1f9ae704d1bb6ca108736a0a0fd685ec046 (patch) | |
| tree | 3d17efa604d43c97cf48ad15d28b59110c4039d1 /src/normal.cc | |
| parent | d214969d5b990d3b69b16440467ddc2eef377e12 (diff) | |
| parent | 2f84051efbc6bb8b49e6e03d2a4c9375317c9238 (diff) | |
Merge remote-tracking branch 'Delapouite/underscore'
Diffstat (limited to 'src/normal.cc')
| -rw-r--r-- | src/normal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.cc b/src/normal.cc index 94767f1b..1cedef8f 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -1146,7 +1146,7 @@ void select_object(Context& context, NormalParams params) pair_it->opening, pair_it->closing, count, flags)); - if (is_punctuation(cp)) + if (is_punctuation(cp) or cp == '_') { auto utf8cp = to_string(cp); return select_and_set_last<mode>( |
