feat(actions): add add_to_qflist action #284
No reviewers
Labels
No labels
autorelease: pending
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
upstream/digest
upstream/pr
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/canola.nvim!284
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feat/add-to-qflist"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
send_to_qflistsends every file in the directory to the quickfix list. There is no way to add individual files or a visual selection without a custom action. Requested in #281, where a user provided a working custom implementation.Solution
Add
add_to_qflistaction that appends the cursor entry (or visual selection) to the quickfix list. Supportstargetparameter for loclist. Does not auto-open the quickfix window — the user runs:copenwhen ready.Closes #281