Installing VSCode Snippets from Market #472
Answered
by
leiserfg
bennypowers
asked this question in
Q&A
-
Hello! So, let's say I: require 'luasnip.loaders.from_vscode'.lazy_load { paths = {
-- Path to the built project, perhaps in your `node_modules`
"~/Developer/my-vscode-snippets-package/"
} } Ok, fine, works locally, but requires me to manually download the snippets package, build it, and keep track of which dir it's in. Is it possible to rather install vscode snippets by marketplace url, and have luasnip download and install it in |
Beta Was this translation helpful? Give feedback.
Answered by
leiserfg
Jun 30, 2022
Replies: 1 comment 1 reply
-
Well, doing that is potentially illegal (microsoft/vscode#31168) besides that it will be hard to do without adding several dependencies because nvim and lua don't have built-in HTTP client nor a |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
bennypowers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, doing that is potentially illegal (microsoft/vscode#31168) besides that it will be hard to do without adding several dependencies because nvim and lua don't have built-in HTTP client nor a
zip
file extractor.