Commit Graph

12503 Commits

Author SHA1 Message Date
Joao Moreno
ca1deee166 git: give up on using the editor
fixes #20983
2017-02-21 11:55:27 +01:00
Benjamin Pasero
6595091690 fix ugly import 2017-02-21 11:50:37 +01:00
Benjamin Pasero
4ea410ef62 Merge pull request #20967 from dan-silver/remove-empty-function-param
Callback parameter for TestEditorService() is optional
2017-02-21 11:34:06 +01:00
Benjamin Pasero
6831b25c61 use command casing 2017-02-21 11:22:23 +01:00
Benjamin Pasero
66238c6036 Debug variable value double click seems broken (fixes #20604) 2017-02-21 11:19:31 +01:00
Sandeep Somavarapu
8957add5eb Fix #20748 2017-02-21 10:28:50 +01:00
João Moreno
37cd928dd2 Merge pull request #20966 from IFTTT/fix-monaco-editor-371
Remove dependency on window.event in ListView
2017-02-21 09:14:29 +01:00
Johannes Rieken
9be23e726a Merge pull request #19546 from Gama11/patch-1
Typo fix
2017-02-21 08:36:02 +01:00
Benjamin Pasero
25c5563834 Merge pull request #20938 from Microsoft/ben/16820
Hot Exit: Opens the same file twice in two separate windows
2017-02-21 07:44:17 +01:00
Daniel Imms
89877dd3cc Clean up terminal LANG variable 2017-02-20 21:34:57 -08:00
Benjamin Pasero
646133ce61 comments 2017-02-21 06:09:34 +01:00
Dan Silver
e63acb1c89 Callback param is optional, created in constructor if not passed in 2017-02-20 18:40:06 -08:00
Ryan Fitzgerald
580ee5da7f Remove dependency on window.event in ListView
Fixes Microsoft/monaco-editor#371.

The `event` property of Window is [nonstandard] and isn't supported by Firefox,
breaking some of ListView's event-handling behavior.

I checked for places where VSCode depends on `window.event` by removing it from
`lib.d.ts` and building from scratch; the references in ListView were the only
ones I found in `src/vs/base/browser`. There are also some references in
non-browser parts of the codebase, but I assume that's fine since they work in
Electron.

[nonstandard]: https://developer.mozilla.org/en-US/docs/Web/API/Window/event
2017-02-20 18:07:54 -08:00
Rob Lourens
82f11708de Fix #20920 - hide search results count if results go to 0 2017-02-20 16:12:33 -07:00
Daniel Imms
d09231afcd Merge pull request #20932 from matheusrocha89/encoding-problem
Terminal encoding problem related to issue #14586
2017-02-20 13:11:54 -08:00
Matheus Cruz Rocha
23578428bc Moving logic to inside the _getLangEnvVariable function 2017-02-20 17:53:13 -03:00
Johannes Rieken
7bbc7ab509 filter on word, only adjust overrideBefore on other textual content, #20764 2017-02-20 17:45:55 +01:00
isidor
a173ba35c3 debug: do not throw 'Canceled' errors in users face
fixes #20752
2017-02-20 16:53:07 +01:00
isidor
6d51e023a3 fix compile error 2017-02-20 16:47:47 +01:00
Benjamin Pasero
d679a17180 wip 2017-02-20 16:36:11 +01:00
isidor
5bf63901f4 debug: fix initialize state mess by going into initialize a tad later 2017-02-20 16:32:56 +01:00
isidor
9a9ffa061b debug: propagate error properly
fixes #20585
2017-02-20 16:32:31 +01:00
Matheus Cruz Rocha
4de9253b6c Changing the logic to other function since the first one could not be called if no locale passed to create terminal 2017-02-20 12:08:18 -03:00
Johannes Rieken
192db5f7d1 use user-facing language id for snippet completions, #20764 2017-02-20 15:48:36 +01:00
Johannes Rieken
4ab19b3614 make ISuggestSupport#triggerCharacters optional 2017-02-20 15:48:36 +01:00
Johannes Rieken
9a97cb1037 make SnippetRegistry a service, move things to workbench layer, preps #20764 2017-02-20 15:48:36 +01:00
Benjamin Pasero
2fbfb7b9ce fix some command palette sorting issues (#20928, #20888, #20553) 2017-02-20 15:23:51 +01:00
Matheus Cruz Rocha
04423d638f Merge branch 'master' into encoding-problem 2017-02-20 11:09:02 -03:00
Matheus Cruz Rocha
b2749784b8 Fixing special chars bug on terminal instance 2017-02-20 11:04:51 -03:00
Johannes Rieken
2b0cb53c43 debt - rename of insert snippet 2017-02-20 14:00:43 +01:00
Johannes Rieken
13fdda8f4a debt - move tabCompletion to workbench 2017-02-20 14:00:43 +01:00
Alex Dima
8a93c778da Rename editor.highlightMatchingBrackets to editor.matchBrackets 2017-02-20 11:33:16 +01:00
Benjamin Pasero
46c9a3cd1f Allow to pin an editor when saving explicitly (fixes #20466) 2017-02-20 11:28:35 +01:00
Alex Dima
2547faa2d2 Fix compilation issue from PR #19978 2017-02-20 11:25:36 +01:00
Alexandru Dima
175c91b551 Merge pull request #19978 from chirag64/matching-brackets-highlight
Fixes #16424 - Added option to toggle matching brackets highlighter
2017-02-20 11:24:21 +01:00
Benjamin Pasero
5fb4b1d649 nls comments 2017-02-20 11:14:45 +01:00
Johannes Rieken
ba6f87b02f wait 1min for ext host startup, #20168 2017-02-20 11:13:48 +01:00
Benjamin Pasero
a5b8c44a13 Merge pull request #19537 from Microsoft/tyriar_16509
Perform hot exit backup/discard operations in a queue
2017-02-20 13:48:45 +04:00
Daniel Imms
812c63a28d Dispose queue before deleting it 2017-02-20 01:47:41 -08:00
Benjamin Pasero
138d02013a fix #20497 2017-02-20 10:44:19 +01:00
Daniel Imms
039d62d851 Delete queue when finished, add comment to ioOperationQueues 2017-02-20 01:33:31 -08:00
Daniel Imms
3b06d8f7d8 Merge remote-tracking branch 'origin/master' into tyriar_16509 2017-02-20 01:29:24 -08:00
Benjamin Pasero
1abe3f255a fix #20647 2017-02-20 10:27:50 +01:00
Daniel Imms
8f40d7d200 Fix terminal test warnings
Fixes #20912
2017-02-20 01:25:44 -08:00
Benjamin Pasero
bfe1bc3957 💄 2017-02-20 10:05:45 +01:00
Alexandru Dima
ce558b7e8d Merge pull request #15564 from kaiwood/expand-line-selection
Include newline when expanding line selection
2017-02-20 10:00:18 +01:00
Alex Dima
6955e1fafd Merge remote-tracking branch 'origin/master' 2017-02-20 09:45:51 +01:00
Alex Dima
6020b8160e Merge pull request #14237 from Swiiip/Swiiip/add-new-cursors-styles 2017-02-20 09:43:36 +01:00
Benjamin Pasero
9ee5d5b5a1 Merge pull request #20149 from hun1ahpu/identicalFilepathFix
Handle root, network path or disk drive letter
2017-02-20 12:37:08 +04:00
Martin Aeschlimann
03b1459ec1 Theme: theme change no longer applied to settings. Fixes #20877 2017-02-20 09:38:28 +01:00