///////////////////////////////////////////////////////////////////////////
| 212 | |
| 213 | //////////////////////////////////////////////////////////////////////////////// |
| 214 | CmdCompletionConfig::CmdCompletionConfig() { |
| 215 | _keyword = "_config"; |
| 216 | _usage = "task _config"; |
| 217 | _description = "Lists all supported configuration variables, for completion purposes"; |
| 218 | _read_only = true; |
| 219 | _displays_id = false; |
| 220 | _needs_gc = false; |
| 221 | _needs_recur_update = false; |
| 222 | _uses_context = false; |
| 223 | _accepts_filter = false; |
| 224 | _accepts_modifications = false; |
| 225 | _accepts_miscellaneous = false; |
| 226 | _category = Command::Category::internal; |
| 227 | } |
| 228 | |
| 229 | //////////////////////////////////////////////////////////////////////////////// |
| 230 | int CmdCompletionConfig::execute(std::string& output) { |
nothing calls this directly
no outgoing calls
no test coverage detected