fix: even more autocomplete delimiters

This commit is contained in:
FalsePattern 2024-06-03 18:48:55 +02:00
parent 6a7fce8510
commit 5cc95b21f7
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
2 changed files with 6 additions and 1 deletions

View file

@ -17,6 +17,11 @@ Changelog structure reference:
## [Unreleased]
### Fixed
- Zig
- More autocomplete fixes
## [15.0.2]
### Fixed

View file

@ -801,7 +801,7 @@ public class EditorEventManager {
}
private static final List<String> WHITESPACE_DELIMITERS = Arrays.asList(" \t\n\r".split(""));
private static final List<String> SYMBOL_DELIMITERS = Arrays.asList("()[]{};,".split(""));
private static final List<String> SYMBOL_DELIMITERS = Arrays.asList("()[]{};,&=*%|^:?><+-/~'\"!".split(""));
@NotNull
public String getCompletionPrefix(Editor editor, int offset) {