切换浏览器栏

时间:2019-03-05 08:34:09

标签: visual-studio-code

我知道<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.plugin.sonar</groupId> <artifactId>myPlugin</artifactId> <!-- this is important for sonar-packaging-maven-plugin --> <packaging>sonar-plugin</packaging> <version>1.0</version> <name>myPlugin</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api</artifactId> <!-- minimal version of SonarQube to support. Note that the groupId was "org.codehaus.sonar" before version 5.2 --> <version>6.7</version> <!-- mandatory scope --> <scope>provided</scope> </dependency> <!-- facing problem after adding this dependency--> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.6</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <version>1.18.0.372</version> <extensions>true</extensions> <configuration> <pluginKey>MyCustomPlugin</pluginKey> <pluginClass>com.plugin.sonar.MyCustomPlugin</pluginClass> <pluginDescription>Sonar plugin of Test</pluginDescription> </configuration> </plugin> </plugins> </build> </project> 会切换侧栏。我知道cmd+b显示资源管理器栏。我想要一个命令仅浏览器栏进行切换,而不显示,切换。有办法吗?

1 个答案:

答案 0 :(得分:2)

Windows的快捷方式。对于Mac,将 Ctrl 更改为 Cmd

{
    "key": "ctrl+shift+e",
    "command": "-workbench.view.explorer"
},
{
    "key": "ctrl+shift+e",
    "command": "workbench.view.explorer",
    "when": "!explorerViewletVisible"
},
{
    "key": "ctrl+shift+e",
    "command": "workbench.action.toggleSidebarVisibility",
    "when": "explorerViewletVisible"
},