Commit Graph

62350 Commits

Author SHA1 Message Date
Martin Aeschlimann
4b800f014d fix missing IThemeService in tests 2020-03-15 23:21:21 +01:00
Rob Lourens
556eb1ee3d Fix "replace all" breaking after opening search editor
Fix #92443
2020-03-15 10:49:15 -07:00
Martin Aeschlimann
57436a5e65 [theme] store themeSemanticHighlighting and update after load 2020-03-15 17:05:53 +01:00
Sandeep Somavarapu
839383dc1d remove settings sync service 2020-03-14 02:18:41 +01:00
Matt Bierner
041a5907b1 Add experimental moveCustomTextEditor hook
For #77131

Adds a hook that lets extensions preserve the webview for a custom editor across a rename
2020-03-13 17:49:52 -07:00
Matt Bierner
c81074fb70 Fix webview handlers potentially not being hooked up after move 2020-03-13 17:37:11 -07:00
Matt Bierner
57278dbe4d Hook up isReadonly for custom editor input 2020-03-13 17:37:11 -07:00
Matt Bierner
4493125aaf Working on handling custom editor move
Delegate to custom editor input on move. Eventually this will be hooked up to go back to extensions
2020-03-13 17:37:11 -07:00
Matt Bierner
cd620d7ea1 Note how exceptions from code action commands are handled 2020-03-13 17:37:11 -07:00
Jackson Kearl
ce55064873 Revert to old bot for find-duplicates. 2020-03-13 15:11:07 -07:00
Sandeep Somavarapu
48fa5b2a39 Fix #92516 2020-03-13 22:30:06 +01:00
Martin Aeschlimann
db2f1d929c Merge branch 'aeshli/shfixes' 2020-03-13 21:59:56 +01:00
Martin Aeschlimann
41a4adb47b [themes] opt-in to semanticHighlighting 2020-03-13 21:55:39 +01:00
Matt Bierner
075794da3c Update TS versions
Also replaces a weird use of `.bind` that was causing issues with the update. I've tried to refactor the code to preseve the existing behavior
2020-03-13 13:02:33 -07:00
Daniel Imms
398be37224 Remove .only 2020-03-13 12:28:25 -07:00
Sandeep Somavarapu
842a86d666 Fix #85619 2020-03-13 19:10:13 +01:00
Sandeep Somavarapu
fa282a8a1c fix #92261 2020-03-13 19:03:18 +01:00
Connor Peet
950ceb939b debug: update js-debug-nightly to "2020.3.1117" @ 2020-03-12T00:05:48.77Z 2020-03-13 10:47:26 -07:00
isidor
d32c22d3f2 callstack deemphasized separators should not be so high
#83986
2020-03-13 18:25:36 +01:00
Daniel Imms
8e6a41180b Merge pull request #92613 from microsoft/tyriar/link_handlers
Implement terminal link handler API
2020-03-13 08:40:53 -07:00
Daniel Imms
d59c618603 Add unit test for link handler
Ideally there would be an integration test as well but currently it's not
possible as there's no extension API to activate links within the terminal
2020-03-13 08:19:33 -07:00
Sandeep Somavarapu
8c4c01fb80 enable web extension only in web 2020-03-13 16:17:44 +01:00
Daniel Imms
bff2692f9e Remove PromiseLike from TerminalLinkHandler
Part of #92646
2020-03-13 07:49:06 -07:00
Daniel Imms
048e74c7dc Don't register emitters in this PR 2020-03-13 07:30:28 -07:00
Daniel Imms
34dac6556a Move prop to top of TerminalService 2020-03-13 07:14:09 -07:00
Daniel Imms
4395ef43d2 Extend DisposableStore 2020-03-13 07:11:35 -07:00
Daniel Imms
9425f1224d Move prop to top of class 2020-03-13 07:07:51 -07:00
Daniel Imms
a087c17b59 Remove logs 2020-03-13 07:05:53 -07:00
Daniel Imms
361f38ecf8 Merge branch 'master' into tyriar/link_handlers 2020-03-13 06:49:01 -07:00
Benjamin Pasero
f7118fd368 [web] Welcome views: links trigger unload (fix #92633) (#92635) 2020-03-13 14:34:25 +01:00
Benjamin Pasero
633e228dc7 quick access - first cut goto symbols 2020-03-13 13:45:42 +01:00
Christof Marti
14b5afc0ec Add --use-host-proxy (microsoft/vscode-remote-release#2487) 2020-03-13 12:42:58 +01:00
Martin Aeschlimann
bf8fb5f814 editor token inspect: resolve scopes like the sem highlight code 2020-03-13 12:16:54 +01:00
Martin Aeschlimann
3942438865 [css] update ls-service (for #92417) 2020-03-13 11:31:14 +01:00
isidor
e4cf6e1e48 Respect capabilities.supportsClipboardContext
fixes #69768
2020-03-13 10:52:53 +01:00
Benjamin Pasero
230cb19078 web - log info when unload is triggered 2020-03-13 10:35:56 +01:00
Benjamin Pasero
6ee37a6002 web - move extension code into web-playground folder 2020-03-13 08:59:31 +01:00
Benjamin Pasero
b36f377be6 compare untitled files: title (fix #92556) 2020-03-13 08:45:06 +01:00
Matt Bierner
955ff025c3 Don't highlight URI diagram comment as javascript 2020-03-12 23:47:36 -07:00
Matt Bierner
b75adf3720 Mark fields readonly 2020-03-12 23:02:21 -07:00
Matt Bierner
89d3b684a2 Use unique resource for custom editor working copy
For #92037

Ensures that we can open multiple types of custom editors are opened for the same resource, and that our dirty tracking works as expected in that case (by only marking editors of a given type dirty)
2020-03-12 22:15:21 -07:00
Matt Bierner
fb5dc0083b Add onCustomEditor to documented activation events 2020-03-12 21:17:45 -07:00
Matt Bierner
8383eec1b6 Extract undo/redo 2020-03-12 20:51:19 -07:00
Matt Bierner
a79af6ef02 Make sure we localize the default label 2020-03-12 20:48:36 -07:00
Matt Bierner
efd7548df6 Extract sine types for custom editors
For #77131

Extracts a few inline types so that extensions can use them
2020-03-12 20:38:53 -07:00
Daniel Imms
b66d56602f Implement terminal link handler API
Part of #91606
2020-03-12 18:17:18 -07:00
Matt Bierner
9dae408dc3 Switch webview api back to use delegate model
For #77131

Going back the the delegate based model for a few reasons:

- It gives us a better approach to add additional API hooks in the future (such as for rename)

- In practive, the capabilities were almost always the same as the `userData` on the document. It is rather confusing to have both `userData` and the capabilities 'on' the document
2020-03-12 16:54:48 -07:00
Martin Aeschlimann
c65ea4300d update typescript-vscode-sh-plugin 2020-03-13 00:42:20 +01:00
Jackson Kearl
265457655c Add version request to feature request template 2020-03-12 16:01:45 -07:00
Jackson Kearl
713afe41f6 Adopt action-powered commands, needs-version-info, and copycat 2020-03-12 15:55:49 -07:00