removed non existing addons

jerome
2017-12-16 14:05:14 +01:00
parent 32e6cca6b5
commit 2bafc45099

@@ -43,7 +43,6 @@ h3. Table of Contents
** "again - Complete and re-add tasks, updating due and deferral dates":#again-recurring-tasks-made-easy
** "top - Shows as many tasks as you can see in your terminal":#top-see-the-top-tasks
** "XP - print a readable guide of your accomplishments.":#xp--print-a-readable-guide-of-your-accomplishments
** "pri - change the priority of several tasks at once.":#pri--change-the-priority-of-several-tasks-at-once
** "rm - remove several tasks at once.":#rm--remove-several-tasks-at-once
** "addr - add task with the projects and contexts of the last added task.":#addr--add-task-with-the-projects-and-contexts-of-the-last-added-task
** "lsgc - prints tasks in columns organized by context":#lsgp--lsgc--prints-in-columns-organized-by-either-context-or-group
@@ -679,49 +678,6 @@ _License: GPLv3_
"Project page":https://github.com/gr0undzer0/xp
h2(#pri--change-the-priority-of-several-tasks-at-once). pri - change the priority of several tasks at once.
pri ITEM#[, ITEM#, ITEM#, ...] PRIORITY
For each ITEM#, calls command pri with priority PRIORITY.
<pre>
$ todo.sh list @test
45 Another task @test
44 One task @test
--
TODO: 2 of 45 tasks shown
$ todo.sh pri 44 45 A
44 (A) One task @test
TODO: 44 prioritized (A).
45 (A) Another task @test
TODO: 45 prioritized (A).
</pre>
"Project page":https://github.com/tonipenya/todo.txt-cli/blob/addons/.todo.actions.d/pri
"Download file":https://raw.github.com/tonipenya/todo.txt-cli/addons/.todo.actions.d/pri
h2(#rm--remove-several-tasks-at-once). rm - remove several tasks at once.
rm ITEM#[, ITEM#, ITEM#, ...]
For each ITEM#, calls command rm. Removes blank lines by calling the archive command.
<pre>
$ todo.sh list @test
45 (A) Another task @test
44 (A) One task @test
--
TODO: 2 of 45 tasks shown
$ todo.sh rm 44 45
44 (A) One task @test
TODO: 44 deleted.
45 (A) Another task @test
TODO: 45 deleted.</pre>
"Project page":https://github.com/tonipenya/todo.txt-cli/blob/addons/.todo.actions.d/rm
"Download file":https://raw.github.com/tonipenya/todo.txt-cli/addons/.todo.actions.d/rm
h2(#addr--add-task-with-the-projects-and-contexts-of-the-last-added-task). addr - add task with the projects and contexts of the last added task.
A helpful todo.sh command when you are adding lots of related tasks. It simply appends the tags of the most recent item to the item you add.