小编Mad*_*lus的帖子

如何在Visual Studio代码或VSCode中更改集成终端

我想改变集成终端, CMDER我在Windows 8.1上使用Vscode我检查了文档和偏好文件,但我混淆了所以从下面这行将改变它

//外部终端

// Customizes which terminal to run on Windows.
"terminal.external.windowsExec": "%COMSPEC%",

// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "Terminal.app",

// Customizes which terminal to run on Linux.
"terminal.external.linuxExec": "xterm",
Run Code Online (Sandbox Code Playgroud)

//集成终端

// The path of the shell that the terminal uses on Linux.
"terminal.integrated.shell.linux": "sh",

// The command line arguments to use when on the Linux terminal.
"terminal.integrated.shellArgs.linux": [],

// The path of the shell that the terminal uses on OS X.
"terminal.integrated.shell.osx": …
Run Code Online (Sandbox Code Playgroud)

preference visual-studio-code

48
推荐指数
4
解决办法
8万
查看次数

如何在visual studio代码中安装扩展

如何通过cmd.exe/command promptcommand line interface在视觉工作室代码中安装扩展请为一些示例提供更好的清晰度和理解,以及如何更改集成终端,例如我有cmder我想改变它我已经看到了偏好文件但我感到困惑

visual-studio-code

2
推荐指数
1
解决办法
1万
查看次数

选择器不工作之前的CSS

我正在创建一个悬停效果

所以我有简单的文字回家,背景颜色是紫色

我想在文本之前添加边框,但效果没有显示出来

我正在使用::before那个

以下是我的代码

* {
  margin: 0;
  padding: 0;
}

.container::before {
  border: 2px solid black;
}

.container {
  background-color: purple;
  color: white;
  font-size: 50px;
  width: 300px;
  position: relative;
  top: 50px;
  left: 80px;
}
Run Code Online (Sandbox Code Playgroud)
<div class="container">HOME</div>
Run Code Online (Sandbox Code Playgroud)

html css

0
推荐指数
1
解决办法
1346
查看次数

标签 统计

visual-studio-code ×2

css ×1

html ×1

preference ×1