Rewrote the word split in a simple imperative way, a regex solution wouldn't have been simple and neither was the current option.
Changes behavior by splitting the string by actual whitespace boundaries and not by regex's definition of word which was lacking, in practice this means:
pros:
-
@lain@lain.c
is now considered a single word so autocomplete works for instance too (helps when someone has lots and lots of alts - fixes #930 (closed)
cons:
- if you write
@lain,
then move cursor before the comma, it won't open autocomplete for@lain
if you don't add a space. (while logically,
shouldn't be considered a part of the word, other similar characters like.
or-
should not be taken out, so I kept it simple)
Merge request reports
Activity
added 4 commits
-
0347d79b...39f85871 - 2 commits from branch
develop
- c01a3720 - Merge branch 'develop' into fix/autocomplete-fixes
- 4da248f8 - update changelog for autocomplete fixes
-
0347d79b...39f85871 - 2 commits from branch
added 4 commits
-
4da248f8...acc45b49 - 3 commits from branch
develop
- 5b7decea - Merge branch 'develop' into 'fix/autocomplete-fixes'
-
4da248f8...acc45b49 - 3 commits from branch
mentioned in commit 4adccf22
Please register or sign in to reply