-
-
Notifications
You must be signed in to change notification settings - Fork 626
feat: add mark capabilites #612
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
Conversation
e2892ca
to
05eff71
Compare
149f16e
to
fb92091
Compare
123b22c
to
2635e0f
Compare
2635e0f
to
f5dc79c
Compare
f5dc79c
to
79ecefa
Compare
Is documentation the only thing blocking this? |
yes. I'll write it this weekend. |
b08f869
to
67c5b0e
Compare
67c5b0e
to
dc709b4
Compare
hi, let me know if I could help. I also need this feature. |
hi @sandangel, i'll try to finish this asap, just missing some example docs on how to use it |
Also one more interesting feature with marks would be to add marks using regex/pattern. Interesting Use cases: Mark all python files(pattern: |
9ffecac
to
01db61e
Compare
Hi! What is the status of this? Thanks! |
hi @vcraescu. |
hi, how could I help implement this from the PR you made? |
hi @sandangel. Copy the marks file, and reimplement the mappings + the rendering logic |
closing in favor of #1412 |
this feature add marking capabilities in nvim-tree.
m
for toggle the mark of a node,M
to disable all the current marksNvimTreeMarkedFile
highlight group was added, green by defaultrequire'nvim-tree.marks'.get_marks()
which will return a list of the tree nodes which you can do anything you want with.require'nvim-tree.marks'.toggle_mark()
require'nvim-tree.marks'.disable_all()
fixes #51 and #221 and #595
TODO: