Skip to content

Commit

Permalink
fix(SnippyEdit): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hwadii authored and dcampos committed Apr 30, 2024
1 parent eae3048 commit acc714f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/snippy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ end
command('SnippyEdit', function(params)
if (vim.fn.empty(params.args)) then
local slash = vim.fn.exists("+shellslash") == 1 and '\\' or '/'
local path = vim.fn.stdpath("config") .. slash .. snippets
local path = vim.fn.stdpath("config") .. slash .. "snippets"
if (not (vim.uv or vim.loop).fs_stat(path)) then
vim.fn.mkdir(path, 'p')
end
Expand Down

0 comments on commit acc714f

Please sign in to comment.