mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Merge pull request #1391 from glacambre/fix_hint_j
excmds.ts: Fix hint -J
This commit is contained in:
commit
24228b8937
1 changed files with 1 additions and 1 deletions
|
@ -3540,7 +3540,7 @@ export async function hint(option?: string, selectors?: string, ...rest: string[
|
|||
|
||||
const options = new Set(option.length ? option.slice(1).split("") : [])
|
||||
const rapid = options.delete("q")
|
||||
const jshints = options.delete("J")
|
||||
const jshints = !options.delete("J")
|
||||
const withSelectors = options.delete("c")
|
||||
|
||||
option = "-" + Array.from(options).join("")
|
||||
|
|
Loading…
Add table
Reference in a new issue