Commit graph

6622 commits

Author SHA1 Message Date
Martin Aeschlimann 6aa8f50d63 [xml] Don't report *.config files as XML. Fixes #63462 2019-01-04 17:26:43 +01:00
Martin Aeschlimann d72bc587c3 [themes] fix commit hash for themes copied from Colorsublime/Colorsublime-Themes 2019-01-04 17:08:20 +01:00
Martin Aeschlimann 6be20f4f76 [seti] script to update commitHash in cgmanifest 2019-01-04 17:08:20 +01:00
Joao Moreno 2f82209adf 💄 cleanup git input validation rules
#60407
2019-01-04 17:03:11 +01:00
Joao Moreno e6878ce54f Merge commit 'refs/pull/60407/head' of github.com:Microsoft/vscode into pr/60407 2019-01-04 16:51:22 +01:00
Joao Moreno a8aa85192a Merge branch 'master', commit 'refs/pull/60387/head' of github.com:Microsoft/vscode into pr/60387 2019-01-04 16:40:21 +01:00
Joao Moreno 3d928bbb27 💄 auto fetch period 2019-01-04 16:38:12 +01:00
Joao Moreno 32d22dbace Merge commit 'refs/pull/59988/head' of github.com:Microsoft/vscode into pr/59988 2019-01-04 16:30:25 +01:00
Joao Moreno a1279d336b Merge remote-tracking branch 'origin/master' 2019-01-04 16:24:52 +01:00
Joao Moreno 507a3508a5 💄 2019-01-04 16:24:14 +01:00
Alex Ross 272c6827f1 Prefer global gulp install over local
Prevents console.log in gulp files from being interpreted as tasks. Fixes #11699
2019-01-04 16:22:22 +01:00
Joao Moreno 579b962ae1 Merge commit 'refs/pull/59974/head' of github.com:Microsoft/vscode into pr/59974 2019-01-04 16:22:03 +01:00
Joao Moreno dcb3c339c8 preserve user input when creating branch from checkout
fixes #60895
2019-01-04 16:08:12 +01:00
Joao Moreno 133e999097 💄 2019-01-04 15:16:45 +01:00
Joao Moreno cf107f3c3d Merge commit 'refs/pull/59078/head' of github.com:Microsoft/vscode into pr/59078 2019-01-04 15:02:46 +01:00
Joao Moreno 3a2c97c5d6 refactor autostash behaviour 2019-01-04 14:58:44 +01:00
Joao Moreno 5c8c42e886 remove unnecessary operation run 2019-01-04 14:41:45 +01:00
Joao Moreno 9b88d30734 Merge commit 'refs/pull/59849/head' of github.com:Microsoft/vscode into pr/59849 2019-01-04 14:34:28 +01:00
Benjamin Pasero 83232ef060 fonts - remove HelveticaNeue-Light from list 2019-01-04 10:11:04 +01:00
Martin Aeschlimann 7c908a936d add .vscodeignore syntax highlighting. FIxes #64960 2019-01-04 09:53:47 +01:00
Pine Wu bae6c84d46 Update service for #66002 2019-01-03 21:14:50 -08:00
Matt Bierner b4964bcf35 Replace some common index based for loops with for-of loops
Replaces many loops of the form:

```js
for (let i = 0; i < elements.length; ++i) {
    const i = elements[i];
   ...
}
```

with:

```js
for (const element of elements) {
    ...
}
```

Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
Matt Bierner 5cc00861fc Enable no-var-keyword tslint rule 2019-01-03 18:02:48 -08:00
Matt Bierner 3f8579f96a Avoid some common type casts
Casts can hide some type errors
2019-01-03 17:44:14 -08:00
Rob Lourens fb0d022d8a Fix PHP colorization test from #65649 2019-01-03 16:46:05 -08:00
Rob Lourens 509d693aa7 Fix #65649 - fix injection patching in update-grammar.js 2019-01-03 16:24:11 -08:00
Rob Lourens ef2547d547 replace void 0 with undefined 2019-01-03 11:20:19 -08:00
Alex Ross 154ba178c2 Update make grammar 2019-01-03 16:08:09 +01:00
Joao Moreno fe6e62674c remove 100 change limit 2019-01-03 09:20:20 +01:00
Matt Bierner 5ed55a8606 Don't treat dom properties as special for syntax highlighting
See https://github.com/Microsoft/TypeScript-TmLanguage/issues/691

Assuming that properties named `label` or `name` are dom properties is incorrect and causes a lot of false positives. This results in weirdly inconsistent colorization
2019-01-02 17:33:50 -08:00
Matt Bierner 5631529791 Update js/ts grammar 2019-01-02 17:22:27 -08:00
Matt Bierner 02ba1e9fb7 Pick up TS 3.3 insiders 2019-01-02 17:04:09 -08:00
Matt Bierner 3e7bb120c7 Use label text indexes to mark active paramter for js/ts
Fixes #65513
2019-01-02 14:53:21 -08:00
Matt Bierner cba84fba5e Take progress within element into account for markdown scroll sync
Fixes #65504
2019-01-02 14:36:16 -08:00
Matt Bierner 44b5a77632 Use TS's document highlight API instead of references api to get highlights
Fixes #65921
Fixes #65051
2019-01-02 11:56:39 -08:00
Matt Bierner 7086fb76ec Take document as parameter instead document components 2019-01-02 11:56:39 -08:00
Rob Lourens d34a1244b2 Add periods to setting descriptions 2018-12-31 15:52:14 -08:00
Matt Bierner 494e5e8509 Fix bug for completing function name parameters if function name contained special snippet syntax 2018-12-23 22:22:38 -06:00
davidwu226 2e877e280a Fix invalid JSON. (#65447) 2018-12-23 20:19:29 -08:00
Pine Wu b0cf047d8e Fix #62325 2018-12-21 11:36:19 -08:00
Alex Ross 1386fba3be Don't show the output panel in jake and grunt extensions
Fixes #64900
2018-12-20 14:54:55 +01:00
Joao Moreno 6de43eec8d Merge commit 'refs/pull/59163/head' of github.com:Microsoft/vscode into pr/59163 2018-12-20 12:51:58 +01:00
Joao Moreno 6d31c16989 💄 2018-12-20 12:37:04 +01:00
Joao Moreno cdb8a86fd0 git ignore: save after apply edit 2018-12-20 11:33:01 +01:00
Joao Moreno 349b0d454e fix git.openDiffOnClick scope 2018-12-20 10:17:26 +01:00
Matt Bierner 23508cf1a0 Update markdown dependencies 2018-12-19 13:40:54 -08:00
Matt Bierner aa301e3435 Update js/ts grammar 2018-12-19 13:40:54 -08:00
Prabhanjan S Koushik 55ebf93842 fix-65287 Added webviewManager.refresh() (#65396) 2018-12-19 11:05:57 -08:00
Pine Wu e489f935a2 Ensure no spaces when working on html LS 2018-12-19 09:14:49 -08:00
João Moreno 034ff33eb4
Merge pull request #64305 from Microsoft/misolori/open-change-icons
Update "Open changes" icons to better reflect diff changes
2018-12-19 08:43:09 +01:00