backport: 15.0.3
This commit is contained in:
parent
2118e2a518
commit
8e476b2b2b
3 changed files with 15 additions and 8 deletions
|
@ -17,6 +17,13 @@ Changelog structure reference:
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [15.0.3]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Zig
|
||||
- More autocomplete fixes
|
||||
|
||||
## [15.0.2]
|
||||
|
||||
### Fixed
|
||||
|
|
14
build.sh
14
build.sh
|
@ -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
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue