fix: even more autocomplete delimiters
This commit is contained in:
parent
6a7fce8510
commit
5cc95b21f7
2 changed files with 6 additions and 1 deletions
|
@ -17,6 +17,11 @@ Changelog structure reference:
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Zig
|
||||||
|
- More autocomplete fixes
|
||||||
|
|
||||||
## [15.0.2]
|
## [15.0.2]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -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> 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
|
@NotNull
|
||||||
public String getCompletionPrefix(Editor editor, int offset) {
|
public String getCompletionPrefix(Editor editor, int offset) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue