feat: agenda visual bulk actions#1116
Open
celsobenedetti wants to merge 4 commits intonvim-orgmode:masterfrom
Open
feat: agenda visual bulk actions#1116celsobenedetti wants to merge 4 commits intonvim-orgmode:masterfrom
celsobenedetti wants to merge 4 commits intonvim-orgmode:masterfrom
Conversation
this is done since actions may modify the file, and the precomputed `start_line` may be invalidated.
celsobenedetti
commented
Apr 2, 2026
Comment on lines
+503
to
+505
| for i = #lines, 1, -1 do | ||
| local line = lines[i] | ||
| local headline = line.headline |
Contributor
Author
There was a problem hiding this comment.
Added this mechanism to iterate over the agenda items from bottom to top.
This is done mostly because actions such as archive will modify the file, so the intention of iterating bottom to top is to preserve the original get_range().start_line for each heading.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces support for visual mode bulk actions in Agenda view.
Here I'm adding only these two functionalities:
Agenda:archive_visual()Agenda:toggle_archive_tag_visual()If the approach here is endorsed, I hope to create a PR for "add tags" feature as well.
Related Issues
Related #1003
Changes
<prefix>$->Agenda:archive_visual<prefix>A->Agenda:toggle_archive_tag_visualAgenda:_get_visual_selection_linesAgenda:_bulk_actionChecklist
I confirm that I have:
Conventional Commits
specification (e.g.,
feat: add new feature,fix: correct bug,docs: update documentation).make test.