backport: 15.0.3
This commit is contained in:
parent
bc2127cfff
commit
d37a95bd6a
3 changed files with 15 additions and 8 deletions
|
@ -17,6 +17,13 @@ Changelog structure reference:
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [15.0.3]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Zig
|
||||||
|
- More autocomplete fixes
|
||||||
|
|
||||||
## [15.0.2]
|
## [15.0.2]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
14
build.sh
14
build.sh
|
@ -26,28 +26,28 @@ if [[ -z "${PRIVATE_KEY_PASSWORD}" ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${MAVEN_DEPLOY_USER}"]]; then
|
if [[ -z "${MAVEN_DEPLOY_USER}" ]]; then
|
||||||
echo "MAVEN_DEPLOY_USER missing!"
|
echo "MAVEN_DEPLOY_USER missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${MAVEN_DEPLOY_PASSWORD}"]]; then
|
if [[ -z "${MAVEN_DEPLOY_PASSWORD}" ]]; then
|
||||||
echo "MAVEN_DEPLOY_USER missing!"
|
echo "MAVEN_DEPLOY_PASSWORD missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${IJ_PUBLISH_TOKEN}"]]; then
|
if [[ -z "${IJ_PUBLISH_TOKEN}" ]]; then
|
||||||
echo "MAVEN_DEPLOY_USER missing!"
|
echo "IJ_PUBLISH_TOKEN missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f secrets/chain.crt ]; then
|
if [ ! -f secrets/chain.crt ]; then
|
||||||
echo "Certificate chain does not exist!"
|
echo "secrets/chain.crt missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f secrets/private.pem ]; then
|
if [ ! -f secrets/private.pem ]; then
|
||||||
echo "Plugin signing key does not exist!"
|
echo "secrets/private.pem missing!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -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