Commit Graph

15184 Commits (bb1e72c7341d86856434b18f2c27f99dfce04941)

Author SHA1 Message Date
Johannes Rieken bb1e72c734 run tests in renderer 2017-02-16 14:25:17 +01:00
Johannes Rieken d5cd7e9e54 fix #20686 2017-02-16 09:34:23 +01:00
Joao Moreno 86e494c57e test: fix launch paths 2017-02-16 09:00:14 +01:00
João Moreno a26ca6c95b Merge pull request #17710 from mlewand/winShellHotkey
Hotkey for Windows shell context menu
2017-02-16 08:47:38 +01:00
Daniel Imms 496b804f8a Prime postinst for apt repo 2017-02-15 22:50:02 -08:00
Daniel Imms 2d074d85c7 Update distro 2017-02-15 22:11:28 -08:00
Daniel Imms ba9815c4f2 Update distro
This should bring in Linux repo package publishing
2017-02-15 22:06:08 -08:00
Christof Marti da9058d568 Open parent folder with `.vscode` when opening files from CLI or desktop (fixes #20671) 2017-02-15 21:11:10 -08:00
Rob Lourens c153d54d1c Only show search count if there are results 2017-02-15 19:31:43 -08:00
Rob Lourens 2f708827fa node-debug2@1.10 2017-02-15 19:28:34 -08:00
Matt Bierner 7a82ac3ff9 Small markdown code cleanup 2017-02-15 14:49:41 -08:00
Rob Lourens 5b6c98c4ee Tweak search result focus debounce time 2017-02-15 14:23:44 -08:00
Matt Bierner fe742d3800 Autofill for JSDocs (#20625)
* Add autofill for JSDocs

Adds prototype of autofill for jsdoc comments. For code like:

```js
    /**|
    function mul(x, y) {
        return x * y;
    }
```

When you press return, we will complete it to:

```js
    /**
     *
     * @param x
     * @param y
     */
    function mul(x, y) {
        return x * y;
    }
```

In Typescript and to:

```js
    /**
     *
     * @param {any} x
     * @param {any} y
     */
    function mul(x, y) {
        return x + y;
    }
```

In JavaScript

* Handle revert case better

* Disable on enter when suggestion is visible
2017-02-15 14:04:36 -08:00
Matt Bierner e0354d386a Add Status Bar Item for JSConfig/TSConfig (#20571)
Fixes #20356

Adds a status bar item that shows which jsconfig/tsconfig a ts or js file currently belongs to. This triggers the `typescript.goToProjectConfig` command when clicked, which either jumps to the config file or shows an alert about creating a configuration file
2017-02-15 13:26:32 -08:00
Rob Lourens 9a1523f8ec Fix F4/Shift+F4 label caps 2017-02-15 11:25:51 -08:00
Johannes Rieken a1b811b85b menu - use editor context if avialable, fallback to global 2017-02-15 19:48:52 +01:00
isidor ed0420e3bb configuration resolver service tests: use mock line number 2017-02-15 17:37:45 +01:00
Isidor Nikolic a33f2a234a Merge pull request #20660 from michelkaporin/lineNumber-configuration
Line number configuration fixes #12714
2017-02-15 17:30:51 +01:00
Martin Aeschlimann 003b2ebf38 [themes] intellisense on theme settings 2017-02-15 17:07:02 +01:00
Martin Aeschlimann 6f15c468d9 [perl] typo in grammar 2017-02-15 17:07:02 +01:00
Martin Aeschlimann de73b28025 [theme] store baseTheme in storage 2017-02-15 17:07:01 +01:00
Martin Aeschlimann acdb4e941a [perl] update grammar 2017-02-15 17:07:01 +01:00
Martin Aeschlimann 255ecfb084 themes as settings 2017-02-15 17:07:01 +01:00
Andre Weinand b7dc5cd88b add a clientID 'vscode' to the DAP InitializeRequest 2017-02-15 16:31:40 +01:00
Johannes Rieken a98afa69a8 menu - move custom label logic to where it is used 2017-02-15 16:29:46 +01:00
Johannes Rieken 542e4bf0bc menu - move command palette special into registry 2017-02-15 16:29:46 +01:00
Johannes Rieken 7eb690f2b0 debt - remove `getCommandActions` as there is now an explicit command palette menu 2017-02-15 16:29:46 +01:00
Johannes Rieken 69fdfa2fd8 debt - move IMenu closing to its service 2017-02-15 16:29:46 +01:00
isidor 5005924ee8 debug: color polish 2017-02-15 16:15:40 +01:00
Joao Moreno 3ab33cac75 fix list open 2017-02-15 16:06:09 +01:00
Joao Moreno e63560b254 list: refactor 2017-02-15 16:06:09 +01:00
Isidor Nikolic 5624625d1e Merge pull request #20590 from michelkaporin/master
Colour for column selection in debugging mode added to high contrast …
2017-02-15 16:00:11 +01:00
Michel Kaporin 98591f119c Updated test suite with test for the lineNumber config variable. 2017-02-15 15:59:05 +01:00
isidor a731d395bd debug: do not open deemphesized sources in editor
fixes #20622
2017-02-15 15:56:46 +01:00
Andre Weinand fce3d86e34 update debug protocol 2017-02-15 15:45:26 +01:00
Andre Weinand 9c49b8510c update node-debug (returning correct length in completionProposalRequest) 2017-02-15 15:26:15 +01:00
Andre Weinand 7ecce78edd update node-debug 2017-02-15 14:46:51 +01:00
Michel Kaporin e516d60171 Added lineNumber to common pre-defined variables for tasks.json/launch.json. 2017-02-15 12:58:30 +01:00
isidor 627562f125 debug: breakpoint decoration has no range, only use the margin decoration
fixes #20601
2017-02-15 12:52:02 +01:00
Johannes Rieken 08be8f251f show a message when no definition/implementation etc could be found 2017-02-15 12:04:11 +01:00
Joao Moreno d871d315c8 fixes #20344 2017-02-15 11:58:37 +01:00
isidor 5fea24a9ad Add right margin in the Exception badge in the call stack
fixes #20603
2017-02-15 11:35:28 +01:00
Sandeep Somavarapu f57d5dda5c Fix #20641 2017-02-15 11:29:34 +01:00
Michel Kaporin 7aa67af54d Reverted HC theme back to original solution with red outline for column selection. 2017-02-15 11:20:53 +01:00
Joao Moreno 175946ff27 fixes #20612 2017-02-15 11:16:48 +01:00
Daniel Imms f04798da0e Expose terminal link matcher on ITerminalInstance
Part of #18454
2017-02-14 19:29:50 -08:00
Daniel Imms ff7254c6d6 Simplify terminal cursor blink styles 2017-02-14 19:26:39 -08:00
Daniel Imms 9860dc4630 Only fire ITerminalInstance.onDisposed once per instance
Fixes #19026
2017-02-14 19:04:11 -08:00
Rob Lourens f0907a01f8 Fix #19993 -
peekLF and peekSingleByteChar apparently aren't inlined, hurting the perf in this very hot loop. The perf regression is partly from function calls, and partly from the function depending on a closure. It also seems like there might be more gains to be had if I refactor this file to not depend so heavily on closures and nested anonymous functions.
2017-02-14 17:46:12 -08:00
Matt Bierner 80a864ebc1 Fix markdown editor link possibly breaking 2017-02-14 17:12:37 -08:00