We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
repro.lua
0.10.0 release
ArchLinux
kitty
Since the save_path options isn't specified in the plugin the taken pictures don't get saved.
CodeSnap should the save the picture to your system's hard drive
No response
this is the error you get: If you want to save snapshot in somewhere, you should config the save_path before, refer: https://github.com/mistricky/codesnap.nvim?tab=readme-ov-file#save-the-snapshot
-- save as repro.lua -- run with nvim -u repro.lua -- DO NOT change the paths local root = vim.fn.fnamemodify("./.repro", ":p") -- set stdpaths to use .repro for _, name in ipairs({ "config", "data", "state", "runtime", "cache" }) do vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name end local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then -- stylua: ignore vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup { { "AstroNvim/AstroNvim", import = "astronvim.plugins" }, { "AstroNvim/astrocommunity", { import = "astrocommunity.media.codesnap-nvim" } }, }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Checklist
repro.lua
provided belowNeovim version (nvim -v)
0.10.0 release
Operating system/version
ArchLinux
Terminal/GUI
kitty
Describe the bug
Since the save_path options isn't specified in the plugin the taken pictures don't get saved.
Steps to Reproduce
Expected behavior
CodeSnap should the save the picture to your system's hard drive
Screenshots
No response
Additional Context
this is the error you get:
If you want to save snapshot in somewhere, you should config the save_path before, refer: https://github.com/mistricky/codesnap.nvim?tab=readme-ov-file#save-the-snapshot
Minimal configuration
The text was updated successfully, but these errors were encountered: