Visual Studio Code を使用している人は、右クリックして既定のブラウザー (サブライム テキスト) で開く方法があるかどうかを知っていますか? ファイルノードを右クリックして「エクスプローラーで表示」し、ブラウザーで手動で開くことができることは知っていますが、余分な2秒を節約したいと思います。
質問する
8602 次
4 に答える
4
実際、上記のコードは両方とも、BROWSER ではなく Windows ファイル エクスプローラーを開きます。
Javascriptで静的htmlファイルをテストしながら、Chromeでファイルを開き、完全に機能する次のコードを使用しています。
{
"version": "0.1.0",
"command": "Chrome",
"windows": {
"command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
},
"args": ["${file}"]
}
于 2016-12-29T06:10:07.907 に答える
3
私のプロジェクトの1つに似たようなものがあります。以下に示すように、tasks.json を設定しました。その場所で、「Ctrl + P」と入力してから「タスク開始」と入力し、Enter キーを押して、現在の HTML ファイルをデフォルトのブラウザーにロードします :-)
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process
{
"version": "0.1.0",
"command": "powershell",
"isShellCommand": true,
"suppressTaskName": true,
"tasks": [
// other tasks here,
{
"taskName": "start browser",
"args": [
"start", "${file}"
]
}
]
}
于 2015-07-01T20:28:50.480 に答える
3
Ctrl+Shift+Pを押して、[ Configure Task Runner]コマンドを選択します。さまざまなタイプの構成で tasks.json ファイルが開きます。そのすべてを削除して、次のコードを使用するだけです
{
"version": "1.0.0",
"command": "explorer",
"windows": {
"command": "explorer.exe"
},
"args": [
"index.html"
]
}
コマンド「explorer」について心配する必要はありません。これは、Internet Explorer で開くという意味ではありません。既定のブラウザー構成で開きます。引数には、開きたいページを渡します。
これを行った後、Ctrl+Shift+Bを押すだけで、既定のブラウザーで "index.html" ページが開きます。
于 2016-01-04T15:11:29.593 に答える