Replies: 1 comment
-
|
VSCode have file .vscode/extensions.json which json like: {
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dbaeumer.vscode-eslint"
]
}we could support something similar. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm not sure if something like this already been implemented but it might be a good idea to have an extension recommendation option like in VS Code
.vscode/extensions.jsonwhere you can specify recommended extensions on working directory then have a popup to tell you to install those extensions. This option will scan through installed extensions and recommend not installed extensions.The idea is to put it in
.vim/coc-settings.jsonlike example below:{ "coc.recommendations": [ "coc-html", "coc-json", "coc-clangd" ] }This will helps a lot in collaborative project where people don't always have the same setup.
Beta Was this translation helpful? Give feedback.
All reactions