mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-24 18:06:42 +02:00
Bug
- Do not print new line after xterm title. With xterm.title=on, each command displayed an empty line on the terminal, which is not only unnecessary but also changes output format for the helper subcommands starting with an underscore. Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
parent
2bb601e6f2
commit
0bcb22f8e4
2 changed files with 3 additions and 1 deletions
|
@ -99,6 +99,8 @@ Bugs
|
|||
+ Fixed manpages that were not installed when running an out-of-source build
|
||||
(thanks to Vincent Petithory).
|
||||
+ Added missing localized confirmation strings (thanks to Rainer Müller).
|
||||
+ Fixed bug that added an extra newline after setting the terminal title
|
||||
(thanks to Rainer Müller).
|
||||
|
||||
------ old releases ------------------------------
|
||||
|
||||
|
|
|
@ -683,7 +683,7 @@ void Context::updateXtermTitle ()
|
|||
|
||||
std::string title;
|
||||
join (title, " ", a3.list ());
|
||||
std::cout << "]0;task " << command << " " << title << "" << std::endl;
|
||||
std::cout << "]0;task " << command << " " << title << "";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue