Skip to content

Commit

Permalink
don't try to use js completions
Browse files Browse the repository at this point in the history
  • Loading branch information
henryfauna authored and echo-bravo-yahoo committed Dec 9, 2024
1 parent fabed04 commit 9fdcb13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/shell.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ async function shellCommand(argv) {

/** @type {import('node:repl').ReplOptions} */
const replArgs = {
prompt: `${argv.db_path || ""}> `,
prompt: `${argv.database || ""}> `,
ignoreUndefined: true,
preview: argv.apiVersion !== "10",
// TODO: integrate with fql-analyzer for completions

Check warning on line 27 in src/commands/shell.mjs

View workflow job for this annotation

GitHub Actions / lint

Unexpected 'todo' comment: 'TODO: integrate with fql-analyzer for...'
completer: argv.apiVersion === "10" ? () => [] : undefined,
completer: () => [],
output: container.resolve("stdoutStream"),
input: container.resolve("stdinStream"),
eval: await buildCustomEval(argv),
Expand Down

0 comments on commit 9fdcb13

Please sign in to comment.