Issue id
stringlengths
1
6
Summary
stringlengths
1
277
Created
stringdate
2015-11-13 16:34:23
2024-07-25 14:34:59
Resolved
stringlengths
0
25
Description
stringlengths
1
3.82k
Resolution
stringclasses
4 values
Description_all
stringlengths
3
3.9k
token_count
int16
6
1k
Duplicates
listlengths
0
7
Cluster
stringclasses
218 values
Num_duplicates
stringclasses
6 values
Has_duplicates
stringclasses
2 values
3310
Action buttons are not announced in Explorer section title bar
2016-02-23 11:47:04+00:00
2016-03-01 12:04:51+00:00
Screen reader support turned on and using NVDA. When focus is on the explorer section title bar (e.g., the title bar showing the name of the open folder) I do not hear the actions being announced as I tab through them. E.g., these actions aren't announced ![unannounced](https://cloud.githubusercontent.com/assets/1704...
completed
Action buttons are not announced in Explorer section title bar Screen reader support turned on and using NVDA. When focus is on the explorer section title bar (e.g., the title bar showing the name of the open folder) I do not hear the actions being announced as I tab through them. E.g., these actions aren't announced ...
136
[]
0
False
3309
[c++] wrong syntax highlighting results when using decltype and '::'-specfied names in templates
2016-02-23 11:46:26+00:00
2017-02-23 21:20:09+00:00
I am using currently the latest VSCode version(0.10.8) with 'Dark+ (default dark)' color scheme and the piece of C++ code in the picture below produces wrong syntax highlighting results for following class/struct declarations/definations and endif macros(define, include, if and ifdef macros are not affected though). ...
completed
[c++] wrong syntax highlighting results when using decltype and '::'-specfied names in templates I am using currently the latest VSCode version(0.10.8) with 'Dark+ (default dark)' color scheme and the piece of C++ code in the picture below produces wrong syntax highlighting results for following class/struct declaratio...
196
[]
0
False
3308
Output should not respect editor.rulers
2016-02-23 11:40:36+00:00
2016-02-25 19:20:40+00:00
#3233 - Enable `editor.rulers` - Open output, notice that the editor rulers are visible - IMHO output should not respect the `editor.rulers`, as the output is readonly and rulers are mostly used when editing a document - I could also argue that the left hand side of the diff view should not show rulers ![screen ...
completed
Output should not respect editor.rulers #3233 - Enable `editor.rulers` - Open output, notice that the editor rulers are visible - IMHO output should not respect the `editor.rulers`, as the output is readonly and rulers are mostly used when editing a document - I could also argue that the left hand side of the diff ...
146
[]
0
False
3307
[folding] Fold-All breaks folding for a large file and "editor.wrappingColumn" to 0
2016-02-23 11:37:01+00:00
2016-02-26 13:52:16+00:00
On testing #2994: - enable automatic line wrapping by setting "editor.wrappingColumn" to 0 - git clone https://github.com/Microsoft/vscode-node-debug - open vscode-node-debug with VS Code - open `src/node/nodeDebug.ts` - do a "Fold All" Observe: the '+' icons appear but the corresponding regions are not folded....
completed
[folding] Fold-All breaks folding for a large file and "editor.wrappingColumn" to 0 On testing #2994: - enable automatic line wrapping by setting "editor.wrappingColumn" to 0 - git clone https://github.com/Microsoft/vscode-node-debug - open vscode-node-debug with VS Code - open `src/node/nodeDebug.ts` - do a "Fold...
205
[]
0
False
3306
If we generate a non empty tasks.json it should not trigger intelisense
2016-02-23 11:24:06+00:00
2016-03-01 10:50:20+00:00
#3159 1. vscode workspace, delete `tasks.json` 2. command > configure tasks runner 3. a non empty `tasks.json` gets generated and we still trigger intelli-sense in some weird location 4. I would expect intelli-sense is not triggered in this scenario
completed
If we generate a non empty tasks.json it should not trigger intelisense #3159 1. vscode workspace, delete `tasks.json` 2. command > configure tasks runner 3. a non empty `tasks.json` gets generated and we still trigger intelli-sense in some weird location 4. I would expect intelli-sense is not triggered in this sce...
86
[]
0
False
3305
I find it weird that the generated tasks.json has errors
2016-02-23 11:21:35+00:00
2016-03-01 10:41:18+00:00
#3159 - Have a workspace with no `tasks.json` and trigger the command `Configure tasks runner` - A `tasks.json` gets generated with a `ts` content so we could get the correct snippets in the intelli-sense - I find it weird that we generate an erroneous `tasks.json` just so we could filter on the right snippets. Coul...
completed
I find it weird that the generated tasks.json has errors #3159 - Have a workspace with no `tasks.json` and trigger the command `Configure tasks runner` - A `tasks.json` gets generated with a `ts` content so we could get the correct snippets in the intelli-sense - I find it weird that we generate an erroneous `tasks....
141
[]
0
False
3304
Configure task runner should only open output if autodetection fails or provides output.
2016-02-23 11:21:03+00:00
2016-03-17 15:01:51+00:00
#3159 Configure task runner command reveals task output, it should not since there is no new output.
completed
Configure task runner should only open output if autodetection fails or provides output. #3159 Configure task runner command reveals task output, it should not since there is no new output.
47
[]
0
False
3303
Empty line and overlapping in suggest box
2016-02-23 11:12:00+00:00
2016-02-23 11:16:15+00:00
1. Trigger intelli-sense inside an empty `tasks.json` 2. Press up key to get to the bottom element, notice an empty suggest element at the top of `promptOnClose` 3. Sometimes two elements overlap when you go up / down ![screen shot 2016-02-23 at 12 08 41](https://cloud.githubusercontent.com/assets/1926584/1324973...
completed
Empty line and overlapping in suggest box 1. Trigger intelli-sense inside an empty `tasks.json` 2. Press up key to get to the bottom element, notice an empty suggest element at the top of `promptOnClose` 3. Sometimes two elements overlap when you go up / down ![screen shot 2016-02-23 at 12 08 41](https://cloud.gi...
190
[]
0
False
3302
[debug] Hover modifies state on getters with side effects
2016-02-23 11:11:02+00:00
2016-02-24 20:44:20+00:00
On testing #3245 ``` javascript var A = (function () { function A() { this.count = 9; } Object.defineProperty(A.prototype, "foo", { get: function () { return this.count++; }, enumerable: true, configurable: true }); A.prototype.getCu...
completed
[debug] Hover modifies state on getters with side effects On testing #3245 ``` javascript var A = (function () { function A() { this.count = 9; } Object.defineProperty(A.prototype, "foo", { get: function () { return this.count++; }, enumerable: true, ...
167
[]
0
False
3299
Folding icons are too big and the grey frame looks uneven/blurry
2016-02-23 11:05:05+00:00
2016-02-24 08:52:17+00:00
On testing #2994 ![2016-02-23 12-01-26](https://cloud.githubusercontent.com/assets/1898161/13249580/668cb700-da25-11e5-8bd2-f3af7097b341.png) The four lines of the icon frame look uneven/blurry. Why aren't we using the same triangles as in the navigator? The '+' and '-' icons look a bit out of place.
completed
Folding icons are too big and the grey frame looks uneven/blurry On testing #2994 ![2016-02-23 12-01-26](https://cloud.githubusercontent.com/assets/1898161/13249580/668cb700-da25-11e5-8bd2-f3af7097b341.png) The four lines of the icon frame look uneven/blurry. Why aren't we using the same triangles as in the na...
128
[]
0
False
3298
Convert Indentation actions don't update status bar
2016-02-23 10:58:41+00:00
2016-02-24 13:52:33+00:00
Testing #3234 ![bug](https://cloud.githubusercontent.com/assets/22350/13249459/bd1b762a-da24-11e5-888f-b99ead2c6f87.gif)
completed
Convert Indentation actions don't update status bar Testing #3234 ![bug](https://cloud.githubusercontent.com/assets/22350/13249459/bd1b762a-da24-11e5-888f-b99ead2c6f87.gif)
72
[]
0
False
3297
Indentation actions need big polish
2016-02-23 10:52:45+00:00
2016-02-24 14:00:29+00:00
Testing #3234 I'm having trouble understanding how to use the indentation actions: - Indent using Spaces - Indent using Tabs They seem to change how the editor will insert indents from that point forward, without changing the indentation of the content already inside the editor. Not only can this produce mixed...
completed
Indentation actions need big polish Testing #3234 I'm having trouble understanding how to use the indentation actions: - Indent using Spaces - Indent using Tabs They seem to change how the editor will insert indents from that point forward, without changing the indentation of the content already inside the edi...
198
[]
0
False
3296
[folding] Folding icons should not operate on mouse-down
2016-02-23 10:48:49+00:00
2016-02-25 19:24:34+00:00
On testing #2994 I always hit the folding icons by accident and that collapses the code unexpectedly. To improve this I suggest to do the following: - make the folding icons only operate on mouse up. - detect the difference between a drag-operation (e.g. to select a range of text) and a fold/unfold. Only if the m...
completed
[folding] Folding icons should not operate on mouse-down On testing #2994 I always hit the folding icons by accident and that collapses the code unexpectedly. To improve this I suggest to do the following: - make the folding icons only operate on mouse up. - detect the difference between a drag-operation (e.g. to...
157
[]
0
False
3293
Can't set focus inside debug complex hover tooltip
2016-02-23 10:18:20+00:00
2016-03-09 14:53:49+00:00
With accessibility mode on and tab set to move focus, I can't seem to use the keyboard to navigate to or inside the tooltip that appears when hovering over a complex object in the debugger. Found while testing #3246
completed
Can't set focus inside debug complex hover tooltip With accessibility mode on and tab set to move focus, I can't seem to use the keyboard to navigate to or inside the tooltip that appears when hovering over a complex object in the debugger. Found while testing #3246
69
[]
0
False
3292
Debug console icon informs that there is output when there isn't
2016-02-23 10:13:37+00:00
2016-02-24 13:42:48+00:00
![bug](https://cloud.githubusercontent.com/assets/22350/13248416/68cbe1e6-da1e-11e5-9920-1607cb110702.gif)
completed
Debug console icon informs that there is output when there isn't ![bug](https://cloud.githubusercontent.com/assets/22350/13248416/68cbe1e6-da1e-11e5-9920-1607cb110702.gif)
68
[]
0
False
3291
High contrast: Diff view needs high contrast love
2016-02-23 10:12:50+00:00
2016-02-24 15:25:26+00:00
#3248 - High contrast theme, make some changes open diff view in Git - I think we should use more colors here to make it clearer to the user what lines were deleted / added ![screen shot 2016-02-23 at 11 11 27](https://cloud.githubusercontent.com/assets/1926584/13248393/4dddd984-da1e-11e5-98df-8303d463dbfe.png)
completed
High contrast: Diff view needs high contrast love #3248 - High contrast theme, make some changes open diff view in Git - I think we should use more colors here to make it clearer to the user what lines were deleted / added ![screen shot 2016-02-23 at 11 11 27](https://cloud.githubusercontent.com/assets/1926584/13...
108
[]
0
False
3290
Bad action label when having bad debug configuration
2016-02-23 10:11:24+00:00
2016-02-26 11:01:46+00:00
![image](https://cloud.githubusercontent.com/assets/22350/13248340/03c8ffa4-da1e-11e5-834c-f90f50789892.png) Shouldn't the action label be more like `Edit Configuration` instead of `launch.json`?
completed
Bad action label when having bad debug configuration ![image](https://cloud.githubusercontent.com/assets/22350/13248340/03c8ffa4-da1e-11e5-834c-f90f50789892.png) Shouldn't the action label be more like `Edit Configuration` instead of `launch.json`?
85
[]
0
False
3289
nls support for package.json does not work in all cases
2016-02-23 10:11:07+00:00
2020-11-02 11:09:20+00:00
On testing #3156: I've nls'ed the Mono Debug extension including the `displayName` and `description attributes. When publishing the extension to the marketplace, non-substituted strings show up in a few places: ![2016-02-19 19-00-31](https://cloud.githubusercontent.com/assets/1898161/13248302/cf39efd2-da1d-11e5-9...
completed
nls support for package.json does not work in all cases On testing #3156: I've nls'ed the Mono Debug extension including the `displayName` and `description attributes. When publishing the extension to the marketplace, non-substituted strings show up in a few places: ![2016-02-19 19-00-31](https://cloud.githubuser...
185
[]
0
False
3288
High contrast: find matches do not look high contrast friendly
2016-02-23 10:10:31+00:00
2016-02-24 06:25:12+00:00
#3248 I would expect the contrast to be better between the light orange and the black background ![screen shot 2016-02-23 at 11 09 15](https://cloud.githubusercontent.com/assets/1926584/13248325/ee91d408-da1d-11e5-9729-9ff045fa70d8.png)
completed
High contrast: find matches do not look high contrast friendly #3248 I would expect the contrast to be better between the light orange and the black background ![screen shot 2016-02-23 at 11 09 15](https://cloud.githubusercontent.com/assets/1926584/13248325/ee91d408-da1d-11e5-9729-9ff045fa70d8.png)
92
[]
0
False
3285
Make Ctrl+M a global action and not an editor action
2016-02-23 10:03:53+00:00
2016-07-07 12:17:20+00:00
I turned tab to move focus on. I tabbed into the git viewlet, then selected a file with changes. I pressed enter. The diff editor opened up to show the changes. I pressed tab a few times and watched focus move through the editor actions. When focus shifted to the editor, tab inserted a tab in the editor and I notice...
completed
Make Ctrl+M a global action and not an editor action I turned tab to move focus on. I tabbed into the git viewlet, then selected a file with changes. I pressed enter. The diff editor opened up to show the changes. I pressed tab a few times and watched focus move through the editor actions. When focus shifted to the ...
165
[]
0
False
3284
Show Debug Console icon is broken in High Contrast theme
2016-02-23 10:03:32+00:00
2016-02-23 10:06:59+00:00
![image](https://cloud.githubusercontent.com/assets/22350/13248141/1a891d2e-da1d-11e5-9847-d5f1f81eb186.png) ping @isidorn
completed
Show Debug Console icon is broken in High Contrast theme ![image](https://cloud.githubusercontent.com/assets/22350/13248141/1a891d2e-da1d-11e5-9847-d5f1f81eb186.png) ping @isidorn
73
[]
0
False
3282
Find references background is wrong in High Contrast theme
2016-02-23 10:01:54+00:00
2017-04-27 08:13:43+00:00
Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13248071/d0577480-da1c-11e5-88ce-4f61ee53f0c0.png) ping @jrieken
completed
Find references background is wrong in High Contrast theme Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13248071/d0577480-da1c-11e5-88ce-4f61ee53f0c0.png) ping @jrieken
72
[]
0
False
3280
High contrast: suggest box needs love <3
2016-02-23 10:00:16+00:00
2016-02-24 15:25:27+00:00
#3248 Suggest box is not high contrast friendly ![screen shot 2016-02-23 at 10 59 01](https://cloud.githubusercontent.com/assets/1926584/13248011/8601c64c-da1c-11e5-8e8b-df65e3f61b59.png)
completed
High contrast: suggest box needs love <3 #3248 Suggest box is not high contrast friendly ![screen shot 2016-02-23 at 10 59 01](https://cloud.githubusercontent.com/assets/1926584/13248011/8601c64c-da1c-11e5-8e8b-df65e3f61b59.png)
82
[]
0
False
3279
Mark occurrences don't show in high contrast theme
2016-02-23 09:59:12+00:00
2017-04-27 08:14:06+00:00
Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13247962/62565712-da1c-11e5-9f15-4eb325ddf6d1.png) Here's what it looks like in another theme: ![image](https://cloud.githubusercontent.com/assets/22350/13247981/69074e22-da1c-11e5-83d3-ad67ecc670b5.png)
completed
Mark occurrences don't show in high contrast theme Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13247962/62565712-da1c-11e5-9f15-4eb325ddf6d1.png) Here's what it looks like in another theme: ![image](https://cloud.githubusercontent.com/assets/22350/13247981/69074e22-da1c-11e5-83d3-ad...
126
[]
0
False
3278
[High contrast] Activity bar icons look blurry on hover
2016-02-23 09:56:53+00:00
2017-05-25 17:10:22+00:00
#3248 Hover over an activity bar icon - looks blurry imho ![screen shot 2016-02-23 at 10 55 44](https://cloud.githubusercontent.com/assets/1926584/13247901/15dfcada-da1c-11e5-976d-93a51cfa7994.png)
completed
[High contrast] Activity bar icons look blurry on hover #3248 Hover over an activity bar icon - looks blurry imho ![screen shot 2016-02-23 at 10 55 44](https://cloud.githubusercontent.com/assets/1926584/13247901/15dfcada-da1c-11e5-976d-93a51cfa7994.png)
90
[]
0
False
3277
Extension tips doesn't play well with the high contrast theme
2016-02-23 09:56:10+00:00
2016-02-23 19:00:44+00:00
Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13247891/064cde14-da1c-11e5-90df-323327f70c78.png) ping @jrieken
completed
Extension tips doesn't play well with the high contrast theme Testing #3248 ![image](https://cloud.githubusercontent.com/assets/22350/13247891/064cde14-da1c-11e5-90df-323327f70c78.png) ping @jrieken
73
[]
0
False
3276
High contrast: black text on white selection looks blury
2016-02-23 09:55:09+00:00
2016-03-10 16:37:56+00:00
#3248 Text looks blurry imho ![screen shot 2016-02-23 at 10 53 41](https://cloud.githubusercontent.com/assets/1926584/13247831/cbf2df2a-da1b-11e5-9a91-55579576f632.png) xx
completed
High contrast: black text on white selection looks blury #3248 Text looks blurry imho ![screen shot 2016-02-23 at 10 53 41](https://cloud.githubusercontent.com/assets/1926584/13247831/cbf2df2a-da1b-11e5-9a91-55579576f632.png) xx
82
[]
0
False
3275
[OS X] High contrast theme: weird blue line on top
2016-02-23 09:52:49+00:00
2016-03-03 22:11:05+00:00
#3248 Notice the weird blue line on top. What does it represent - since it is not focus ![screen shot 2016-02-23 at 10 50 39](https://cloud.githubusercontent.com/assets/1926584/13247738/5090d0c6-da1b-11e5-97e1-e1a7b64293e9.png)
completed
[OS X] High contrast theme: weird blue line on top #3248 Notice the weird blue line on top. What does it represent - since it is not focus ![screen shot 2016-02-23 at 10 50 39](https://cloud.githubusercontent.com/assets/1926584/13247738/5090d0c6-da1b-11e5-97e1-e1a7b64293e9.png)
97
[]
0
False
3273
Improve OLD INJECTION STYLE warning detection
2016-02-23 08:55:40+00:00
2016-02-23 09:34:21+00:00
``` using OLD INJECTION STYLE for VariablesHoverRenderer //Users/joao/Work/vscode/out/vs/workbench/services/thread/electron-browser/threadService.js:199 [Plugin Host] debugger listening on port 5870 //Users/joao/Work/vscode/out/vs/platform/instantiation/common/instantiationService.js:199 using OLD INJECTION STYLE fo...
completed
Improve OLD INJECTION STYLE warning detection ``` using OLD INJECTION STYLE for VariablesHoverRenderer //Users/joao/Work/vscode/out/vs/workbench/services/thread/electron-browser/threadService.js:199 [Plugin Host] debugger listening on port 5870 //Users/joao/Work/vscode/out/vs/platform/instantiation/common/instantiat...
209
[]
0
False
3272
Creating new folder and then scrolling up messes directory tree
2016-02-23 08:33:19+00:00
2016-02-24 17:12:53+00:00
Version 0.10.8 Steps to reproduce: 1. You shall have many folders so that scroll appears; 2. Click parent folder with right mouse button -> New Folder; 3. Don't do anything, just scroll up with mouse wheel; Directory tree starts to behave strangely when scrolling up, items mess up.
completed
Creating new folder and then scrolling up messes directory tree Version 0.10.8 Steps to reproduce: 1. You shall have many folders so that scroll appears; 2. Click parent folder with right mouse button -> New Folder; 3. Don't do anything, just scroll up with mouse wheel; Directory tree starts to behave strangel...
85
[]
0
False
3269
compile failed use typescript@1.8.2
2016-02-23 04:06:48+00:00
2016-02-23 09:49:29+00:00
I use `scripts\npm install` get typescript@1.8.2 node_modules\typescript. and then run `gulp watch` get ``` *** Error: D:/workSpace/vscode/vscode/src/vs/editor/browser/standalone/standalon eCodeEditor.ts(199,3): 'super' must be called before accessing 'this' in the con structor of a derived class. *** E...
completed
compile failed use typescript@1.8.2 I use `scripts\npm install` get typescript@1.8.2 node_modules\typescript. and then run `gulp watch` get ``` *** Error: D:/workSpace/vscode/vscode/src/vs/editor/browser/standalone/standalon eCodeEditor.ts(199,3): 'super' must be called before accessing 'this' in the con ...
330
[]
0
False
3265
Codelens: Contributed command 'editor.action.showReferences-no-args-wrapper-14' does not exist.
2016-02-23 01:28:52+00:00
2016-04-21 11:55:17+00:00
When clicking on a code lens link the following error is generated: `Contributed command 'editor.action.showReferences-no-args-wrapper-14' does not exist.` This happens when clicking on the code lens link during an update to the code lens item. This is just an example to show the error. ![animation](https:/...
completed
Codelens: Contributed command 'editor.action.showReferences-no-args-wrapper-14' does not exist. When clicking on a code lens link the following error is generated: `Contributed command 'editor.action.showReferences-no-args-wrapper-14' does not exist.` This happens when clicking on the code lens link during an upd...
197
[]
0
False
3261
[folding] Please do not call setHiddenAreas on each model change!
2016-02-22 20:14:29+00:00
2016-02-25 17:14:39+00:00
Just noticed some scrollLeft jumping around when editing near the end of lines that are scrolled. It jumps around because I reset the cached max line width on a view model flush event. It is really unexpected to get on each type a view model flush, almost the entire view is trashed away!. I noticed the folding per...
completed
[folding] Please do not call setHiddenAreas on each model change! Just noticed some scrollLeft jumping around when editing near the end of lines that are scrolled. It jumps around because I reset the cached max line width on a view model flush event. It is really unexpected to get on each type a view model flush, alm...
116
[]
0
False
3259
Detected indentation should take precedence over useSpaces preference
2016-02-22 19:19:47+00:00
2016-03-09 16:31:02+00:00
> @alexandrudima We're not bad at detecting indentation. We're bad at respecting it. > > Our `useSpaces` setting always takes preference, regardless of detection. That setting should only be respected when the detection is inconclusive (e.g. a blank file, a mixed indentation file etc.). Having it set to `true`, open...
completed
Detected indentation should take precedence over useSpaces preference > @alexandrudima We're not bad at detecting indentation. We're bad at respecting it. > > Our `useSpaces` setting always takes preference, regardless of detection. That setting should only be respected when the detection is inconclusive (e.g. a bla...
124
[]
0
False
3257
NPE when opening diff editor
2016-02-22 17:00:55+00:00
2016-02-22 22:22:04+00:00
``` e.getControl(...).getIndentationOptions is not a function: TypeError: e.getControl(...).getIndentationOptions is not a function at EditorStatus.onIndentationChange (file:///C:/Alex/src/vscode/out/vs/workbench/browser/parts/editor/editorStatus.js:345:46) at Array.<anonymous> (file:///C:/Alex/src/vscode/ou...
completed
NPE when opening diff editor ``` e.getControl(...).getIndentationOptions is not a function: TypeError: e.getControl(...).getIndentationOptions is not a function at EditorStatus.onIndentationChange (file:///C:/Alex/src/vscode/out/vs/workbench/browser/parts/editor/editorStatus.js:345:46) at Array.<anonymous> (...
550
[]
0
False
3255
Converting indentation to tabs does not work for this file
2016-02-22 15:39:35+00:00
2016-02-22 15:55:11+00:00
Might need to view source on the comment to be able to copy-paste the spaces. ``` javascript var addOne = (x) => { return x + 1; } if (a!==b) { } window.addEventListener ``` Before: ![image](https://cloud.githubusercontent.com/assets/5047891/13222975/c3fa1250-d982-11e5-88a5-b7927d61d3ae.png) ...
completed
Converting indentation to tabs does not work for this file Might need to view source on the comment to be able to copy-paste the spaces. ``` javascript var addOne = (x) => { return x + 1; } if (a!==b) { } window.addEventListener ``` Before: ![image](https://cloud.githubusercontent.com/assets/504...
196
[]
0
False
3254
Git conflict decorations do not clean themselves
2016-02-22 15:36:02+00:00
2016-02-22 15:39:31+00:00
- have a git conflict - click around if the line conflict decorations don't show up - delete the conflicting lines - undo - Observe: now the conflict decorations never disappear without a Reload window or a new model instantiation. ![git-conflict-decorations](https://cloud.githubusercontent.com/assets/5047891/13...
completed
Git conflict decorations do not clean themselves - have a git conflict - click around if the line conflict decorations don't show up - delete the conflicting lines - undo - Observe: now the conflict decorations never disappear without a Reload window or a new model instantiation. ![git-conflict-decorations](http...
125
[]
0
False
3250
Move "Debug: Add to Watch" action to end of context menu
2016-02-22 12:34:04+00:00
2016-02-22 13:32:11+00:00
... since it is a bit too prominent.
completed
Move "Debug: Add to Watch" action to end of context menu ... since it is a bit too prominent.
27
[]
0
False
3232
Readme button is clipped in extension list
2016-02-22 09:31:41+00:00
2016-02-22 15:12:32+00:00
Might be an OS X issue: ![2016-02-19 19-20-09](https://cloud.githubusercontent.com/assets/1898161/13214350/5ea878ca-d94f-11e5-839d-c4550b477ad0.png)
completed
Readme button is clipped in extension list Might be an OS X issue: ![2016-02-19 19-20-09](https://cloud.githubusercontent.com/assets/1898161/13214350/5ea878ca-d94f-11e5-839d-c4550b477ad0.png)
76
[]
0
False
3216
Error: Cannot find module '/home/travis/build/obrejla/vscode-jsthis/out/test'
2016-02-21 17:22:37+00:00
2016-03-01 10:51:37+00:00
Hi, I have a problem running my extension code on Travis. The problem is, that my extension is NOT TypeScript project, so: 1. `- npm run vscode:prepublish` section in `.travis.yml`is not needed (when I have it there, it prints an error that typescript can not be found) and 2. because my code is not "prepublished"...
completed
Error: Cannot find module '/home/travis/build/obrejla/vscode-jsthis/out/test' Hi, I have a problem running my extension code on Travis. The problem is, that my extension is NOT TypeScript project, so: 1. `- npm run vscode:prepublish` section in `.travis.yml`is not needed (when I have it there, it prints an error t...
351
[]
0
False
3211
[folding] Fold All has no effect
2016-02-21 12:39:03+00:00
2016-02-22 15:24:52+00:00
- open vscode.d.ts - run command: Fold All -> no effect on the folding structure of the file
completed
[folding] Fold All has no effect - open vscode.d.ts - run command: Fold All -> no effect on the folding structure of the file
39
[]
0
False
3204
[json] project.json intellisense broken due to server change
2016-02-21 00:16:15+00:00
2016-03-03 15:09:32+00:00
Trying to get packages from nuget. I'm not getting intellisense in project.json. In the JSON server output window I see a lot of this: `Request to the nuget repository failed: <?xml version="1.0" encoding="utf-8"?><m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><m:code /><m:message xm...
completed
[json] project.json intellisense broken due to server change Trying to get packages from nuget. I'm not getting intellisense in project.json. In the JSON server output window I see a lot of this: `Request to the nuget repository failed: <?xml version="1.0" encoding="utf-8"?><m:error xmlns:m="http://schemas.microsoft.c...
209
[]
0
False
3202
[jade] Incorrect syntax highlighting of comments
2016-02-20 20:41:08+00:00
2017-02-22 22:21:34+00:00
Hi, comments in '//' style only get syntax highlighting, if no empty line is above them. '<!-- ... -->' style comments don't work at all. Best regards, Josef
completed
[jade] Incorrect syntax highlighting of comments Hi, comments in '//' style only get syntax highlighting, if no empty line is above them. '<!-- ... -->' style comments don't work at all. Best regards, Josef
61
[]
0
False
3195
Enable Extension Tips by default
2016-02-20 13:02:16+00:00
2016-02-20 14:01:58+00:00
Extension tips are currently disabled by default. ``` json "extensions.showTips": false ``` @waderyan has tested them and gave positive feedback so we should enable this feature by default.
completed
Enable Extension Tips by default Extension tips are currently disabled by default. ``` json "extensions.showTips": false ``` @waderyan has tested them and gave positive feedback so we should enable this feature by default.
56
[]
0
False
3174
Code reports errors in removed source files
2016-02-19 18:13:41+00:00
2016-03-14 08:53:42+00:00
![removedfiles](https://cloud.githubusercontent.com/assets/9561583/13184519/42ae62d4-d6f1-11e5-8b4b-0668f44d7e4a.gif) On my OS X Yosemite machine running Code, I was adding/removing code in a solution. One of the files I removed had a C# build error. The interesting thing was the the error persisted in my Code ses...
completed
Code reports errors in removed source files ![removedfiles](https://cloud.githubusercontent.com/assets/9561583/13184519/42ae62d4-d6f1-11e5-8b4b-0668f44d7e4a.gif) On my OS X Yosemite machine running Code, I was adding/removing code in a solution. One of the files I removed had a C# build error. The interesting thin...
146
[]
0
False
3163
hide CodeLens in diff viewer by default
2016-02-19 11:50:07+00:00
2016-02-22 11:20:04+00:00
showing CodeLens clutters the diff view: ![2016-02-19 12-19-53](https://cloud.githubusercontent.com/assets/1898161/13174470/2515a88c-d704-11e5-86f1-7a4cd54b68c3.png) I suggest to disable this by default.
completed
hide CodeLens in diff viewer by default showing CodeLens clutters the diff view: ![2016-02-19 12-19-53](https://cloud.githubusercontent.com/assets/1898161/13174470/2515a88c-d704-11e5-86f1-7a4cd54b68c3.png) I suggest to disable this by default.
92
[]
0
False
3162
No coloring for embedded JS in HTML
2016-02-19 11:22:48+00:00
2016-02-22 08:12:44+00:00
fyi @dbaeumer ![image](https://cloud.githubusercontent.com/assets/5047891/13174363/7c223132-d703-11e5-8eef-7abaabcad1b1.png)
completed
No coloring for embedded JS in HTML fyi @dbaeumer ![image](https://cloud.githubusercontent.com/assets/5047891/13174363/7c223132-d703-11e5-8eef-7abaabcad1b1.png)
68
[]
0
False
3155
when console.log an Object, the attributes are showed as 'undefined'
2016-02-19 08:39:46+00:00
2018-09-17 15:44:00+00:00
in the extension debug mode,many attributes of the object `doc` is showed as 'undefined'(actually, the value of `doc.languageId` is 'markdown'.) Here is the screen shot ![image](https://cloud.githubusercontent.com/assets/7921431/13169780/f250c8d6-d722-11e5-98ff-7a39ecff7f89.png)
completed
when console.log an Object, the attributes are showed as 'undefined' in the extension debug mode,many attributes of the object `doc` is showed as 'undefined'(actually, the value of `doc.languageId` is 'markdown'.) Here is the screen shot ![image](https://cloud.githubusercontent.com/assets/7921431/13169780/f250c8...
123
[]
0
False
3153
LanguageClient does not handle IntelliSense correctly for PowerShell static class methods
2016-02-19 07:48:24+00:00
2016-04-04 10:08:45+00:00
_From @daviwil on February 18, 2016 18:53_ We're seeing an issue in the PowerShell extension where our trigger for static .NET class methods is not resulting in the right IntelliSense in VS Code. To reproduce the issue, try typing this in a PowerShell script file after installing the PowerShell extension on a Windo...
completed
LanguageClient does not handle IntelliSense correctly for PowerShell static class methods _From @daviwil on February 18, 2016 18:53_ We're seeing an issue in the PowerShell extension where our trigger for static .NET class methods is not resulting in the right IntelliSense in VS Code. To reproduce the issue, try ty...
341
[]
0
False
3150
Fix opening code via command line using relative paths
2016-02-19 07:01:55+00:00
2016-02-22 15:53:03+00:00
Opening code using `code ..`, `code ../..` was opening the wrong directory since trailing '.' characters were being trimmed by the launch code. Fixes #3127 --- @bpasero I'm assuming that the trimming was added for Windows, just wanted to make sure that was the intent. Or can we remove it?
Fix opening code via command line using relative paths Opening code using `code ..`, `code ../..` was opening the wrong directory since trailing '.' characters were being trimmed by the launch code. Fixes #3127 --- @bpasero I'm assuming that the trimming was added for Windows, just wanted to make sure that ...
91
[]
0
False
3146
Markdown code block in editor mode not colored if more than 4 spaces in the beginning of the line
2016-02-19 01:39:49+00:00
2016-06-16 16:12:55+00:00
Here is the screenshot: ![code](https://www.evernote.com/shard/s16/sh/8efb904f-5bb3-4ecb-a888-2cab131524c5/d6685628bbc28d06/res/aac02ce6-50b9-4a04-b246-d3311a9449cc/skitch.png?resizeSmall&width=832) It would better if the `a = a - 1` line also colored as orange
completed
Markdown code block in editor mode not colored if more than 4 spaces in the beginning of the line Here is the screenshot: ![code](https://www.evernote.com/shard/s16/sh/8efb904f-5bb3-4ecb-a888-2cab131524c5/d6685628bbc28d06/res/aac02ce6-50b9-4a04-b246-d3311a9449cc/skitch.png?resizeSmall&width=832) It would better if...
144
[]
0
False
3133
NPE in suggestWidget
2016-02-18 19:02:43+00:00
2016-02-24 17:12:53+00:00
- in a JS file, find all references of a variable - double click inside the mini-editor ``` TypeError: Cannot read property 'className' of null at _findClassName (dom.js:55) at Object.toggleClass (dom.js:149) at SuggestWidget.setState (suggestWidget.js:303) at suggestWidget.js:242 at Promi...
completed
NPE in suggestWidget - in a JS file, find all references of a variable - double click inside the mini-editor ``` TypeError: Cannot read property 'className' of null at _findClassName (dom.js:55) at Object.toggleClass (dom.js:149) at SuggestWidget.setState (suggestWidget.js:303) at suggestWidget...
236
[]
0
False
3132
Debug and tasks should fetch latest configuration from disk
2016-02-18 18:59:01+00:00
2016-04-21 11:48:32+00:00
**Repro** 1. Create a "project" that uses command-line arguments. In my case, a node.js command-line tool. 2. Modify the "configuration.args" in associated launch.json 3. Press F5 to debug **Issue** Modifications to launch.json in step 2 would not be used for step 3 until launch.json is explicitly saved (Ctrl+...
completed
Debug and tasks should fetch latest configuration from disk **Repro** 1. Create a "project" that uses command-line arguments. In my case, a node.js command-line tool. 2. Modify the "configuration.args" in associated launch.json 3. Press F5 to debug **Issue** Modifications to launch.json in step 2 would not be ...
209
[]
0
False
3128
Uncaught exception when calling connection.console.info()
2016-02-18 17:06:25+00:00
2016-02-29 18:35:00+00:00
_From @mattacosta on February 13, 2016 7:26_ I received the following error when trying to use the `info()` method of the `RemoteConsole` object while in my completion provider. The other console methods were not affected and operated normally. `Notification handler 'window/logMessage' failed with message: EPERM...
completed
Uncaught exception when calling connection.console.info() _From @mattacosta on February 13, 2016 7:26_ I received the following error when trying to use the `info()` method of the `RemoteConsole` object while in my completion provider. The other console methods were not affected and operated normally. `Notificat...
193
[]
0
False
3127
code . opens the current directory, code .. also opens the current directory - not the parent
2016-02-18 17:02:12+00:00
2016-02-22 15:53:03+00:00
`code .` opens the current directory, `code ..` also opens the current directory - not the parent
completed
code . opens the current directory, code .. also opens the current directory - not the parent `code .` opens the current directory, `code ..` also opens the current directory - not the parent
53
[]
0
False
3121
Suggest wigets should react to mode changes.
2016-02-18 15:28:06+00:00
2016-05-03 09:28:26+00:00
To reproduce: - open a first json file - quickly request code complete (best done programmatically by executing the code complete command ) ``` typescript this.keybindingService.executeCommand('editor.action.triggerSuggest'); ``` Observe: the suggest widget is empty. The reason is that the json support now co...
completed
Suggest wigets should react to mode changes. To reproduce: - open a first json file - quickly request code complete (best done programmatically by executing the code complete command ) ``` typescript this.keybindingService.executeCommand('editor.action.triggerSuggest'); ``` Observe: the suggest widget is empt...
122
[]
0
False
3091
Multiple cursors binding
2016-02-17 16:22:34+00:00
2017-05-30 10:16:18+00:00
On most Linux desktops `alt+click` will allow you drag a window by clicking anywhere over it. This conflicts with the multiple cursors binding. It's still possible to obtain multiple cursors with commands like `insertCursorAbove` or `insertCursorAtEndOfEachLineSelected`, but this affects multiple people, and it's al...
completed
Multiple cursors binding On most Linux desktops `alt+click` will allow you drag a window by clicking anywhere over it. This conflicts with the multiple cursors binding. It's still possible to obtain multiple cursors with commands like `insertCursorAbove` or `insertCursorAtEndOfEachLineSelected`, but this affects mul...
484
[]
0
False
3090
F3 does not loop with two matches on a single line
2016-02-17 16:03:48+00:00
2016-02-22 12:14:18+00:00
``` import nls = require('vs/nls'); ``` search for nls
completed
F3 does not loop with two matches on a single line ``` import nls = require('vs/nls'); ``` search for nls
37
[]
0
False
3083
[less] Mixin guards and guarded namespaces in less
2016-02-17 12:30:35+00:00
2016-08-09 19:23:19+00:00
Mixin guards in guarded namespaces are marked as errors in less files: `#namespace when (@mode=huge) { .mixin() { /* */ } }`
completed
[less] Mixin guards and guarded namespaces in less Mixin guards in guarded namespaces are marked as errors in less files: `#namespace when (@mode=huge) { .mixin() { /* */ } }`
62
[]
0
False
3075
[CSS] keyframes peek/go-to definition doesn't seem to work
2016-02-17 09:52:57+00:00
2017-12-01 10:49:45+00:00
Documentation states: ”Goto Declaration and Find References “This is supported for keyframes and variables in the same file.” but it doesn’t look like this works for @keyframes (it does work for SASS variables) For example with the following code: ``` css @keyframes progress { 0% { background-positio...
completed
[CSS] keyframes peek/go-to definition doesn't seem to work Documentation states: ”Goto Declaration and Find References “This is supported for keyframes and variables in the same file.” but it doesn’t look like this works for @keyframes (it does work for SASS variables) For example with the following code: ...
321
[]
0
False
3072
Do not use electron's remote in event handlers
2016-02-17 08:44:40+00:00
2016-03-02 15:44:41+00:00
See #2829
completed
Do not use electron's remote in event handlers See #2829
19
[]
0
False
3068
running vscode with gksudo or sudo permission
2016-02-17 03:33:10+00:00
2016-04-07 01:20:26+00:00
visual studio not starting up when running it with gksudo or sudo permission on my Arch Linux. The window just got hanged every time. Starting normally works. Can not save a file whose owner is root, Gives EACCESS_PERMISSION error. In case of other editors, saving the same file invoking gksudo automatically.
completed
running vscode with gksudo or sudo permission visual studio not starting up when running it with gksudo or sudo permission on my Arch Linux. The window just got hanged every time. Starting normally works. Can not save a file whose owner is root, Gives EACCESS_PERMISSION error. In case of other editors, saving the sa...
90
[]
0
False
3056
Context menu not shown on surface pro 4
2016-02-16 14:56:31+00:00
2016-02-26 10:24:58+00:00
This is an usability issue. I am using Surface pro 4 tablet, windows 10 x64, vscode 0.10.8. As a source code reviewer, I'd like to go to the definition from a source code line, without the need of keyboard or tablet pen. Normally, if you want to right click on "my Computer" or "Desktop" or anywhere, you can just ...
completed
Context menu not shown on surface pro 4 This is an usability issue. I am using Surface pro 4 tablet, windows 10 x64, vscode 0.10.8. As a source code reviewer, I'd like to go to the definition from a source code line, without the need of keyboard or tablet pen. Normally, if you want to right click on "my Computer"...
251
[]
0
False
3055
Have Windows support for the new launcher script
2016-02-16 14:56:18+00:00
2016-02-25 16:35:42+00:00
ping @Tyriar
completed
Have Windows support for the new launcher script ping @Tyriar
17
[]
0
False
3030
gulp default task (compile-all) doesn't exist
2016-02-15 19:14:49+00:00
2016-02-18 16:54:23+00:00
The 'default' task is mapped to 'compile-all', but that task isn't defined. ### STR 1. Clone repo 2. Run `./scripts/npm.sh install --arch=x64` 3. Run `gulp` ### Expected results It builds ### Actual results ``` colby@ruta-corsica:/tmp/other$ gulp [12:17:18] Using gulpfile /tmp/other/gulpfile.js [12:17:18...
completed
gulp default task (compile-all) doesn't exist The 'default' task is mapped to 'compile-all', but that task isn't defined. ### STR 1. Clone repo 2. Run `./scripts/npm.sh install --arch=x64` 3. Run `gulp` ### Expected results It builds ### Actual results ``` colby@ruta-corsica:/tmp/other$ gulp [12:17:18] Us...
183
[]
0
False
3022
Intellisense render cheese
2016-02-15 09:44:00+00:00
2016-02-23 22:16:55+00:00
![bug](https://cloud.githubusercontent.com/assets/22350/13044935/03faf714-d3d1-11e5-9921-1d438b342cee.gif)
completed
Intellisense render cheese ![bug](https://cloud.githubusercontent.com/assets/22350/13044935/03faf714-d3d1-11e5-9921-1d438b342cee.gif)
57
[]
0
False
3016
quickOpen broke again
2016-02-15 02:20:34+00:00
2016-02-29 14:09:27+00:00
it seems I met the same issue like https://github.com/Microsoft/vscode/issues/1007 When I press ctrl+p, vscode only show recenty opened files whatever I input It has been ok before I updated to 0.10.8
completed
quickOpen broke again it seems I met the same issue like https://github.com/Microsoft/vscode/issues/1007 When I press ctrl+p, vscode only show recenty opened files whatever I input It has been ok before I updated to 0.10.8
61
[]
0
False
3013
File picker doesn't open file with full path
2016-02-14 22:42:02+00:00
2016-03-02 10:20:47+00:00
According to Visual Code 0.10.8 changelog, it's now possible to open a file by typing it's full disk path: > You can open any file (including line/column pattern at the end) that exists on disk by typing the full path. But I can't get it to open any file outside my workspace. For example, I have a file stored...
completed
File picker doesn't open file with full path According to Visual Code 0.10.8 changelog, it's now possible to open a file by typing it's full disk path: > You can open any file (including line/column pattern at the end) that exists on disk by typing the full path. But I can't get it to open any file outside my...
180
[]
0
False
3008
[themes] Flattening of text mate scopes leads to wrong coloring
2016-02-14 17:01:24+00:00
2017-01-09 10:46:00+00:00
- Open nodeAppInsightsTelemtryAppender.ts#40 - Notice broken colouring of comments inside contructor arguments <img width="543" alt="screen shot 2016-02-14 at 18 00 03" src="https://cloud.githubusercontent.com/assets/1926584/13035008/ed1f36a4-d344-11e5-83df-caf715965c47.png"> Other problematic languages with dee...
completed
[themes] Flattening of text mate scopes leads to wrong coloring - Open nodeAppInsightsTelemtryAppender.ts#40 - Notice broken colouring of comments inside contructor arguments <img width="543" alt="screen shot 2016-02-14 at 18 00 03" src="https://cloud.githubusercontent.com/assets/1926584/13035008/ed1f36a4-d344-11e5...
139
[]
0
False
3006
Debug Console does not support special codes (Colors, clear line etc.)
2016-02-14 10:25:58+00:00
2016-03-01 23:32:47+00:00
An example: ``` Starting work... [2K[1GProgress 0%[2K[1GProgress 9.03%[2K[1GProgress 17.51%[2K[1GProgress 27.11%[2K[1GProgress 35.59% ``` Those `[2K[1G` codes are printed to `stdout` in order to clear the line and move the cursor to the left. Such codes are used by any terminal program to control what's on the...
completed
Debug Console does not support special codes (Colors, clear line etc.) An example: ``` Starting work... [2K[1GProgress 0%[2K[1GProgress 9.03%[2K[1GProgress 17.51%[2K[1GProgress 27.11%[2K[1GProgress 35.59% ``` Those `[2K[1G` codes are printed to `stdout` in order to clear the line and move the cursor to the lef...
192
[]
0
False
2998
Selection matches not shown in scrollbar anymore
2016-02-13 17:19:38+00:00
2016-02-25 12:53:20+00:00
In every previous version I was able to just select some string and was able to see all matching strings positions in the scrollbar, just like with the search function - but now it seems this feature is missing. Pictures are worth a thousand words: Now: ![vs1](https://cloud.githubusercontent.com/assets/7961978/13028...
completed
Selection matches not shown in scrollbar anymore In every previous version I was able to just select some string and was able to see all matching strings positions in the scrollbar, just like with the search function - but now it seems this feature is missing. Pictures are worth a thousand words: Now: ![vs1](https:/...
206
[]
0
False
2995
[json] [0.10.8] Wrapping JSON with double quotes replaces the text
2016-02-13 16:08:38+00:00
2016-02-22 09:31:44+00:00
In <= 0.10.5, you could highlight text in a JSON file and wrap it in double quotes: ![wrap_0105](https://cloud.githubusercontent.com/assets/16483697/13028604/7fc9452e-d26b-11e5-9894-0569c23296e6.gif) In 0.10.8, the highlighted text is now replaced with a double quote rather than wrapped: ![wrap_0108](https://c...
completed
[json] [0.10.8] Wrapping JSON with double quotes replaces the text In <= 0.10.5, you could highlight text in a JSON file and wrap it in double quotes: ![wrap_0105](https://cloud.githubusercontent.com/assets/16483697/13028604/7fc9452e-d26b-11e5-9894-0569c23296e6.gif) In 0.10.8, the highlighted text is now replaced...
230
[]
0
False
2990
URI toString() percent-encodes colon symbol after drive letter (MS Win 10)
2016-02-12 23:23:28+00:00
2016-04-01 07:44:33+00:00
While developing an MS VS Code extension in JavaScript, I encountered this unexpected behaviour while accessing the URI of the current document open in the editor; ``` editor.document.uri.toString() ``` Returns invalid MS Win 10 file URI ``` "file:///d%3A/Dir/VS-Code/Extensions/vscode-opn/temp/index.html" ...
completed
URI toString() percent-encodes colon symbol after drive letter (MS Win 10) While developing an MS VS Code extension in JavaScript, I encountered this unexpected behaviour while accessing the URI of the current document open in the editor; ``` editor.document.uri.toString() ``` Returns invalid MS Win 10 file URI...
252
[]
0
False
2988
Improperly serialized keybindings
2016-02-12 22:28:59+00:00
2016-02-25 10:56:54+00:00
### STR 1. Install [amVim](https://marketplace.visualstudio.com/items?itemName=auiworks.amvim) or any extension that contributes a key whose command contains a double quote or ends in a backslash. 2. After restarting, click the "Keyboard Shortcuts" item from Preferences submenu. 3. Find that command name in the "Def...
completed
Improperly serialized keybindings ### STR 1. Install [amVim](https://marketplace.visualstudio.com/items?itemName=auiworks.amvim) or any extension that contributes a key whose command contains a double quote or ends in a backslash. 2. After restarting, click the "Keyboard Shortcuts" item from Preferences submenu. 3. ...
235
[]
0
False
2975
Why are we updating breakpoints in the debug adapter when editing files?
2016-02-12 18:11:03+00:00
2016-02-15 12:02:37+00:00
In discussions with the react team, we noticed that VS Code is sending setBreakpointRequests to the debug adapter. The problem is that these breakpoints are registered with their new source location with node (or any other backend), but that still the old source is executed (because the back end does not support live u...
completed
Why are we updating breakpoints in the debug adapter when editing files? In discussions with the react team, we noticed that VS Code is sending setBreakpointRequests to the debug adapter. The problem is that these breakpoints are registered with their new source location with node (or any other backend), but that still...
131
[]
0
False
2972
Allow disabling parameter hints
2016-02-12 17:13:40+00:00
2016-06-06 09:24:36+00:00
Hey guys, I love vscode and use it for javascript every day, but the IntelliSense pop-up has caused me a good deal of frustration recently because it always seems to pop up when I'm typing and it prevents me using the up/down arrows until I hit escape. It's probably very useful and I just don't understand how to use it...
completed
Allow disabling parameter hints Hey guys, I love vscode and use it for javascript every day, but the IntelliSense pop-up has caused me a good deal of frustration recently because it always seems to pop up when I'm typing and it prevents me using the up/down arrows until I hit escape. It's probably very useful and I jus...
175
[]
0
False
2966
[less] LESS - mixins - "semi-colon expected"
2016-02-12 14:07:09+00:00
2016-08-09 19:59:31+00:00
Well new version fixed mixins without variables such as ".border-box();" but now it tells me my ".lui.box-sizing.border-box();" is not correct. First dot is underlined as error with "semi-colon expected" more on screenshot ![less_errors](https://cloud.githubusercontent.com/assets/10975377/13009000/38bcff30-d19a-...
completed
[less] LESS - mixins - "semi-colon expected" Well new version fixed mixins without variables such as ".border-box();" but now it tells me my ".lui.box-sizing.border-box();" is not correct. First dot is underlined as error with "semi-colon expected" more on screenshot ![less_errors](https://cloud.githubuserconten...
138
[]
0
False
2965
[folding] incorrect folding region when folding vscode.d.ts
2016-02-12 12:52:17+00:00
2016-02-12 17:07:42+00:00
pls see the screenshot. The comment `Represents a ...` shows as collapsed and folded but it isn't. ![image](https://cloud.githubusercontent.com/assets/172399/13007297/aace840a-d18f-11e5-9119-7aaf41c5af2d.png)
completed
[folding] incorrect folding region when folding vscode.d.ts pls see the screenshot. The comment `Represents a ...` shows as collapsed and folded but it isn't. ![image](https://cloud.githubusercontent.com/assets/172399/13007297/aace840a-d18f-11e5-9119-7aaf41c5af2d.png)
100
[]
0
False
2963
Node debugger variables undefined
2016-02-12 11:57:21+00:00
2017-08-17 13:24:58+00:00
I was debugging https://github.com/editorconfig/editorconfig-vscode and noticed something odd. ![screen shot 2016-02-12 at 12 52 38](https://cloud.githubusercontent.com/assets/1913805/13006233/b988451a-d187-11e5-9f8d-2b1a257452db.png) As you can see in the left pane, `savedDocument.fileName` is `undefined`. But ...
completed
Node debugger variables undefined I was debugging https://github.com/editorconfig/editorconfig-vscode and noticed something odd. ![screen shot 2016-02-12 at 12 52 38](https://cloud.githubusercontent.com/assets/1913805/13006233/b988451a-d187-11e5-9f8d-2b1a257452db.png) As you can see in the left pane, `savedDocum...
212
[]
0
False
2962
Find widget in small editor makes red background overflow
2016-02-12 11:52:46+00:00
2017-01-19 10:39:08+00:00
1. Open find widget and have no results (so there is red background) 2. Shrink the editor to be very narrow, notice the find widget gets broken, red background overflows ![screen shot 2016-02-12 at 12 50 12](https://cloud.githubusercontent.com/assets/1926584/13006191/5afdda14-d187-11e5-9ba5-e14796f38759.png)
completed
Find widget in small editor makes red background overflow 1. Open find widget and have no results (so there is red background) 2. Shrink the editor to be very narrow, notice the find widget gets broken, red background overflows ![screen shot 2016-02-12 at 12 50 12](https://cloud.githubusercontent.com/assets/1926584...
106
[]
0
False
2961
Wrong font for suggest widget inside zone widget
2016-02-12 10:22:31+00:00
2016-07-05 15:14:41+00:00
1. Reference search 2. Invoke suggest widget inside the zone widget 3. Notice bad font ![screen shot 2016-02-12 at 11 21 04](https://cloud.githubusercontent.com/assets/1926584/13004262/c677082c-d17a-11e5-846f-da7ab70f7ee9.png)
completed
Wrong font for suggest widget inside zone widget 1. Reference search 2. Invoke suggest widget inside the zone widget 3. Notice bad font ![screen shot 2016-02-12 at 11 21 04](https://cloud.githubusercontent.com/assets/1926584/13004262/c677082c-d17a-11e5-846f-da7ab70f7ee9.png)
89
[]
0
False
2953
Find & Replace shortcut with wrong highlight text
2016-02-12 06:30:40+00:00
2016-02-16 11:53:41+00:00
The new version of Code has a wrong behaviour with the find and replace feature. When a word or a portion of text is highlighted, the shotcut Ctrl+H doesn't use the new highlighted text to search, but keeps the previous one.
completed
Find & Replace shortcut with wrong highlight text The new version of Code has a wrong behaviour with the find and replace feature. When a word or a portion of text is highlighted, the shotcut Ctrl+H doesn't use the new highlighted text to search, but keeps the previous one.
66
[]
0
False
2945
When pressing "alt" to show the menu bar, keyboard focus is not given to it
2016-02-11 18:38:37+00:00
2018-07-10 18:33:27+00:00
Repro: - Use "View/Toggle Menu Bar" to hide the menu bar - Press and release "alt", the menu bar appears - Try using the arrow keys or mnemonic keys ('F' for 'File' menu) Actual: there is no way to interact with the menu bar from the keyboard Expected: same as the Hide Menu Bar extension for VS, where pressing a...
completed
When pressing "alt" to show the menu bar, keyboard focus is not given to it Repro: - Use "View/Toggle Menu Bar" to hide the menu bar - Press and release "alt", the menu bar appears - Try using the arrow keys or mnemonic keys ('F' for 'File' menu) Actual: there is no way to interact with the menu bar from the keyb...
144
[]
0
False
2943
Block cursor obscures current character
2016-02-11 17:15:34+00:00
2016-04-08 09:39:57+00:00
In 0.10.8, there's a `editor.cursorStyle` setting has been added that allows block style cursor, but when it blinks on, it obscures the character in that column. Compare: ![VSCode block cursor obscuring the "o" in "none"](https://cloud.githubusercontent.com/assets/17170330/12983695/fa004df0-d0af-11e5-816b-1199aa976...
completed
Block cursor obscures current character In 0.10.8, there's a `editor.cursorStyle` setting has been added that allows block style cursor, but when it blinks on, it obscures the character in that column. Compare: ![VSCode block cursor obscuring the "o" in "none"](https://cloud.githubusercontent.com/assets/17170330/12...
225
[]
0
False
2938
When pressing Tab on white-space only lines, indent straight to the right spot (similar to empty lines)
2016-02-11 14:51:05+00:00
2016-08-31 16:23:47+00:00
Depending on how my cursor arrives at line of code determines which way the editor indents the line. Let me start by showing what the correct indent spacing looks like: [![https://gyazo.com/eca50fd7907e95b870c4b1b5602300c3](https://i.gyazo.com/eca50fd7907e95b870c4b1b5602300c3.gif)](https://gyazo.com/eca50fd7907e95b870...
completed
When pressing Tab on white-space only lines, indent straight to the right spot (similar to empty lines) Depending on how my cursor arrives at line of code determines which way the editor indents the line. Let me start by showing what the correct indent spacing looks like: [![https://gyazo.com/eca50fd7907e95b870c4b1b56...
522
[]
0
False
2936
[python] Python In-Line Comments Break Code Highlighting Within Dictionaries
2016-02-11 12:28:35+00:00
2016-08-22 06:40:49+00:00
Hi there, python code highlighting seems to break within dictionaries: ![vs code error](https://cloud.githubusercontent.com/assets/5166778/12976212/51f6d768-d0ba-11e5-9013-8ed608d46061.PNG) My guess would be that the highlighter within the dictionary ("the next thing after the comma is blue") either supersedes the...
completed
[python] Python In-Line Comments Break Code Highlighting Within Dictionaries Hi there, python code highlighting seems to break within dictionaries: ![vs code error](https://cloud.githubusercontent.com/assets/5166778/12976212/51f6d768-d0ba-11e5-9013-8ed608d46061.PNG) My guess would be that the highlighter within th...
202
[]
0
False
2934
Intellisense more details icon doesn't work
2016-02-11 10:29:40+00:00
2016-02-24 17:12:53+00:00
<img width="352" alt="untitled picture" src="https://cloud.githubusercontent.com/assets/6125444/12974189/45e607d0-d0b2-11e5-9fee-8e9e2c968b3e.png"> The blue (i) icon reacts to mouseover but when clicking it the popup just goes away, as if you had just clicked anywhere else in the popup. Pressing ctrl+space instea...
completed
Intellisense more details icon doesn't work <img width="352" alt="untitled picture" src="https://cloud.githubusercontent.com/assets/6125444/12974189/45e607d0-d0b2-11e5-9fee-8e9e2c968b3e.png"> The blue (i) icon reacts to mouseover but when clicking it the popup just goes away, as if you had just clicked anywhere else...
135
[]
0
False
2933
executeCommand does not wait for text editor commands to complete
2016-02-11 09:44:12+00:00
2016-07-05 13:14:43+00:00
If you register a command with `registerTextEditorCommand`, then when later calling that command with `commands.executeCommand()`, executeCommand won't wait for that command to complete before resolving. With commands registered with `registerCommand`, it behaves as expected. For example, this works: ``` typescri...
completed
executeCommand does not wait for text editor commands to complete If you register a command with `registerTextEditorCommand`, then when later calling that command with `commands.executeCommand()`, executeCommand won't wait for that command to complete before resolving. With commands registered with `registerCommand`, i...
379
[]
0
False
2932
Language change in file comparison only affacts right pane
2016-02-11 09:40:13+00:00
2016-03-08 09:09:20+00:00
Reproduce: 1. Create two files and save them 2. Select one file for comparison and click `compare with ...` on the other one 3. Change Language with `Change Language Mode` to a different language Effect: - only the language in the right file is changed - even clicking on the left comparison pane and using `change...
completed
Language change in file comparison only affacts right pane Reproduce: 1. Create two files and save them 2. Select one file for comparison and click `compare with ...` on the other one 3. Change Language with `Change Language Mode` to a different language Effect: - only the language in the right file is changed - ...
89
[]
0
False
2930
Bad argument
2016-02-11 09:21:42+00:00
2016-02-19 11:27:23+00:00
Issue Id: <b>b3fa6a8b-7e49-e5b4-8ef6-969c0fb70dcb</b><br /><br />_Versions_ <br />\- 0.10.6-release<br />\- db71ac615ddf9f33b133ff2536f5d33a77d4774e<br />\- dfc08dc9edf6607483b193bf934d3badc3fa2e11<br />_Stack_ <br />TypeError: Bad argument<br /> at TypeError (native)<br /> at ChildProcess.spawn (internal/child...
completed
Bad argument Issue Id: <b>b3fa6a8b-7e49-e5b4-8ef6-969c0fb70dcb</b><br /><br />_Versions_ <br />\- 0.10.6-release<br />\- db71ac615ddf9f33b133ff2536f5d33a77d4774e<br />\- dfc08dc9edf6607483b193bf934d3badc3fa2e11<br />_Stack_ <br />TypeError: Bad argument<br /> at TypeError (native)<br /> at ChildProcess.spawn (...
537
[]
0
False
2922
[sass] @each loop shows error if there's a comma after the first variable.
2016-02-11 08:17:55+00:00
2017-02-21 22:32:42+00:00
The editor shows an error right after the first variable in an @each loop. The error just displays as **'in' expected**. Below is an example of the code: @each $display, $size in $grid-properties { @media (min-width: $display) { @include generate-grid; } }
completed
[sass] @each loop shows error if there's a comma after the first variable. The editor shows an error right after the first variable in an @each loop. The error just displays as **'in' expected**. Below is an example of the code: @each $display, $size in $grid-properties { @media (min-width: $display) { ...
97
[]
0
False
2912
Issues with JS and TextDocumentContentProvider
2016-02-10 23:57:54+00:00
2016-03-08 15:45:55+00:00
TextDocumentContentProvider works. I used this as a starting point https://github.com/Microsoft/vscode-extension-samples/tree/master/textdocumentprovider-sample This works if you save it as an html file and open it in a browser, but not if I return it in provideTextDocumentContent: https://gist.github.com/dfinke/f5...
completed
Issues with JS and TextDocumentContentProvider TextDocumentContentProvider works. I used this as a starting point https://github.com/Microsoft/vscode-extension-samples/tree/master/textdocumentprovider-sample This works if you save it as an html file and open it in a browser, but not if I return it in provideTextDocu...
130
[]
0
False
2910
marker view truncates text
2016-02-10 22:36:25+00:00
2016-06-02 08:09:13+00:00
Please refer to this screenshot: ![vscode-truncated-text](https://cloud.githubusercontent.com/assets/1445483/12964156/985210d6-d01c-11e5-9171-f97e03aa341a.png) It appears as though the command palette is truncating parts of the text, and likewise mousing over these messages does _not_ show a tooltip with all the ...
completed
marker view truncates text Please refer to this screenshot: ![vscode-truncated-text](https://cloud.githubusercontent.com/assets/1445483/12964156/985210d6-d01c-11e5-9171-f97e03aa341a.png) It appears as though the command palette is truncating parts of the text, and likewise mousing over these messages does _not_ s...
163
[]
0
False
2898
[js] update jsconfig.json to latest tsconfig.json schema
2016-02-10 16:48:48+00:00
2016-02-23 10:03:55+00:00
Extracted from #2848 The current schema doesn't support "es6" ``` json "module": { "description": "Specify module code generation: 'CommonJS', 'Amd', 'System', 'UMD', 'es6', or 'es2015'.", "enum": [ "commonjs", "amd", "umd", "system", "es6", "es2015" ] }, `...
completed
[js] update jsconfig.json to latest tsconfig.json schema Extracted from #2848 The current schema doesn't support "es6" ``` json "module": { "description": "Specify module code generation: 'CommonJS', 'Amd', 'System', 'UMD', 'es6', or 'es2015'.", "enum": [ "commonjs", "am...
127
[]
0
False
2896
Go to File does not find files in directory junctions
2016-02-10 16:02:40+00:00
2016-03-02 10:02:55+00:00
If you have a parent folder with two directory junctions pointing somewhere else, "Go to File" ( or Ctrl+P ) will not be able to find the file you are looking for. However, if you put one of the directory junctions as your workspace folder "Go to File" will be able to find any existing file in the folder with no proble...
completed
Go to File does not find files in directory junctions If you have a parent folder with two directory junctions pointing somewhere else, "Go to File" ( or Ctrl+P ) will not be able to find the file you are looking for. However, if you put one of the directory junctions as your workspace folder "Go to File" will be able ...
151
[]
0
False
2891
no more error message when trying to connect to non running debug server
2016-02-10 14:19:33+00:00
2016-02-10 15:27:48+00:00
0.10.8 I got this error: ![unknown](https://cloud.githubusercontent.com/assets/1898161/12949618/1b217402-d009-11e5-82ac-d6aa97b334f8.png) In the latest I don't get anything.
completed
no more error message when trying to connect to non running debug server 0.10.8 I got this error: ![unknown](https://cloud.githubusercontent.com/assets/1898161/12949618/1b217402-d009-11e5-82ac-d6aa97b334f8.png) In the latest I don't get anything.
86
[]
0
False
2883
firstLine MUST not trump exension
2016-02-10 10:49:28+00:00
2016-03-07 08:09:20+00:00
I have a TS file which has a first line like ``` #!/usr/bin/env node ``` which is supported by the tsc compiler. VSCode now treats the ts file as JS which results in very wired behavior. In general I think first line is content sniffing (like binary detection) and shouldn't overrule extensions.
completed
firstLine MUST not trump exension I have a TS file which has a first line like ``` #!/usr/bin/env node ``` which is supported by the tsc compiler. VSCode now treats the ts file as JS which results in very wired behavior. In general I think first line is content sniffing (like binary detection) and shouldn...
99
[]
0
False
2880
FindWidget sometimes in '? of n' state
2016-02-10 09:27:43+00:00
2016-02-22 22:36:07+00:00
I do not have good steps since and I can not repro easily so feel free to close. Though I have seen this at least 4,5 times thus far. - Open find fidget search for something that has results -> all good - Close find widget, usual workflow which includes opening / closing editors - Open find widget again, notice the ...
completed
FindWidget sometimes in '? of n' state I do not have good steps since and I can not repro easily so feel free to close. Though I have seen this at least 4,5 times thus far. - Open find fidget search for something that has results -> all good - Close find widget, usual workflow which includes opening / closing editors...
151
[]
0
False
2857
Sending output to an OutputChannel in a for loop seems to duplicate most of the information
2016-02-09 19:03:38+00:00
2016-03-08 17:59:51+00:00
Hi there, This happens in 10.8, and it also happened in the last one before that. How to reproduce; - Create a new extension via "yo code". I went with a TypeScript extension. - Replace the command implementation with something like this: ``` let disposable = vscode.commands.registerCommand('extension....
completed
Sending output to an OutputChannel in a for loop seems to duplicate most of the information Hi there, This happens in 10.8, and it also happened in the last one before that. How to reproduce; - Create a new extension via "yo code". I went with a TypeScript extension. - Replace the command implementation with so...
459
[]
0
False
2856
[json] Warnings in settings after updating to version 0.10.8
2016-02-09 18:34:12+00:00
2016-02-10 13:05:03+00:00
Hi, After updating to version 0.10.8 i have warning in the status bar. The only extension installed is for golang. ![2016-02-09 20_25_58-search](https://cloud.githubusercontent.com/assets/605434/12926463/2fbdd542-cf6c-11e5-8737-33522f604835.png) ![2016-02-09 20_26_31-start](https://cloud.githubusercontent.com/a...
completed
[json] Warnings in settings after updating to version 0.10.8 Hi, After updating to version 0.10.8 i have warning in the status bar. The only extension installed is for golang. ![2016-02-09 20_25_58-search](https://cloud.githubusercontent.com/assets/605434/12926463/2fbdd542-cf6c-11e5-8737-33522f604835.png) ![201...
338
[]
0
False