Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix qol.todo-items keybinds #1553

Merged
merged 1 commit into from
Aug 8, 2024
Merged
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
18 changes: 9 additions & 9 deletions lua/neorg/modules/core/qol/todo_items/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ This module handles the whole concept of toggling TODO items, as well as updatin
parent and/or children items alongside the current item.

The following keybinds are exposed:
- `<Plug>(neorg.qol.todo_items.todo.task-done)` (`<LocalLeader>td`)
- `<Plug>(neorg.qol.todo_items.todo.task-undone)` (`<LocalLeader>tu`)
- `<Plug>(neorg.qol.todo_items.todo.task-pending)` (`<LocalLeader>tp`)
- `<Plug>(neorg.qol.todo_items.todo.task-on_hold)` (`<LocalLeader>th`)
- `<Plug>(neorg.qol.todo_items.todo.task-cancelled)` (`<LocalLeader>tc`)
- `<Plug>(neorg.qol.todo_items.todo.task-recurring)` (`<LocalLeader>tr`)
- `<Plug>(neorg.qol.todo_items.todo.task-important)` (`<LocalLeader>ti`)
- `<Plug>(neorg.qol.todo_items.todo.task-cycle)` (`<C-Space>`)
- `<Plug>(neorg.qol.todo_items.todo.task-cycle-reverse)` (no default keybind)
- `<Plug>(neorg.qol.todo-items.todo.task-done)` (`<LocalLeader>td`)
- `<Plug>(neorg.qol.todo-items.todo.task-undone)` (`<LocalLeader>tu`)
- `<Plug>(neorg.qol.todo-items.todo.task-pending)` (`<LocalLeader>tp`)
- `<Plug>(neorg.qol.todo-items.todo.task-on_hold)` (`<LocalLeader>th`)
- `<Plug>(neorg.qol.todo-items.todo.task-cancelled)` (`<LocalLeader>tc`)
- `<Plug>(neorg.qol.todo-items.todo.task-recurring)` (`<LocalLeader>tr`)
- `<Plug>(neorg.qol.todo-items.todo.task-important)` (`<LocalLeader>ti`)
- `<Plug>(neorg.qol.todo-items.todo.task-cycle)` (`<C-Space>`)
- `<Plug>(neorg.qol.todo-items.todo.task-cycle-reverse)` (no default keybind)

With your cursor on a line that contains an item with a TODO attribute, press
any of the above keys to toggle the state of that particular item.
Expand Down
Loading