mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
Remove equals sign from get (#4384)
This should allow users to more easily turn it into a :set
This commit is contained in:
parent
4ec0e5eb61
commit
8a35150e1d
1 changed files with 2 additions and 2 deletions
|
@ -4825,9 +4825,9 @@ export function get(...keys: string[]) {
|
|||
console.log(value)
|
||||
let done
|
||||
if (typeof value === "object") {
|
||||
done = fillcmdline_notrail(`# ${keys.join(".")} = ${JSON.stringify(value)}`)
|
||||
done = fillcmdline_notrail(`# ${keys.join(".")} ${JSON.stringify(value)}`)
|
||||
} else {
|
||||
done = fillcmdline_notrail(`# ${keys.join(".")} = ${value}`)
|
||||
done = fillcmdline_notrail(`# ${keys.join(".")} ${value}`)
|
||||
}
|
||||
return done
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue