1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-07-31 03:59:07 +02:00

Fix isPuncf method

This commit is contained in:
Alex Plate 2019-12-06 18:11:42 +03:00
parent 60e619e45e
commit 529c5ac8d7
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -147,7 +147,7 @@ public final class CharacterClasses {
public static boolean isPunct(char ch) {
return ((ch >= '!' && ch <= '/') ||
(ch >= ':' && ch <= '@') ||
(ch >= '[' && ch <= '\'') ||
(ch >= '[' && ch <= '`') ||
(ch >= '{' && ch <= '~'));
}