Answer the question
In order to leave comments, you need to log in
Setting up Visual Studio Code?
I'm doing layout and decided to try switching from Sublime Text to Visual Studio Code, but I just can't get used to it. Emmet (creating a block by taboo) does not always work for me, there is not enough auto-completion of the path to the file (in HTML and CSS), an auto-prefixer for CSS, beautiful code formatting with one click.
Prompt settings, suitable plug-ins. And what useful web development plugins can you suggest?
Answer the question
In order to leave comments, you need to log in
the most basic:
Auto Close Tag - auto closing tags
Auto Rename Tag - renaming paired tags
Beautify - decompressing code (from minify to standard view)
highlight-mathing-tag - highlighting paired tags (need to be configured in the config to make it brighter)
html snippets - snippets as in sublime
insert <br>
tag - inserting a newline tag via shift + enter
PHP Debug - debugger for php (need to be configured)
Debugger for Chrome - JS debugger
vscode-icons - icons for VSC
minify - css code compression
auto prefix - auto prefixes
Insert Numbers- a useful extension for
inserting numbers
of a
certain format in many places with increments (e.g. for "requere" in node.js) Bookmarks - make bookmarks in the code Bracket Pair Colorizer - highlight paired brackets (square, curly, rectangular, round) very convenient gitignore - adds a .gitignore file under the project (node.js, docker, yii2, laravel, etc.) GitLens - Git supercharged - shows git commits in the code (and the author of the commit, handy in team development) HTML Class Suggestions Live Server
Remote FS- for remote connection via FTP (useful if there are several servers), config example:
{
"remotefs.remote": {"site": {
"scheme": "ftp",
"host": "1************01",
"username": "ad**********ain",
"password": "Lv************xF",
"rootPath": "/"
},
"site2": {
"scheme": "ftp",
"host": "17**********1",
"username": "a*****************m",
"password": "************O",
"rootPath": "/"
},
"moy-yandex": {
"scheme": "ftp",
"host": "a***********u",
"username": "a***************mone",
"password": "1***************W",
"rootPath": "/"
}
}
Hello!
To the above plugins I would add:
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question