mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CmdAdd/Log: No longer obey context
Context is good for filtering, terrible for commands that do not take filters.
This commit is contained in:
parent
9db03a317b
commit
77b17379d6
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ CmdAdd::CmdAdd ()
|
|||
_read_only = false;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
_uses_context = true;
|
||||
_uses_context = false;
|
||||
_accepts_filter = false;
|
||||
_accepts_modifications = true;
|
||||
_accepts_miscellaneous = false;
|
||||
|
|
|
@ -43,11 +43,11 @@ CmdLog::CmdLog ()
|
|||
_read_only = false;
|
||||
_displays_id = false;
|
||||
_needs_gc = false;
|
||||
_uses_context = true;
|
||||
_uses_context = false;
|
||||
_accepts_filter = false;
|
||||
_accepts_modifications = true;
|
||||
_accepts_miscellaneous = false;
|
||||
_category = Command::Category::operation;
|
||||
_category = Command::Category::operation;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue