Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ return {
- `:ShepherdList` — pick an item (`vim.ui.select`), then act on it: toggle
done/undone, **edit** (a pre-filled quick-add line — text, `@category`,
`!priority`, `due:`, `defer:`, `link:`, `note:`), set a **status**, add a
**subtask**, **rm**, or **open link** when it has one. Subtasks show indented
**subtask**, **archive** it (whole items only), **rm**, or **open link** when
it has one. Subtasks show indented
under their parent and take the same actions. Uses whatever `vim.ui.select` UI
you have (dressing, snacks, telescope-ui-select), or the built-in menu.
- `:ShepherdList work` — pick within a filtered view. `:ShepherdList!` picks
Expand Down
1 change: 1 addition & 0 deletions lua/shepherd/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ function M.pick(filter, all)
local actions = { toggle, "edit", "status", "rm" }
if not choice._sub then
actions[#actions + 1] = "subtask"
actions[#actions + 1] = "archive"
end
if choice.link and choice.link ~= "" then
actions[#actions + 1] = "open link"
Expand Down
Loading