2 Commits

Author SHA1 Message Date
Diogo Duarte
e45dffc27a Update README 2025-02-18 23:13:40 +00:00
Diogo Duarte
0e772b951b Add custom keybinding for last + added 'jump' command 2025-02-18 23:03:00 +00:00
2 changed files with 26 additions and 8 deletions

View File

@@ -23,10 +23,10 @@ ya pack -a dedukun/bookmarks
## Import/Export bookmarks
This plugin uses [Yazi's DDS](https://yazi-rs.github.io/docs/dds/) for bookmark persistence, as such,
This plugin uses [Yazi's DDS](https://yazi-rs.github.io/docs/dds/) for bookmark persistence, as such,
the bookmarks are saved in DDS's state file (`~/.local/state/yazi/.dds` on Linux and `C:\Users\USERNAME\AppData\Roaming\yazi\state\.dds` on Windows)
***NOTE:*** This system may be used by other plugins that you have installed, so this file might have more data than just the bookmarks.
**_NOTE:_** This system may be used by other plugins that you have installed, so this file might have more data than just the bookmarks.
## Configuration
@@ -62,7 +62,7 @@ The following are the default configurations:
```lua
-- ~/.config/yazi/init.lua
require("bookmarks"):setup({
last_directory = { enable = false, persist = false },
last_directory = { enable = false, persist = false, key= "'" },
persist = "none",
desc_format = "full",
file_pick_mode = "hover",
@@ -85,6 +85,8 @@ the last directory.
There's also the option to enable persistence to this automatic bookmark.
It's also possible to change the trigger key.
### `persist`
When enabled the bookmarks will persist, i.e. if you close and reopen Yazi they will still be

View File

@@ -92,7 +92,10 @@ end)
local _save_last_directory = ya.sync(function(state, persist)
if persist then
ps.sub_remote("@bookmarks-lastdir", function(body) state.curr_dir = body end)
ps.sub_remote("@bookmarks-lastdir", function(body)
state.curr_dir = body
state.curr_dir.on = state.last_directory_key
end)
end
ps.sub("cd", function()
@@ -104,7 +107,7 @@ local _save_last_directory = ya.sync(function(state, persist)
end
state.curr_dir = {
on = "'",
on = state.last_directory_key,
desc = _generate_description(file),
path = tostring(file.url),
is_parent = file.is_parent,
@@ -216,6 +219,14 @@ local delete_all_bookmarks = ya.sync(function(state)
end
end)
local jump_to_last = ya.sync(function(state)
if state.last_dir.is_parent then
ya.manager_emit("cd", { state.last_dir.is_parent })
else
ya.manager_emit("reveal", { state.last_dir.is_parent })
end
end)
return {
entry = function(_, job)
local action = job.args[1]
@@ -229,10 +240,10 @@ return {
save_bookmark(key)
end
return
end
if action == "delete_all" then
elseif action == "delete_all" then
return delete_all_bookmarks()
elseif action == "jump_last" then
return jump_to_last()
end
local bookmarks = all_bookmarks(action == "jump")
@@ -258,6 +269,11 @@ return {
if type(args.last_directory) == "table" then
if args.last_directory.enable then
state.last_directory_key = "'"
if type(args.last_directory.key) == "string" then
state.last_directory_key = args.last_directory.key
end
_save_last_directory(args.last_directory.persist)
end
end