mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Add unbind
handling for mkt - issue #2415
This commit is contained in:
parent
1d42219e3e
commit
bf91666c5f
1 changed files with 5 additions and 0 deletions
|
@ -1630,6 +1630,11 @@ const parseConfigHelper = (pconf, parseobj, prefix= []) => {
|
|||
cmd += ` --mode=${mode}`
|
||||
}
|
||||
|
||||
if (pconf[i][e] === null) {
|
||||
parseobj.binds.push(`un${cmd} ${e}`)
|
||||
continue
|
||||
}
|
||||
|
||||
if (pconf[i][e].length > 0) {
|
||||
parseobj.binds.push(`${cmd} ${e} ${pconf[i][e]}`)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue