Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daretodave committed May 27, 2024
1 parent cecadb5 commit 2b95657
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/framework/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isAbsolute, join, parse } from 'path'
import { Runtime } from './runtime'
import { HistoricalExecution } from './history'
import { SystemCommand, systemCommands } from './runtime-executor'
import { Commands } from "./commands";
import { Commands } from './commands'

export interface PathParts {
path: string
Expand Down Expand Up @@ -292,8 +292,8 @@ export class Autocomplete {
(o) => o.command.startsWith(prompt) || o.alias?.find((o) => o.startsWith(prompt))
)

const userCommandMatches = Object.keys(this.workspace.commands.lib).filter((o) =>
o.startsWith(prompt) || o.startsWith(Commands.toCommandName(prompt))
const userCommandMatches = Object.keys(this.workspace.commands.lib).filter(
(o) => o.startsWith(prompt) || o.startsWith(Commands.toCommandName(prompt))
)

const programMatches = this.programList.filter(
Expand Down

0 comments on commit 2b95657

Please sign in to comment.