You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script calls xterm/taskwarrior with a long argument containing spaces instead of multiple arguments.
I don't know about the xterm case but with urxvt that just does nothing
(as at some place something seems to assume "task add etc.." is the name of the program to be executed).
I could fix this by constructing args like this:
var args = [ "-e", "task", "add", "+inbox", "+email", "Email: " + box[1] ];
(instead of using topicName).
Maybe that helps someone else as well.
The text was updated successfully, but these errors were encountered:
The script calls xterm/taskwarrior with a long argument containing spaces instead of multiple arguments.
I don't know about the xterm case but with urxvt that just does nothing
(as at some place something seems to assume "task add etc.." is the name of the program to be executed).
I could fix this by constructing args like this:
var args = [ "-e", "task", "add", "+inbox", "+email", "Email: " + box[1] ];
(instead of using topicName).
Maybe that helps someone else as well.
The text was updated successfully, but these errors were encountered: