mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Merge pull request #2369 from tridactyl/fix_2353
Make hundreds of config.get calls disappear with this one weird trick
This commit is contained in:
commit
09845cb726
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ export class ExcmdCompletionSource extends Completions.CompletionSourceFuse {
|
||||||
a.startsWith(exstr),
|
a.startsWith(exstr),
|
||||||
)
|
)
|
||||||
for (const alias of exaliases) {
|
for (const alias of exaliases) {
|
||||||
const cmd = aliases.expandExstr(alias)
|
const cmd = aliases.expandExstr(alias, exaliases)
|
||||||
const fn = excmds.getFunction(cmd)
|
const fn = excmds.getFunction(cmd)
|
||||||
if (fn) {
|
if (fn) {
|
||||||
this.options.push(
|
this.options.push(
|
||||||
|
|
Loading…
Add table
Reference in a new issue