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

Abstracted out Workplace's storage system for other plugins. #1738

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed double return.
  • Loading branch information
adamharrison committed Sep 16, 2024
commit 8516a8e2191840a59d66edd4b12fb49f67beedc8
5 changes: 1 addition & 4 deletions data/plugins/workspace.lua
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,7 @@ local function save_workspace()
id = id + 1
end
local root = get_unlocked_root(core.root_view.root_node)
local node_text = common.serialize(save_node(root))
local dir_text = common.serialize(save_directories())

storage.save(STORAGE_MODULE, project_dir .. "-" .. id, string.format("return { path = %q, documents = %s, directories = %s }\n", core.project_dir, node_text, dir_text))
storage.save(STORAGE_MODULE, project_dir .. "-" .. id, { path = core.project_dir, documents = save_node(root), directories = save_directories() })
end


Expand Down