Matt Bierner
8c5e805d3a
Fix spelling
2021-01-28 12:01:38 -08:00
Eric Amodio
e6d5a20944
Fixes `getBranch` when name is fully qualified
2021-01-27 14:51:15 -05:00
Martin Aeschlimann
4bd2d367e7
Remote smoketest timeout ( fixes #115159 )
2021-01-27 15:52:25 +01:00
João Moreno
7b0cfdd04a
fix git askpass
2021-01-27 09:45:19 +01:00
Matt Bierner
a56bc0c671
Don't write preferredLocation into workspace settings for find file references
2021-01-26 16:17:14 -08:00
Matt Bierner
e5c4f426fe
Fix setting decription and remove unused setting
2021-01-26 16:03:36 -08:00
rebornix
d5bdb0efb2
fix #115011 .
2021-01-26 08:39:30 -08:00
João Moreno
9e07bfd594
related to #115037
2021-01-26 14:12:50 +01:00
João Moreno
75ff8b1131
fixes #115037
2021-01-26 14:10:49 +01:00
João Moreno
1f1ed78f7d
Use ;; instead of ; for line comments ( #115036 )
...
LISPs in general and Clojure in particular by convention uses double semicolons
for regular line comments. Single semicolons are reserved for trailing comments
at the end of a line, and are treated (aligned) differently in some editors,
notably Emacs.
Co-authored-by: Arne Brasseur <arne@arnebrasseur.net>
2021-01-26 05:01:49 -08:00
rebornix
ae8bd3216f
💂 tests for selecting kernel.
2021-01-25 15:58:57 -08:00
Eric Amodio
2f6c928b20
Fixes `getBranch` issue with remote branches
...
Improves perf by reducing git calls from 3 to 1
Before this change, remote branches were returned as local ones (RefType.Head), now they will be RefType.RemoteHead
2021-01-25 18:50:31 -05:00
Wahid Shafique
748b2e5a85
Remove `#` from typescript deprecation warnings ( #114787 )
...
Remove tags to match standard deprecation warnings (example dceba9ebb7/extensions/html-language-features/package.nls.json (L32)
)
2021-01-25 15:37:58 -08:00
Martin Aeschlimann
68b7e79867
fix test-product icon
2021-01-25 21:54:34 +01:00
Oleg Demchenko
582ea371c2
[microsoft-authentication] Extend authentication session to return id tokens ( #114675 )
2021-01-25 12:12:05 -08:00
Alexandru Dima
5a3fedf0c4
Merge pull request #114628 from microsoft/alex/python-language-configuration
...
Move `onEnterRules` to `language-configuration.json`
2021-01-25 20:50:40 +01:00
Martin Aeschlimann
62093ff022
[html/json/css] update services & dependencies
2021-01-25 20:17:54 +01:00
Alexandru Dima
d877e86bdd
Merge branch 'master' into alex/python-language-configuration
2021-01-25 20:11:25 +01:00
João Moreno
3b03189afa
Restore extensions in core ( #114921 )
...
* bring back grammar extensions
* fix hygiene
* Revert "pull themes from the marketplace"
This reverts commit 0738f76dac
.
2021-01-25 17:07:56 +01:00
David Sanders
7b317afd93
Fix starting scroll for URIs with fragment ( #111126 )
2021-01-22 17:41:25 -08:00
Connor Peet
add5b32d95
testing: initial implementation of test decorations
2021-01-22 12:58:45 -08:00
Martin Aeschlimann
5809e9eb03
testresolver: support server extensions
2021-01-22 15:49:14 +01:00
Alex Ross
e5dd4b6e4b
Add mock support for public ports to test resolver
2021-01-22 12:09:26 +01:00
Jackson Kearl
7e55fa0c54
Search In Open Editors ( #107756 )
...
* Initial work on "search in open editors"
* Update wording
* Update messaging for open editors config
* Add command to open all git changes (in association with searching in all open editors)
* Add strict parsing mode to search using providers for specific files
* Clean
* Remove log
* Naming
* Transfer open editors config to search editor
* Pass in more places
* Add some testing
2021-01-21 16:59:07 -08:00
Matt Bierner
542de8e009
Move schemes to opener metadata
2021-01-21 14:41:25 -08:00
Matt Bierner
885585c7f8
Remove test math formula from readme
2021-01-21 14:41:25 -08:00
Alex Ross
3ec9067200
Simplify local port logic in test resolver + OS check
2021-01-21 16:53:57 +01:00
Alex Ross
e8f6c27381
Use random port if privileged in test resolver
2021-01-21 16:36:30 +01:00
Alex Ross
fcccc85ff9
Add more to test resolver tunnel factory and fix port filtering
2021-01-21 16:23:55 +01:00
Alex Ross
d8831220ff
Update showCandidatePort for test resolver
2021-01-21 15:06:55 +01:00
Martin Aeschlimann
b5f36a24b6
testresolver: start a test server
2021-01-21 14:04:08 +01:00
Martin Aeschlimann
0249c31a59
testResolve: more tunnelservice fixes
2021-01-21 12:14:35 +01:00
Alexandru Dima
c735c8b291
Merge branch 'master' into alex/python-language-configuration
2021-01-21 12:13:43 +01:00
Martin Aeschlimann
67bf6577b4
testResolver: fix for tunnel server
2021-01-21 12:09:24 +01:00
Martin Aeschlimann
15e58cea4d
test resolver: add tunnel server
2021-01-21 11:57:28 +01:00
Eric Amodio
6b241a6845
Closes #111210 - adds openRepository api
2021-01-21 01:06:48 -05:00
Eric Amodio
5bcd222075
Fixes checking for rebase against wrong branch
...
Refs: #1866
2021-01-21 00:29:16 -05:00
Rachel Macfarlane
93ae815ba1
Feedback on secrets API #112249
2021-01-20 09:24:48 -08:00
Florian Schwalm
cbbf2d0990
Correctly resolve mapped drive on Windows
...
fs.realpath.native in NodeJS uses the Win32 API function GetFinalPathNameByHandle() on Windows hosts,
therefore a given path must follow the guidelines for Win32 API file functions.
Drive letters on Windows need to end on a backslash according to the Win32 File Naming Conventions (https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file )
Omitting the backslash results in Windows treating the remaining path components as a relative path starting from the current directory on the specified disk
https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file#fully-qualified-vs-relative-paths
2021-01-20 11:58:37 -05:00
Alexandru Dima
ec1eda0d96
Rename `OnEnterRule.oneLineAboveText` to `previousLineText` after API call feedback ( #58440 )
2021-01-20 17:31:04 +01:00
Alexandru Dima
2d5f7fd072
Move `onEnterRules` to `language-configuration.json`
2021-01-20 12:20:27 +01:00
Jackson Kearl
b50bd5d094
Close #114342
2021-01-19 19:45:15 -08:00
Henning Dieterichs
1f8643ef76
Refresh Images In Markdown Preview On Change ( #114083 )
...
* Refresh Images In Markdown Preview On Change (implements #65258 ).
* Fixes tests.
* Implements etags.
* Adds tests for urlToUri.
* Updates doc comment.
2021-01-19 18:01:21 -08:00
Jean Pierre
7f4d67c94c
Fix #110812 ( #114553 )
2021-01-19 14:21:02 -08:00
Martin Aeschlimann
ff393a3349
add open tunnels to test resolver
2021-01-19 11:45:55 +01:00
João Moreno
af2bcd4d46
bring back vscode-colorize-tests
2021-01-19 11:39:39 +01:00
Jonathan Mataloni
9441f1c645
Add support for npm scripts with a space ( #113840 )
...
This PR fixes #113750
2021-01-18 12:02:53 +01:00
Matt Bierner
0faf155028
Disable on enter test
...
This one seems to sometimes fail in ci on windows
2021-01-15 16:07:08 -08:00
Matt Bierner
48b726e39e
Fix regex
...
Star was mistakenly removed in last commit
2021-01-15 14:35:55 -08:00
Matt Bierner
5f6acfb68e
Move jsdoc completion tests to smoke tests
2021-01-15 13:47:58 -08:00