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

feat(#1851): persist bookmarks #3033

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open

Conversation

xiantang
Copy link
Collaborator

@xiantang xiantang commented Dec 22, 2024

Copy link
Member

@alex-courtis alex-courtis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great! I'll give it a full review and test in the next few days.

Initial thoughts:

  • Should we be using vim.json.encode instead of the fn ?
  • Please don't move existing methods (constructor, toggle)
  • This should be an optional feature in nvim-tree-opts, disabled by default
  • This needs checking and safety
    • Use a pcall or similar to prevent an error being raised
    • Report failures to the user

@HadyMash

This comment has been minimized.

@alex-courtis
Copy link
Member

any updates?

I'm happy with this providing the above is addressed.

@xiantang
Copy link
Collaborator Author

@alex-courtis updated

@alex-courtis alex-courtis changed the title WIP: Support Persist Bookmarks feat(#1851): persist bookmarks Feb 16, 2025
@alex-courtis
Copy link
Member

Proposed help, please correct indexes and run make help-update when done.

==============================================================================
 5.19 OPTS: BOOKMARKS                               *nvim-tree-opts-bookmarks*

*nvim-tree.bookmarks.persist*
Persist bookmarks to a json file containing a list of absolute paths.
Type: `boolean` | `string`, Default: `false`

`true`: use default: `stdpath("data") .. "/nvim-tree-bookmarks.json"`
`string`: absolute path of your choice.

Copy link
Member

@alex-courtis alex-courtis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is looking fantastic! It's very robust and works well.

Please

end
file:write(vim.json.encode(data))
file:close()
end
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
end
end
else
notify.warn("Invalid marks.save_path, disabling persistence: " .. errmsg)
opts.marks.enable_persistence = false

Print errmsg and disable persistence on a bad path, permission etc.

[NvimTree] Invalid marks.save_path, disabling persistence: /home/alex/marks.json: Permission denied

[NvimTree] Invalid marks.save_path, disabling persistence: /home/alexxxxxxxxxxxxxxxxxxxx/mar ks.json: No such file or directory

end

local storepath = get_save_path(opts)
local file = io.open(storepath, "w")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
local file = io.open(storepath, "w")
local file, errmsg = io.open(storepath, "w")

@@ -208,8 +208,8 @@ function Filters:prepare(project)

local explorer = require("nvim-tree.core").get_explorer()
if explorer then
for _, node in pairs(explorer.marks:list()) do
status.bookmarks[node.absolute_path] = node.type
for key, node in pairs(explorer.marks.marks) do
Copy link
Member

@alex-courtis alex-courtis Feb 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is private and should not be accessed, see CI failure

Please use Marks:list()

I know this is not your code, but we can clean this up by using self.explorer (guaranteed not null) instead of calling core.

Edit: it appears that self.explorer.marks:list() is now returning an array of booleans instead of an array of nodes.

Comment on lines +514 to +517
marks = {
enable_persistence = false,
save_path = nil, -- nil will default to stdpath("data") .. "/nvim-tree-bookmarks.json"
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
marks = {
enable_persistence = false,
save_path = nil, -- nil will default to stdpath("data") .. "/nvim-tree-bookmarks.json"
},
bookmarks = {
persist = false,
},

Rather than a toggle and path, we can use just one option that is boolean or string. This is consistent with other options.

See proposed help

We then add the type explitictly so that it may be validated. Add to ACCEPTED_TYPES:

  bookmarks = {
    persist = { "boolean", "string" },
  },

@alex-courtis
Copy link
Member

I've added you to this repository so that you may push branches and run CI in the future.

@alex-courtis
Copy link
Member

Apologies, I was not clear about my request to simplify options and proposed help

Attached is a patch with those changes

gunzip simplify_options.diff.gz
git apply simplify_options.diff

simplify_options.diff.gz

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Persist Bookmarks
3 participants