mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
excmds.ts: Fix hint -j
https://github.com/tridactyl/tridactyl/pull/1381 inverted the behavior of -J. This commit fixes that.
This commit is contained in:
parent
0f0ab74391
commit
4ff992f49e
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