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:
parent
60e619e45e
commit
529c5ac8d7
@ -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 <= '~'));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user