backport: 15.0.3

This commit is contained in:
FalsePattern 2024-06-03 16:48:33 +02:00
parent 2118e2a518
commit 8e476b2b2b
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
3 changed files with 15 additions and 8 deletions

View file

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

View file

@ -26,28 +26,28 @@ if [[ -z "${PRIVATE_KEY_PASSWORD}" ]]; then
exit 1
fi
if [[ -z "${MAVEN_DEPLOY_USER}"]]; then
if [[ -z "${MAVEN_DEPLOY_USER}" ]]; then
echo "MAVEN_DEPLOY_USER missing!"
exit 1
fi
if [[ -z "${MAVEN_DEPLOY_PASSWORD}"]]; then
echo "MAVEN_DEPLOY_USER missing!"
if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then
echo "MAVEN_DEPLOY_PASSWORD missing!"
exit 1
fi
if [[ -z "${IJ_PUBLISH_TOKEN}"]]; then
echo "MAVEN_DEPLOY_USER missing!"
if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then
echo "IJ_PUBLISH_TOKEN missing!"
exit 1
fi
if [ ! -f secrets/chain.crt ]; then
echo "Certificate chain does not exist!"
echo "secrets/chain.crt missing!"
exit 1
fi
if [ ! -f secrets/private.pem ]; then
echo "Plugin signing key does not exist!"
echo "secrets/private.pem missing!"
exit 1
fi

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) {