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] default to XDG_PICTURES_DIR for save path #124

Merged
merged 2 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ There is a default config:
min_width = 0,
bg_x_padding = 122,
bg_y_padding = 82,
save_path = os.getenv("XDG_PICTURES_DIR") or (os.getenv("HOME").. "/Pictures")
}
```

Expand Down
12 changes: 12 additions & 0 deletions lua/codesnap/static.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
local path_utils = require("codesnap.utils.path")
-- Get user os
-- If linux, use XDG_PICTURE_DIR, if mac use ~/Pictures, if windows use FOLDERID_Pictures (If support is added back)
local default_save_path = nil
local os_name = vim.loop.os_uname().sysname
if os_name == "Linux" then
default_save_path = os.getenv("XDG_PICTURES_DIR") or (os.getenv("HOME") .. "/Pictures")
elseif os_name == "Darwin" then
default_save_path = os.getenv("HOME") .. "/Pictures"
else
error("codesnap.nvim only supports Linux and MacOS")
end

return {
config = {
Expand All @@ -15,6 +26,7 @@ return {
min_width = 0,
bg_x_padding = 122,
bg_y_padding = 82,
save_path = default_save_path,
},
cwd = path_utils.back(path_utils.back(debug.getinfo(1, "S").source:sub(2):match("(.*[/\\])"))),
preview_switch = true,
Expand Down