Martin Aeschlimann
1476c4e20b
[html] update to TextDocument and switch to incremental
2019-11-05 22:19:43 +01:00
pi1024e
77df637ab4
Removed style chacnges
2019-07-23 13:52:12 -04:00
pi1024e
10b924d2d3
Fixed whitespace related comments to be a complete sentence.
2019-07-23 13:52:12 -04:00
pi1024e
85d4895587
Refactored code to make "WhiteSpace" into "Whitespace"
2019-07-23 13:52:11 -04:00
Martin Aeschlimann
a84c30184c
[css/json/html] update lsp, services & dependencies
2019-06-13 10:27:45 +02:00
Pine Wu
27819b3902
Path completion for <area href=""> and <input src="">. Fix #74129
2019-05-22 09:25:28 -07: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
92a9a07213
Remove duplicate blank lines at the start of some extension src files
2018-10-02 16:28:19 -07:00
Matt Bierner
ff957050db
Remove use strict in extensions (part 2)
...
We compile using alwaysStrict so this directive is not needed
2018-10-02 16:23:27 -07:00
Matt Bierner
9116ec29ab
Use shared config for html server
2018-10-02 10:24:20 -07:00
Pine Wu
39fbbf02c4
Do not suggest dot files in html/css. Fix #46780
2018-09-18 11:38:09 -07:00
Martin Aeschlimann
1047f48993
strict warnings in pathCompletion
2018-08-27 12:13:15 +02:00
Pine Wu
c17fb0ebff
temp
2018-04-11 14:58:05 -07:00
Martin Aeschlimann
11f5d549db
[css] path completion sometimes only works for one folder level. Fixes #46722
2018-03-29 15:20:39 +02:00
Martin Aeschlimann
d9d762d1ce
[css] .asar file breaks CSS path completion. Fixes #46638
2018-03-28 21:41:21 +02:00
Martin Aeschlimann
3abd0f50e2
[html] move path completion inside html mode
2018-03-22 11:09:33 +01:00
Pine Wu
a5cc44ef57
Fix #44814
2018-03-21 16:54:08 -07:00
Pine Wu
84e791ea5b
Remove unused function and do not export by default
2018-03-21 16:54:08 -07:00
Pine Wu
4892298743
Refactor path completion
2018-03-21 16:54:08 -07:00
Martin Aeschlimann
086a751a06
[html] split extension (for #45900 )
2018-03-17 16:32:55 +01:00