You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be similar to cdo norm! dd but only doing this for the items which are missing from original qflist lines.
Provide background
Many times I'm deleting the lines in qflist buffer hoping it to just delete those lines (usually debug statement) in the file, but found that did not work, and by cdo norm! dd I need to carefully choose which are left in qflist to not delete unrelated lines. This is an inverse mental model feels unintuitive.
Maybe an extra action to delete is enough, people can bind that action to dd, and still use g/filename/d to remove unwanted lines.
What is the significance of this feature?
nice to have
Additional details
No response
The text was updated successfully, but these errors were encountered:
Coming from quickfix-reflector, it's nice to be able to delete lines in the qf to ignore them when doing :s. You can :g/bad/d a few times to filter out irrelevant lines and then :s/ to modify what's left. quicker currently supports this workflow because deleting lines removes them from consideration.
by cdo norm! dd I need to carefully choose which are left in qflist to not delete unrelated lines. This is an inverse mental model feels unintuitive.
You're describing something like "list the lines that I want to delete and then delete them", right?
:grep somepattern
:v/Log/d
:write
:cdo norm! dd
Maybe an extra action to delete is enough, people can bind that action to dd
Did you check existing requests?
Describe the feature
This can be similar to
cdo norm! dd
but only doing this for the items which are missing from original qflist lines.Provide background
Many times I'm deleting the lines in qflist buffer hoping it to just delete those lines (usually debug statement) in the file, but found that did not work, and by
cdo norm! dd
I need to carefully choose which are left in qflist to not delete unrelated lines. This is an inverse mental model feels unintuitive.Maybe an extra action to
delete
is enough, people can bind that action to dd, and still useg/filename/d
to remove unwanted lines.What is the significance of this feature?
nice to have
Additional details
No response
The text was updated successfully, but these errors were encountered: