1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

CLI Client-side Autocomplete

Executes silently various commands on CLI open. Parses the output
and build autocomplete cache. Autcomplete hints are displayed in
popup lists.
This commit is contained in:
Cleric-K 2019-03-24 01:21:52 +02:00
parent d912de75f1
commit f96fc0eec3
11 changed files with 627 additions and 11 deletions

View file

@ -19,6 +19,8 @@ describe('TABS.cli', () => {
cliTab.append($('<div>').addClass('window').append(cliOutput));
cliTab.append(cliPrompt);
CliAutoComplete.setEnabled(false); // not testing the client-side autocomplete
before(() => {
$('body')
.append(cliTab);