Questions tagged «visual-studio-code»

Visual Studio Code是可用于Linux,OS X和Windows的开源文本编辑器。它包括对调试的支持,嵌入式Git Control,各种扩展和丰富的开发经验,例如智能代码完成。它是由Microsoft驱动的开源软件,它基于GitHub的Atom等Electron构建。




10
在Visual Studio代码编辑器中使用哪种字体,以及如何更改字体?
我尝试了最近在构建时宣布的Visual Studio代码编辑器(https://code.visualstudio.com/)。我在Windows和Ubuntu上尝试过。我可以看到Visual Studio代码编辑器的默认字体不是consolas,而我的代码编辑器更喜欢这种字体。 那么在所有环境(Ubuntu,MAC OS和Windows)中,Visual Studio Code Editor的默认字体是哪种?我该如何更改?

5
如何在VS Code中保存时格式化代码
当我在Visual Studio Code中保存文件时,我想使用内置格式化程序自动格式化TypeScript代码。 我知道以下选项,但是它们都不足够好: 手动格式化 Shift + Alt + F 输入格式 "editor.formatOnType": true 当您按Enter键时,它将格式化行。不幸的是,当您单击另一行或按向上/向下箭头时,它保持未格式化的状态。 使用现有的扩展名 我想这一个,但它似乎没有工作太清楚了没有。 使用美化 "beautify.onSave": true 它不适用于TypeScript 编写自定义扩展 如果要处理自动保存并正确构建,这很棘手。

18
在Visual Studio Code中运行JavaScript
有没有一种方法可以执行JavaScript并使用Visual Studio Code显示结果? 例如,一个脚本文件包含: console.log('hello world'); 我认为将需要Node.js,但无法解决该怎么做? 通过Visual Studio代码我的意思是,从微软新的代码编辑器-使用Visual Studio编写的代码没有。





11
为什么我不断收到Delete'cr'[prettier / prettier]?
我在Prettier 1.7.2和Eslint 1.7.0中使用vscode。在每个换行符之后,我得到: [eslint] Delete 'cr' [prettier/prettier] 这是.eslintrc.json: { "extends": ["airbnb", "plugin:prettier/recommended"], "env": { "jest": true, "browser": true }, "rules": { "import/no-extraneous-dependencies": "off", "import/prefer-default-export": "off", "no-confusing-arrow": "off", "linebreak-style": "off", "arrow-parens": ["error", "as-needed"], "comma-dangle": [ "error", { "arrays": "always-multiline", "objects": "always-multiline", "imports": "always-multiline", "exports": "always-multiline", "functions": "ignore" } ], "no-plusplus": "off" …




14
Visual Studio代码PHP Intelephense继续显示不必要的错误
在我获得了PHP Intelephense的最新更新之后,intelephense继续显示我的路线(以及其他类)的未定义符号错误,以前没有这样的错误,这困扰着我。 这是错误屏幕截图: 这是我的代码: Route::group(['prefix' => 'user', 'namespace' => 'Membership', 'name' => 'user.'], function () { Route::get('profile', 'ProfileController@show')->name('profile.show'); Route::patch('profile', 'ProfileController@update')->name('profile.update'); Route::patch('change-password', 'ChangePasswordController@change')->name('change-password'); Route::get('role', 'ProfileController@getRole')->name('profile.role'); Route::get('summary', 'SummaryController@show')->name('summary'); Route::get('reserved', 'AuctionController@reservedAuction')->name('reserved'); }); 这段代码中实际上没有错误,但是智能手机不断显示错误,因此有办法解决吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.