Rename FooCompleter js files to match FooCommandProvider file names

This commit is contained in:
Sam Atkins
2024-04-24 11:19:25 +01:00
parent c9e8207e4b
commit 670673ab8d
4 changed files with 3 additions and 3 deletions
@@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Context } from '../../context/context.js';
import { CommandCompleter } from '../../puter-shell/completers/command_completer.js';
import { FileCompleter } from '../../puter-shell/completers/file_completer.js';
import { OptionCompleter } from '../../puter-shell/completers/option_completer.js';
import { CommandCompleter } from '../../puter-shell/completers/CommandCompleter.js';
import { FileCompleter } from '../../puter-shell/completers/FileCompleter.js';
import { OptionCompleter } from '../../puter-shell/completers/OptionCompleter.js';
import { Uint8List } from '../../util/bytes.js';
import { StatefulProcessorBuilder } from '../../util/statemachine.js';
import { ANSIContext } from '../ANSIContext.js';