mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
Merge pull request #1347 from glacambre/relieve_1345
commandline_frame.ts: Catch errors in refresh_completions
This commit is contained in:
commit
952a2537b6
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ export function refresh_completions(exstr) {
|
|||
if (!activeCompletions) enableCompletions()
|
||||
return Promise.all(
|
||||
activeCompletions.map(comp => comp.filter(exstr).then(resizeArea)),
|
||||
)
|
||||
).catch(err => console.error(err)) // We can't use the regular logging mechanism because the user is using the command line.
|
||||
}
|
||||
|
||||
/** @hidden **/
|
||||
|
|
Loading…
Add table
Reference in a new issue