mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Only append space to non-zero excmds
This commit is contained in:
parent
34928489dc
commit
0e4f606468
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ export async function reloadhard(n = 1){
|
|||
|
||||
export function showcommandline(exstr = "", ...args){
|
||||
messageActiveTab("showcommandline")
|
||||
messageCommandline("changecommand", [exstr+" "+args.join(" "),])
|
||||
exstr = exstr == "" ? exstr : exstr + " " + args.join(" ")
|
||||
messageCommandline("changecommand", [exstr,])
|
||||
}
|
||||
|
||||
export function hidecommandline(){
|
||||
|
|
Loading…
Add table
Reference in a new issue