From 054249aa79c35e8fa9e79dd9634c6955e3f16ed7 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Fri, 7 Jun 2024 13:32:47 +0200 Subject: [PATCH] update --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3651afa..0c253ca 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,15 @@ vk rm 42 # Mark as done vk done 42 +vk done -u 42 # You can undo this + +# Mark as favorite +vk fav 42 +vk fav -u 42 # Undo # Assign a user to a task vk assign me 42 -vk assign -u me 42 # You can undo this +vk assign -u me 42 # Undo ``` **Working with projects:** @@ -78,3 +83,21 @@ vk labels new mylabel # Remove a label vk labels rm mylabel ``` + +**Working with comments:** +```shell +# Show comments of task +vk comments 42 + +# Comment on a task +vk comment 42 "my comment" +``` + +**Relations:** +```shell +# Make Task #42 be a parent task to #7 +vk relation 7 parent 42 + +# Make #42 blocked by #7 +vk relation 42 blocked 7 +```