This commit is contained in:
Min ho Kim 2019-07-06 11:07:35 +10:00
Родитель 9a1f305637
Коммит 18f0646c13
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -5,6 +5,6 @@ const { code, stdout } = $.exec('git lfs --version', { silent: true })
if (code === 0 && stdout.startsWith('git-lfs')) {
process.exit(0)
} else {
console.log('Please install Git LFS for commiting {gif,mp4,jpg,png} files. See https://github.com/microsoft/vscode-docs#git-lfs-setup for instructions.')
console.log('Please install Git LFS for committing {gif,mp4,jpg,png} files. See https://github.com/microsoft/vscode-docs#git-lfs-setup for instructions.')
process.exit(1)
}

Просмотреть файл

@ -27,7 +27,7 @@ We broke down the content into four sections:
## Debugging
### node.js: Large data stucture improvments
### node.js: Large data structure improvements
In previous versions of VS Code, debugging would stall (and timeout) when stepping through code that used large Arrays or Buffers. In this version the VS Code debugger treats large data structures (Arrays and Buffers) in a more scalable way and should no longer timeout. The same should be true for drilling into large data structures in the variables or watches view section.
As a consequence, the debugger now renders the contents of Arrays and Buffers in chunks.

Просмотреть файл

@ -363,7 +363,7 @@ Open the `package.json` file and do the following changes:
- Add a TypeScript developer dependency `"typescript": "^2.0.3"`.
- Add a developer dependency for the Node.js typings using `"@types/node": "^6.0.40"`.
- If your extension has Mocha tests, change the developer dependeny to at least Mocha version 2.3.3.
- If your extension has Mocha tests, change the developer dependency to at least Mocha version 2.3.3.
- Add a developer dependency for the Mocha typing using `"@types/mocha": "^2.2.32"`.
- We also recommend using ESLint for linting JavaScript source code. To do so, add the following entry as a developer dependency as well: `"eslint": "^3.6.0"`. In addition we recommend installing the [ESLint extensions](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint).
@ -490,7 +490,7 @@ Key|Command|Command id
Search||
`kb(history.showNext)`|Next Search Term|`history.showNext`
`kb(history.showPrevious)`|Previous Search Term|`history.showPrevious`
`kb(toggleSearchCaseSensitive)`|Toggle Case Senstive|`toggleSearchCaseSensitive`
`kb(toggleSearchCaseSensitive)`|Toggle Case Sensitive|`toggleSearchCaseSensitive`
`kb(toggleSearchRegex)`|Toggle Regex|`toggleSearchRegex`
`kb(toggleSearchWholeWord)`|Toggle Whole Word|`toggleSearchWholeWord`
Integrated Terminal||