don't accept @/#/: as part of command, allow to create pill candidate

so if you type these 3 characters, you get the correct autocomplete
This commit is contained in:
Bruno Windels 2019-09-02 11:26:20 +02:00
parent a4376a76f0
commit 00d81eece9

View file

@ -465,10 +465,6 @@ export class CommandPartCreator extends PartCreator {
} }
class CommandPart extends PillCandidatePart { class CommandPart extends PillCandidatePart {
acceptsInsertion(chr, i) {
return PlainPart.prototype.acceptsInsertion.call(this, chr, i);
}
get type() { get type() {
return "command"; return "command";
} }