From e8fe6ef773d49237302aec8536807c9debc0b314 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 17 Jul 2015 09:12:41 -0400 Subject: [PATCH] Documentation: Updated to reflect the '_tags' changes --- AUTHORS | 1 + ChangeLog | 2 ++ src/commands/CmdTags.cpp | 10 +++++----- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 406f96e5f..4a1359a77 100644 --- a/AUTHORS +++ b/AUTHORS @@ -118,6 +118,7 @@ The following submitted code, packages or analysis, and deserve special thanks: Peter Rochen Oota Toshiya ribbon + Daniel Shahaf Thanks to the following, who submitted detailed bug reports and excellent suggestions: diff --git a/ChangeLog b/ChangeLog index 99caecd8c..bfc9572a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -68,6 +68,8 @@ and replaced by the new '_unique' helper command, which generates lists of unique values for the specified attribute. - "import" can now import JSON arrays, the new default "export" output. +- The '_tags' helper command now includes virtual tags (thanks to Daniel + Shahaf). ------ current release --------------------------- diff --git a/src/commands/CmdTags.cpp b/src/commands/CmdTags.cpp index 76ed39c58..5f2d368fc 100644 --- a/src/commands/CmdTags.cpp +++ b/src/commands/CmdTags.cpp @@ -172,11 +172,11 @@ int CmdCompletionTags::execute (std::string& output) unique[tag] = 0; } - // add built-in tags to map - unique["nocolor"] = 0; - unique["nonag"] = 0; - unique["nocal"] = 0; - unique["next"] = 0; + // Add built-in tags to map. + unique["nocolor"] = 0; + unique["nonag"] = 0; + unique["nocal"] = 0; + unique["next"] = 0; unique["BLOCKED"] = 0; unique["UNBLOCKED"] = 0; unique["BLOCKING"] = 0;