Allowin thunks in eventHandlers. more progress on OS palette. adding fuzzy match to storeSearch
This commit is contained in:
parent
f378149146
commit
b8a396a734
6 changed files with 53 additions and 35 deletions
|
|
@ -101,7 +101,7 @@ export class Parser {
|
|||
return true;
|
||||
}
|
||||
|
||||
if (kind !== 'ident') {
|
||||
if (kind !== 'ident' && kind !== 'underscore') {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -109,7 +109,7 @@ export class Parser {
|
|||
while (true) {
|
||||
const token = this.peek(offset);
|
||||
if (token.kind === 'backslash') return true;
|
||||
if (token.kind !== 'ident') return false;
|
||||
if (token.kind !== 'ident' && token.kind !== 'underscore') return false;
|
||||
offset++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue