id
stringlengths
4
10
text
stringlengths
4
2.14M
source
stringclasses
2 values
created
timestamp[s]date
2001-05-16 21:05:09
2025-01-01 03:38:30
added
stringdate
2025-04-01 04:05:38
2025-04-01 07:14:06
metadata
dict
523459073
An error occurs when importing document into Mongo DB collection OS: Windows Build Version: 20191114.1 Repro Steps: F1->Cosmos DB: Import Document into a Collection->Select a .json file->Select one Mongo DB collection. Check the result. Expect: Import the document into Mongo DB collection successfully. Actual: An error occurs. More info: This issue does not reproduce if import the same document(.json file) into SQL collection. I wasn't able to repro this either. Could you give me more information to repro this? @nturinski I can reproduce this issue with the latest nightly build 20191119.1. This issue does not reproduce on the previous released version. Fixed in #1309
gharchive/issue
2019-11-15T13:05:09
2025-04-01T04:35:03.467926
{ "authors": [ "nturinski", "v-ruizh", "wwlorey" ], "repo": "microsoft/vscode-cosmosdb", "url": "https://github.com/microsoft/vscode-cosmosdb/issues/1242", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1041658234
fix: change user before run go get/install change user before run go get/install to avoid permission denied on /go/pkg/mod/cache. go: writing go.mod cache: mkdir /go/pkg/mod/cache/download/go.uber.org: permission denied go: writing go.mod cache: mkdir /go/pkg/mod/cache/download/go.uber.org: permission denied Another way to fix the issue is run go commands as vscode RUN su vscode -c "go get -x <your-dependency-or-tool>" Thanks!
gharchive/pull-request
2021-11-01T21:25:45
2025-04-01T04:35:03.475733
{ "authors": [ "Chuxel", "giautm" ], "repo": "microsoft/vscode-dev-containers", "url": "https://github.com/microsoft/vscode-dev-containers/pull/1150", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2610944368
Module resolution not working With regular import: (Config breaks. Nothing works [just a few tsc sqigglies]) With manual import: Plugins like neostandard and @eslint/FlatCompat cause this extension to not work upon import (even without configuring the imported function), which are now imperative if you're transitioning to flat config. As well as eslint-plugin-import, eslint-plugin-n, and many more. Some plugins still work fine, eslint-plugin-promise for example. The common pattern I've noticed is that packages that do not work, have a main in the package json. Package that work do not and often just have index.js in the the package root. @whaaaley does the validation happen correctly when you use eslint in the terminal. If this is the case can you please provide me with a GitHub repository I can clone that demos what you are experiencing. This is not a bug here. Apologies. This is due to configs not listing dependencies as such.
gharchive/issue
2024-10-24T09:08:57
2025-04-01T04:35:03.499879
{ "authors": [ "dbaeumer", "whaaaley" ], "repo": "microsoft/vscode-eslint", "url": "https://github.com/microsoft/vscode-eslint/issues/1942", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1362562160
Some actions in vega viewer do not work The following actions do not work in vega viewer: View Source Open in Vega Editor Thoughts: Do we know how many try using this feature? What if we were to just disable these two in the custom renderer? They have been disabled, Testing instructions: Install latest VS Code Insiders, Jupyter pre-release and Notebook renderers extension Install the following python packages pip install altair, vega, vega-datasets Run a cell in a notebook import altair as alt from vega_datasets import data # Show an image where the interactive plot is not supported alt.renderers.enable('mimetype') source = data.cars() alt.Chart(source).mark_boxplot().encode( x='Origin', y=alt.Y(alt.repeat('column'), type='quantitative'), ).repeat(column=['Horsepower', 'Weight_in_lbs']) Click on the hamburger menu and you should only get the options Save as PNG & SVG
gharchive/issue
2022-09-06T00:19:13
2025-04-01T04:35:03.516630
{ "authors": [ "DonJayamanne" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/11294", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1446093448
notebook controller is disposed when Interactive window is opened quickly after vs code reload repro steps: open a python script and add a # %% cell reload vs code run the cell before the Discovering Python Interpreters status item finishes if that succeeds, wait until it finishes and run the cell again (otherwise the first cell fails with the below error) :bug: notebook controller is DISPOSED. View Jupyter [log](command:jupyter.viewOutput) for further details. @amunger I think this PR will address this issue https://github.com/microsoft/vscode-jupyter/pull/12009 can't repro anymore
gharchive/issue
2022-11-11T23:23:48
2025-04-01T04:35:03.519436
{ "authors": [ "DonJayamanne", "amunger" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/11998", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1470896443
Clarify Working with Python setup In the README.md section Working with Python there's this cryptic step: Since not working with Python, make sure to have a Jupyter kernelspec that corresponds to the language you would like to use installed on your machine. What does this mean? Let's clarify this from the perspective of someone who doesn't even know what a kernelspec is. we might want to include link to Jupyter docs instead
gharchive/issue
2022-12-01T08:33:17
2025-04-01T04:35:03.521357
{ "authors": [ "DonJayamanne", "joaomoreno" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/12258", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1856261833
Connecting to a distant jupyter server is no longer working Applies To [ ] Notebooks (.ipynb files) [ ] Interactive Window and/or Cell Scripts (.py files with #%% markers) What happened? I've been working on a jupyter server with vscode since some time, through a distant-machine vscode server. I had to reset my (conda) python configuration recently, but I can not recover the setting that made vscode + jupyter server work. I (used to) start a jupyter server with jupyter-lab --no-browser --port 1234 --IdentityProvider.token=[some-token] --ServerApp.allow_origin='*'. This command no longer works (especially the token thing ;) ), but I still manage to open a jupyter session using : jupyter-lab --no-browser --port 1234 --ServerApp.allow_origin='*'. With this one, everything works on my browser, but not with vscode : it successfully detect and connect to the server, find the kernels I have, but running a cell fails (with no warning/errors/anything.) Any idea on how to solve the issue? VS Code Version Version : 1.81.1 Validation : 6c3e3dba23e8fadc360aed75ce363ba185c49794 Date : 2023-08-09T22:18:39.991Z Electron : 22.3.18 ElectronBuildId : 22689846 Chromium : 108.0.5359.215 Node.js : 16.17.1 V8 : 10.8.168.25-electron.0 Système d’exploitation : Linux x64 5.13.0-1019-oem Jupyter Extension Version v2023.7.1002162226 Jupyter logs Visual Studio Code (1.81.1, ssh-remote, desktop) Jupyter Extension Version: 2023.7.1002162226. Python Extension Version: 2023.14.0. Platform: linux (x64). Multiple Workspace folders opened ~/Jupyter/Observations2, ~/Data 09:58:58.722 [info] Handle Execution of Cells 1 for ~/Jupyter/Observations2/model_treater.ipynb 09:58:58.723 [info] End cell 1 execution @ undefined, started @ undefined, elapsed time = 0s 09:58:58.723 [error] Error in execution Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:58:58.724 [error] Error in execution (get message for cell) Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:58:58.747 [info] End refreshing Kernel Picker (1692345538605) 09:59:01.304 [info] Handle Execution of Cells 1 for ~/Jupyter/Observations2/model_treater.ipynb 09:59:01.305 [info] End cell 1 execution @ undefined, started @ undefined, elapsed time = 0s 09:59:01.305 [error] Error in execution Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:01.306 [error] Error in execution (get message for cell) Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:01.778 [info] Handle Execution of Cells 1 for ~/Jupyter/Observations2/model_treater.ipynb 09:59:01.779 [info] End cell 1 execution @ undefined, started @ undefined, elapsed time = 0s 09:59:01.779 [error] Error in execution Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:01.780 [error] Error in execution (get message for cell) Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:01.949 [info] Handle Execution of Cells 1 for ~/Jupyter/Observations2/model_treater.ipynb 09:59:01.950 [info] End cell 1 execution @ undefined, started @ undefined, elapsed time = 0s 09:59:01.950 [error] Error in execution Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:01.951 [error] Error in execution (get message for cell) Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:02.091 [info] Handle Execution of Cells 1 for ~/Jupyter/Observations2/model_treater.ipynb 09:59:02.092 [info] End cell 1 execution @ undefined, started @ undefined, elapsed time = 0s 09:59:02.092 [error] Error in execution Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) 09:59:02.092 [error] Error in execution (get message for cell) Error: notebook controller is DISPOSED at Object.createNotebookCellExecution (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:97293) at Function.create (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207405) at Function.getOrCreate (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:17:207278) at Lb.createCellExecutionIfNecessary (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:223719) at Lb.executeCell (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:224160) at async Promise.all (index 0) at Lb.handleExecution (~/.vscode-server/extensions/ms-toolsai.jupyter-2023.7.1002162226-linux-x64/out/extension.node.js:24:220950) at y.$executeCells (~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/out/vs/workbench/api/node/extensionHostProcess.js:105:100503) Coding Language and Runtime Version python 3.11.4 Language Extension Version (if applicable) No response Anaconda Version (if applicable) miniconda 3 Running Jupyter locally or remotely? None @Tenivar sorry you are running into this issue. Please could you enable logging as follows: Open settings & go into Jupyter->Logging Change the value to verbose Reload VS Code, Attempt to repro the issue & then copy the output from the Jupyter output panel. Please rmember to copy and paste all of the logs I am seeing this issue, too. I tried turning on verbose logging but I am seeing zero debug output in the Jupyter output panel when trying to connect to a remote server. In the output of the jupyter server itself I can see [W 2023-10-05 14:04:35.939 ServerApp] 404 GET /hub/api (0673856c6d9b46edb2085787c0973c12@127.0.0.1) 99.98ms referer=None [W 2023-10-05 14:04:36.028 ServerApp] 404 GET /login? (4a4910f75a7e499aaac333d5b4fc6c23@127.0.0.1) 2.24ms referer=None [W 2023-10-05 14:05:00.529 ServerApp] 404 GET /hub/api (c2a0b1a7abb240508cf5c709c651ec0c@127.0.0.1) 0.99ms referer=None [W 2023-10-05 14:05:00.538 ServerApp] 404 GET /login? (ec7f2f4cc2b144dc93ad929c681d8dda@127.0.0.1) 0.63ms referer=None @ntezak Sorry you are running into this where is your remote server running (is it local or remote) What version of vscode/jupyter extension do you have Are you using vscode in the browser or desktop Are you trying to add the server again via the kernel picker Please can you try adding it again Do you have a token in the url? Closing this issue as its been over 4 weeks, since the information was requested. We'll be happy to reopen the issue when the requested information has been provided.
gharchive/issue
2023-08-18T08:05:00
2025-04-01T04:35:03.530427
{ "authors": [ "DonJayamanne", "Tenivar", "ntezak" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/14151", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2218662286
timeout errors from jupyter extension only in OSS, might be fixed in latest
gharchive/issue
2024-04-01T16:57:17
2025-04-01T04:35:03.531426
{ "authors": [ "amunger" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/15454", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2318161063
jupyter Environment data VS Code version: XXX Jupyter Extension version (available under the Extensions sidebar): XXX Python Extension version (available under the Extensions sidebar): XXX OS (Windows | Mac | Linux distro) and version: XXX Python and/or Anaconda version: XXX Type of virtual environment used (N/A | venv | virtualenv | conda | ...): XXX Jupyter server running: Local | Remote | N/A Expected behaviour XXX Actual behaviour XXX Steps to reproduce: [NOTE: Self-contained, minimal reproducing code samples are extremely helpful and will expedite addressing your issue] XXX Logs Output for Jupyter in the Output panel (View→Output, change the drop-down the upper-right of the Output panel to Jupyter) XXX Closing due to lack of information
gharchive/issue
2024-05-27T03:42:23
2025-04-01T04:35:03.533989
{ "authors": [ "DonJayamanne", "radhikaraiur" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/15720", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
806744267
Synchronously import zmq Today we have a lot of async code in a numer of places to check if zmq is supported. However for some reason this is async. We can make this sync & the code will be simpler. Validated.
gharchive/issue
2021-02-11T21:10:32
2025-04-01T04:35:03.534670
{ "authors": [ "DonJayamanne", "IanMatthewHuff" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/4764", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
984394356
Debugging cells in the interactive window will show the 'temp hashed file' if you restart the kernel Latest stable Repro steps: Open py file with a bunch of cell delimiters Send a cell to the interactive window Restart the kernel Debug a cell This will come up: @rchiodo I can't repro this in Insiders now, can you? Yeah still repros for me. Steps I followed: Run a cell with ipykernel 5 or so Debug same cell Debug same cell again Restart kernel Debug same cell Error happens Thanks that worked. Problem was I had ipykernel 6. Problem AFAIK is the onKernelRestarted method wasn't hooked up.
gharchive/issue
2021-08-31T22:42:21
2025-04-01T04:35:03.536947
{ "authors": [ "joyceerhl", "rchiodo" ], "repo": "microsoft/vscode-jupyter", "url": "https://github.com/microsoft/vscode-jupyter/issues/7366", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1426518089
didChange is being sent before didOpen This seems to be causing the issue mentioned here: https://github.com/BetterThanTomorrow/calva/issues/1900. The spec says: Before a client can change a text document it must claim ownership of its content using the textDocument/didOpen notification. I do see that the time is the same second, but the didChange appears first so I'm guessing it came a fraction of a second earlier than didOpen. [Trace - 11:36:32 PM] Sending notification 'textDocument/didChange'. Params: { "textDocument": { "uri": "file:///Users/pez/Projects/tests/minimal-deps/src/foo.clj", "version": 2 }, "contentChanges": [ { "text": "(ns foo\n (:require [clojure.string :as string]))\n\n(defn bar\n []\n (let [x 1]\n x))" } ] } [Trace - 11:36:32 PM] Sending notification 'textDocument/didOpen'. Params: { "textDocument": { "uri": "file:///Users/pez/Projects/tests/minimal-deps/src/foo.clj", "languageId": "clojure", "version": 1, "text": "" } } @bpringe which version are you using? This looks very similar to https://github.com/microsoft/vscode-languageserver-node/issues/968 which for addressed in 8.0.2 (looks like you are using full text document sync as well). If you are on a version > 8.0.2 can you provide me with steps on how to reproduce this? We're using 8.0.2. Steps to reproduce are noted here: https://github.com/BetterThanTomorrow/calva/issues/1900#issue-1412718106. The clojure-lsp server maintainer mentions the ordering issue here: https://github.com/BetterThanTomorrow/calva/issues/1900#issuecomment-1283122856. If you need more details, let me know. I was able to reproduce this (see test case https://github.com/dbaeumer/vscode-lsp-1105). It happens only under the following conditions: full text sync save of an untitled file where the language server is not yet started (e.g. doesn't handle untitled files) Thanks for the fix!
gharchive/issue
2022-10-28T02:20:41
2025-04-01T04:35:03.540750
{ "authors": [ "bpringe", "dbaeumer" ], "repo": "microsoft/vscode-languageserver-node", "url": "https://github.com/microsoft/vscode-languageserver-node/issues/1105", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
984397369
fix import of jsonrpc module fix https://github.com/microsoft/vscode-languageserver-node/issues/759 Thanks!
gharchive/pull-request
2021-08-31T22:47:22
2025-04-01T04:35:03.541729
{ "authors": [ "dbaeumer", "link89" ], "repo": "microsoft/vscode-languageserver-node", "url": "https://github.com/microsoft/vscode-languageserver-node/pull/805", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
1889636245
Document Default Interpreter The mypy-type-checker.interpreter setting is helpfully documented in the README: Path to a python interpreter to use to run the linter server. The default value is [], but it isn't immediately clear what interpreter is used in this case. For instance, is python.defaultInterpreterPath used, or does the mypy extension ship with a Python interpreter? The python is the one selected in the python extension. We use an API from python extension to get the path to it. We will update the text.
gharchive/issue
2023-09-11T04:30:29
2025-04-01T04:35:03.551146
{ "authors": [ "Kurt-von-Laven", "karthiknadig" ], "repo": "microsoft/vscode-mypy", "url": "https://github.com/microsoft/vscode-mypy/issues/144", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
711114000
PR views: do not use inline actions From @isidorn Currently the PR extension uses inline actions for the following cases that I could find PULL REQUESTS: Open Pull Request Description to the Side ISSUES: Start Work on Issue and Open Issue Might there be more I am missing? My suggestion: to make the whole view experience calmer do not use inline actions. Simply put those actions in the context menu. Especially for the PULL REQUESTS view since the action does not seem that important. In issues view I would do the same and just make double click to start work on issue (if you can distungish single vs double click). Or Enter. And same as in PULL REQUESTS view I would simply add these actions to the context menu Inline actions are hectic, they appear and disapear and they add unneded details to an already full view. Just my 2 cents. I see the goal of inline actions as twofold: Make the most common action fast to use. Reveal an action that is very useful, but otherwise hard to discover. I think that there are several inline actions that do not fit that paradigm. We should do a deliberate pass over inline actions, but I don't think we will remove all of them.
gharchive/issue
2020-09-29T13:29:52
2025-04-01T04:35:03.552853
{ "authors": [ "alexr00" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/2179", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
739385417
Don't show "Pull" notification if it looks like the branch has been rebased If a PR branch has been rebased, executing a pull could be quite destructive. We should try to detect if it looks like the current branch has been rebased (probably by comparing the set of commit to see if there are changed ones in common via git log --oneline --cherry master...some-branch or something like that). Closing in favor of https://github.com/microsoft/vscode/issues/110881 Closing in favor of https://github.com/microsoft/vscode/issues/110881
gharchive/issue
2020-11-09T21:45:31
2025-04-01T04:35:03.554380
{ "authors": [ "eamodio" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/2267", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
766760709
PR sidebar view not activated When opening a PR in Codespaces (Web), the PR view isn't activated in the sidebar. Extension version: v2020.12.19262 How to replicate Open a PR in a Codespace (Web) What happens The first file with changes is opened in the diff view, but the PR view is not activated in the sidebar. What should happen The first file with changes should be opened in diff view, the PR view should be activated in the sidebar with the currently opened file selected. Oops, I duplicated this issue myself: https://github.com/microsoft/vscode-pull-request-github/issues/2360. Checked in a fix for it with https://github.com/microsoft/vscode-pull-request-github/commit/a418bd650bf24bd12baf552e8c201fad01382fb5, which will be available in tomorrow's insider's Oops, I duplicated this issue myself: https://github.com/microsoft/vscode-pull-request-github/issues/2360. Checked in a fix for it with https://github.com/microsoft/vscode-pull-request-github/commit/a418bd650bf24bd12baf552e8c201fad01382fb5, which will be available in tomorrow's insider's
gharchive/issue
2020-12-14T17:44:08
2025-04-01T04:35:03.556691
{ "authors": [ "RMacfarlane", "burkeholland" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/2325", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1681216532
Extensions says I'm not signed into Github when I'm actually signed in already Extension version: v0.62.0 (latest stable from marketplace) VSCode Version: Version: 1.77.3 Commit: 704ed70d4fd1c6bd6342c436f1ede30d1cff4710 Date: 2023-04-12T09:16:52.732Z Electron: 19.1.11 Chromium: 102.0.5005.196 Node.js: 16.14.2 V8: 10.2.154.26-electron.0 OS: Linux x64 6.2.10-200.fc37.x86_64 Sandboxed: No OS: Fedora 37 Steps to Reproduce: See the attached screenshot. I'm logged into Github. The extension is on the list of trusted extensions which can access my github account It still prompts for "Login" (see screenshot) clicking on "Login" does nothing it worked last week I already disabled and reenabled the extension and restarted vs code, all to no avail, still says I should Login when I'm already logged in. this was a user error, no bug.
gharchive/issue
2023-04-24T12:55:21
2025-04-01T04:35:03.559276
{ "authors": [ "artificial-intelligence" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/issues/4762", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
609020946
Add inline action for start working And a few linting errors Fixes #1717 @misolori here are the icons I picked for starting and stopping working. What do you think? Hmm...the check is often used for "done" or "active" so it feels a bit odd here. You could use the pencil though that could imply editing the issue or title: You could also try the right arrow: But i think in general you are going to have a hard time finding a good representation of "Start working". For stopping, would the square be better for an actual stop icon? We use that in notebooks for stopping an execution: For "Start working", would the git branch icon make sense? @RMacfarlane we could use that, though it is the same icon as the SCM in the activity bar: New icons: We have the pencil for editing the queries in the same tree, so I think that would be confusing. I also think the scm icon will be confusing since it's already in the activity bar.
gharchive/pull-request
2020-04-29T12:33:55
2025-04-01T04:35:03.562190
{ "authors": [ "RMacfarlane", "alexr00", "misolori" ], "repo": "microsoft/vscode-pull-request-github", "url": "https://github.com/microsoft/vscode-pull-request-github/pull/1718", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
563582105
Formatting adds an extra new line in some cases Note this is not a dup of https://github.com/microsoft/vscode-python/issues/1877. Cause of both issues mentioned below is likely the same. Have a file where the last line needs formatting 1 print ("yes") 1. BLACK FORMATTER Formats document with black Actual behavior: 1 print("yes") 2 3 Expected behavior: 1 print("yes") 2 Formatting again in this case leads to the expected behavior once https://github.com/microsoft/vscode-python/pull/10061/files is merged. 2. YAPF FORMATTER Formats document with yapf Actual behavior: 1 print("yes") 2 Expected behavior: 1 print("yes") I just ran into this issue. Here's an example repository that reproduces the issue: https://github.com/chdsbd/vscode-black-example/blob/master/main.py GitHub appears to hide trailing whitespace, but if you download the repository there will be trailing whitespace in main.py. When formatting runs from VSCode on save, the trailing whitespace will remain. But when black is run from the command line the trailing whitespace will be removed. Looking in the logs it seems like VSCode is running the following command: ~/projects/format-example/.venv/bin/python3 ~/.vscode/extensions/ms-python.python-2020.8.101144/pythonFiles/pyvsc-run-isolated.py black --diff --quiet ~/projects/format-example/main.py Which provides the following output --- /Users/chris/projects/format-example/main.py 2020-08-19 21:01:56.296536 +0000 +++ /Users/chris/projects/format-example/main.py 2020-08-19 21:02:24.683804 +0000 @@ -1,4 +1,3 @@ def main() -> None: print("hello") - It seems like the diff isn't be applied correctly because the diff removes the trailing whitespace. Disable formatting from the python extension and try ms-python.black-formatter extension. Available here: https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter I no longer see the issue with that extension.
gharchive/issue
2020-02-11T23:09:43
2025-04-01T04:35:03.566253
{ "authors": [ "chdsbd", "karrtikr" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/10060", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
679254957
Opening a notebook for the first time is overwhelming Environment data VS Code version: 1.48.0-insider Extension version (available under the Extensions sidebar): v2020.8.101144 OS and version: macOS 10.15.6 (19G73) Python version (& distribution if applicable, e.g. Anaconda): Python 2.7.17 64-bit Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda Relevant/affected Python packages and their versions: N/A Relevant/affected Python-related VS Code extensions and their versions: N/A Value of the python.languageServer setting: Jedi Expected behaviour I get that I need to have some things appear for things to work, but we should do it in a graceful way. Actual behaviour Multiple notifications appear at the same time: Trusting notebook (can be deferred until you try to run a notebook) Survey (should be deferred until a later time) Conda env for integrated terminal (should be deferred until user opens terminal) Tip for python interpreter (can either be deferred until later or surfaced in the welcome page) Steps to reproduce: Install Python extension for the first time (fresh user data directory) Open a .ipynb file :bug: a large amount of notifications appear Thanks for the issue @misolori. The survey should stop appearing if you click 'No, thanks'. And if you only use secure sources or create your own notebooks you can remove the trust notification with the setting 'Python › Data Science: Always Trust Notebooks'. We'll discuss the issue in an upcoming meeting, but let me know if that is good enough. I understand that there are ways to dismiss some of those notifications, my point was that there is a lot of noise on your first experience. It’s like being greeted by 4 people telling you 4 different things at the same time. Definitely agree on the survey. And the trust notebook is a good idea, I'll make sure to go over it on the meeting. Thanks for the feedback! Few things. First, a user will not receive the survey on first opening of a notebook. Second, we must show the Trust popup. We can't wait for the user to press Run because the user may just want to see the outputs. The third and fourth problems are in the core Python code. So I'm going to tag this for them to see. #7700
gharchive/issue
2020-08-14T16:04:15
2025-04-01T04:35:03.570455
{ "authors": [ "DavidKutu", "greazer", "karthiknadig", "misolori" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/13437", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
695814222
Automatic scroll-to-bottom for Python Interactive Window (PIW) It would be very helpful if the PIW automatically scrolled to the bottom whenever new code is run. This is how terminals and consoles normally function, and I always get a little frustrated when I run code but then have to manually scroll all the way to the bottom to see the output. This is actually by design. It's supposed to behave like a chat window. If you scroll up and you run a new cell, it won't scroll to the bottom. However if you're already at the bottom, running a new cell should scroll to the new cell. See these issues: https://github.com/microsoft/vscode-python/issues/8955 https://github.com/microsoft/vscode-python/issues/6580 I didn't realize this had already been discussed at length—my apologies! I now found the setting to turn on auto-scrolling. Thank you!
gharchive/issue
2020-09-08T12:07:55
2025-04-01T04:35:03.572068
{ "authors": [ "juandpinto", "rchiodo" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/13826", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
876961840
Discovery process never stops on main branch Add "python.logging.level": "info" user setting, activate the extension and open the Python output channel. You'll see us continuously attempt to discover interpreters and never stop. https://github.com/microsoft/vscode-python/issues/16151 is likely because of this. cc @karthiknadig This issue started from this commit https://github.com/microsoft/vscode-python/commit/54fb57655a1b1076cb2968b904535b8231c13d3a C:\GIT\s p\vscode-python>git bisect start C:\GIT\s p\vscode-python>git bisect bad C:\GIT\s p\vscode-python>git bisect good 21acd504e256686c2a7894a98f906ff0aec45513 Bisecting: a merge base must be tested [84d798fe6e383bf501a3d980f735f4a626b88c1e] Preparing the release candidate. (#15900) C:\GIT\s p\vscode-python>git bisect good Bisecting: 32 revisions left to test after this (roughly 5 steps) [8944c36b50b1de1a4e416fa310988f413336c1ac] Ensure venvPath and venvFolders setting can only be set at User or Remote settings (#15947) C:\GIT\s p\vscode-python>git bisect good Bisecting: 16 revisions left to test after this (roughly 4 steps) [ed6f5177121ec94a4d481d5044f08f3f7fbf8341] Fix a reference issue in the Build workflow C:\GIT\s p\vscode-python>git bisect good Bisecting: 8 revisions left to test after this (roughly 3 steps) [908684b3581e4956b41e12e9869d45a7522eea3b] Correct the vsix artifact name to be uploaded (#16140) C:\GIT\s p\vscode-python>git bisect bad Bisecting: 3 revisions left to test after this (roughly 2 steps) [8c86f10012aa4b249a87367632df96a95c2c7f42] Remove unused resources (#16125) C:\GIT\s p\vscode-python>git bisect bad Bisecting: 1 revision left to test after this (roughly 1 step) [6b9a71a31d642b10905c4b764420a2eaa9177ff8] Drop dead env references in build workflow C:\GIT\s p\vscode-python>git bisect good Bisecting: 0 revisions left to test after this (roughly 0 steps) [54fb57655a1b1076cb2968b904535b8231c13d3a] Ignore environment related cache where appropriate (#16114) C:\GIT\s p\vscode-python>git bisect bad 54fb57655a1b1076cb2968b904535b8231c13d3a is the first bad commit commit 54fb57655a1b1076cb2968b904535b8231c13d3a Author: Kartik Raj <karraj@microsoft.com> Date: Tue May 4 10:30:07 2021 -0700 Ignore environment related cache where appropriate (#16114) src/client/interpreter/interpreterService.ts | 12 ++++++++---- src/client/pythonEnvironments/legacyIOC.ts | 1 + src/test/interpreters/interpreterService.unit.test.ts | 1 + 3 files changed, 10 insertions(+), 4 deletions(-) C:\GIT\s p\vscode-python>
gharchive/issue
2021-05-06T00:22:13
2025-04-01T04:35:03.573850
{ "authors": [ "karrtikr", "karthiknadig" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/16160", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
491820572
Add telemetry for existence of project files It would be interesting to be able to preconfigure settings based on the existence of Python project files. E.g. if a user opens a Visual Studio Python Project, or PyCharm project, in VS Code, we could make use of these settings in those files to configure their settings in VS Code so things "just work". Before doing this we should see how often this occurs in practice, so the first step would be to add telemetry around this and see if it is a common occurrence. Closing as we haven't received any reports or requests related to this.
gharchive/issue
2019-09-10T18:07:17
2025-04-01T04:35:03.574756
{ "authors": [ "gramster", "karrtikr" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/7312", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
547902111
It displays "..." in Watch/Locals debugger windows with native code debug. Environment data Build of Visual Studio: 16.5.0 Preview 2.0 [29709.165.master] Build of Python Package: 16.5.19345.1 Expected behavior This is the correct display. Actual behaviour It displayed Python View and C++ view results after we right click "...". Steps to reproduce: Create new Python Application, add simple Python code Enable "Native Code Debugging" in project settings / debug page Set breakpoint and start debugging In Watch/Locals debugger windows, make sure that you switch Python View and C++ view Check Watch/Locals debugger windows. This issue move to https://github.com/microsoft/PTVS/issues/5963
gharchive/issue
2020-01-10T07:01:53
2025-04-01T04:35:03.577144
{ "authors": [ "linette-zyy" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/issues/9508", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
606374918
check for empty array of workspaces when getting rootpath For #11291 [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR). [x] Title summarizes what is changing. [x] Has a news entry file (remember to thank yourself!). [ ] Appropriate comments and documentation strings in the code. [ ] Has sufficient logging. [ ] Has telemetry for enhancements. [ ] Unit tests & system/integration tests are added/updated. [ ] Test plan is updated as appropriate. [ ] package-lock.json has been regenerated by running npm install (if dependencies have changed). [ ] The wiki is updated with any design decisions/details. I don't really like fixing issue without a repro. But we got an error stack from a customer that pinpointed the issue here and the fix seems quite safe, so submitting it. https://github.com/microsoft/vscode-python/issues/11291#issuecomment-617518582 Customer is running interactive window without a workspace folder open. Sometimes they are seeing the following error: DataScience Error [TypeError: Cannot read property 'uri' of undefined at s.get rootPath [as rootPath] at _.getOwningResource From my reading of the VSCode API spec on this workspaceFolders should return valid workspace folders array or undefined. But this seems to be sometimes returning an empty array for this customer. Looping in @kimadeline as well since this is shared extension code. I think it might not be an issue for this python extension, but for the vscode. This morning, I found a similar problem on Markdown All in One extension. I will go to vscode program to create an issue. Sorry for my bother and thanks for your help. @ganxy1028 I believe you are right regarding this. According to your issue it looked like VSCode was returning something from its API that should not be allowed. But my fix here just adds an extra check in our extension code to catch this error case, so while this does look like a broader VSCode issue this fix should at least unblock our extension for your usage.
gharchive/pull-request
2020-04-24T14:55:15
2025-04-01T04:35:03.581286
{ "authors": [ "IanMatthewHuff", "ganxy1028" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/pull/11388", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
547096610
pass figure_formats as a set (#9425) Port of: https://github.com/microsoft/vscode-python/pull/9425 To release branch [ ] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR) [ ] Title summarizes what is changing [ ] Has a news entry file (remember to thank yourself!) [ ] Appropriate comments and documentation strings in the code [ ] Has sufficient logging. [ ] Has telemetry for enhancements. [ ] Unit tests & system/integration tests are added/updated [ ] Test plan is updated as appropriate [ ] package-lock.json has been regenerated by running npm install (if dependencies have changed) [ ] The wiki is updated with any design decisions/details. @karthiknadig one more fix we want to port in. Codecov Report Merging #9452 into release-2019.12 will decrease coverage by 0.01%. The diff coverage is 100%. @@ Coverage Diff @@ ## release-2019.12 #9452 +/- ## =================================================== - Coverage 57% 56.98% -0.02% =================================================== Files 551 551 Lines 29416 29416 Branches 4467 4467 =================================================== - Hits 16769 16764 -5 - Misses 11701 11704 +3 - Partials 946 948 +2 Impacted Files Coverage Δ src/client/datascience/constants.ts 99.68% <100%> (ø) :arrow_up: src/client/common/utils/platform.ts 64.7% <0%> (-11.77%) :arrow_down: src/client/linters/pydocstyle.ts 86.36% <0%> (-2.28%) :arrow_down: src/client/datascience/debugLocationTracker.ts 76.56% <0%> (-1.57%) :arrow_down: src/client/common/process/proc.ts 14.81% <0%> (-0.75%) :arrow_down: Continue to review full report at Codecov. Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 6346a6f...2df0981. Read the comment docs.
gharchive/pull-request
2020-01-08T20:54:34
2025-04-01T04:35:03.594396
{ "authors": [ "IanMatthewHuff", "codecov-io" ], "repo": "microsoft/vscode-python", "url": "https://github.com/microsoft/vscode-python/pull/9452", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2277518513
Shared vscode dev link is not opening the file in the shared link Open insiders.vscode.dev with vscode-docs repo Open v1_89.md Share the file using vscode.dev link Paste the link in another browser Eg: https://insiders.vscode.dev/github.com/microsoft/vscode-docs/blob/main/release-notes/v1_89.md#1 🐛 File is not opened This works for me, does it repro still @sandy081? Its working for me now.
gharchive/issue
2024-05-03T11:51:03
2025-04-01T04:35:03.662101
{ "authors": [ "joyceerhl", "sandy081" ], "repo": "microsoft/vscode-remote-repositories-github", "url": "https://github.com/microsoft/vscode-remote-repositories-github/issues/446", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
646874234
markdown footnote display error Issue Type: Bug 1.The built-in markdown previewer can't display Chinese in footnote content. for example: demo text with footnote [^1] [^1]: if the text here is Chinese,the footnote will display some % , some numbers and Uppercase letter. 2.when the footnote content contain whitespace, such as spaces between words, regardless of the language, the previewer will not identify it is a footnote. for example: demo text with footnote [^1] [^1]: hello world! the previewer will display demo text with footnote [^1] [^1]: hello world! directly, it will not treat the text as footnote. VS Code version: Code 1.46.1 (cd9ea6488829f560dc949a8b2fb789f3cdc05f5d, 2020-06-17T21:13:20.174Z) OS version: Windows_NT x64 10.0.20152 System Info Item Value CPUs Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz (8 x 2304) GPU Status 2d_canvas: enabledflash_3d: enabledflash_stage3d: enabledflash_stage3d_baseline: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: disabled_offprotected_video_decode: enabledrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledviz_display_compositor: enabled_onviz_hit_test_surface_layer: disabled_off_okwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 15.89GB (7.43GB free) Process Argv Screen Reader no VM 29% Extensions (30) Extension Author (truncated) Version flutter-snippets ale 2.0.0 npm-intellisense chr 1.3.0 dart-code Dar 3.12.0 flutter Dar 3.12.0 vscode-markdownlint Dav 0.36.1 vscode-eslint dba 2.1.5 githistory don 0.6.5 xml Dot 2.5.0 vscode-npm-script eg2 0.3.12 vsc-material-theme Equ 32.8.0 vsc-material-theme-icons equ 1.1.4 beautify Hoo 1.5.0 csharp ms- 1.22.1 python ms- 2020.6.90262 debugger-for-chrome msj 4.12.8 awesome-flutter-snippets Nas 2.0.3 vetur oct 0.24.0 material-icon-theme PKi 4.2.0 java red 0.63.0 markdown-preview-enhanced shd 0.5.12 open-in-browser tec 2.0.0 vscodeintellicode Vis 1.2.8 vscode-java-debug vsc 0.26.0 vscode-java-dependency vsc 0.10.2 vscode-java-pack vsc 0.9.1 vscode-java-test vsc 0.23.0 vscode-maven vsc 0.22.0 vscode-icons vsc 10.1.1 markdown-pdf yza 1.4.4 material-theme zhu 3.8.2 (2 theme extensions excluded) The built-in markdown support does not support footnotes. Please file this against the markdown preview enhanced extension
gharchive/issue
2020-06-28T08:50:09
2025-04-01T04:35:03.674916
{ "authors": [ "cheapw", "mjbvz" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/101221", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
680154300
"JetBrains Mono" setted to editor.fontFamily stop working. Issue Type: Bug Install on your system jetbrains mono font. (ttf-jetbrains-mono on my archlinux). Set in your settings.json: "editor.fontFamily": "JetBrains Mono" Open a file. The font isn't rendered. Before the update it worked. VS Code version: Code 1.48.0 (db40434f562994116e5b21c24015a2e40b2504e6, 2020-08-13T07:40:55.768Z) OS version: Linux x64 5.8.1-arch1-1 System Info Item Value CPUs Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz (4 x 2800) GPU Status 2d_canvas: enabledflash_3d: enabledflash_stage3d: enabledflash_stage3d_baseline: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: disabled_offprotected_video_decode: unavailable_offrasterization: disabled_softwareskia_renderer: disabled_off_okvideo_decode: unavailable_offviz_display_compositor: enabled_onviz_hit_test_surface_layer: disabled_off_okwebgl: enabledwebgl2: enabled Load (avg) 2, 2, 2 Memory (System) 7.53GB (2.74GB free) Process Argv . --no-sandbox Screen Reader no VM 0% DESKTOP_SESSION i3 XDG_CURRENT_DESKTOP i3 XDG_SESSION_DESKTOP i3 XDG_SESSION_TYPE x11 Extensions (14) Extension Author (truncated) Version vscode-sqlite ale 0.8.2 vscode-eslint dba 2.1.8 eppz-code epp 1.2.52 prettier-vscode esb 5.1.3 auto-using Fud 0.7.15 csharpextensions jch 1.3.1 vscode-csharp-snippets jor 0.3.1 vscode-gist ken 3.0.3 csharp ms- 1.23.0 indent-rainbow ode 7.4.0 aspnet-helper sch 0.6.4 vim vsc 1.16.0 JavaScriptSnippets xab 1.8.0 markdown-all-in-one yzh 3.2.0 (21 theme extensions excluded) Have you selected all the TTF files and right-click > install? Have you selected all the TTF files and right-click > install? I installed the font with pacman the package is ttf-jetbrains-mono. Seems the new update isn't detecting the font. In fact the autocompletion only shows "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'" (default). I try with Cascadia Code and after restart vscode works. Okey, the problem was the Font Weight, it seems was set to lowest.
gharchive/issue
2020-08-17T11:14:26
2025-04-01T04:35:03.688272
{ "authors": [ "dlagg", "hiredtocode" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/104809", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
682516203
Extension host keeps crashing! VSCode Version:1.48.0(user setup) OS Version: Windows 10 Enterprise Steps to Reproduce: It's random. It feels like a freeze than my i7 cpu starts to heavily load and fans are blowing than it crashes and I need to restart the host. Does this issue occur when all extensions are disabled?: Yes Actually you disabled all extensions. Let me reopen and can you repro with vscode insiders? @isidorn I'm getting this on two Macs. Happy to help test anything that might fix it. I found out that is was prettier. Somehow it couses conflicts. I think with my eslint. I disabled it and did not got the error for now in days. Tried the insiders, but that wont run well with my workspace project. It starts but, I can not colapse folders.
gharchive/issue
2020-08-20T08:12:05
2025-04-01T04:35:03.692255
{ "authors": [ "dkok1988", "isidorn", "philsherry" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/105057", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
728301966
Can't use Git Windows when project is opened in remote WSL VSCode Version: 1.50.1 OS Version: Linux x64 4.4.0-18362-Microsoft (WSL1 on Windows 10) Open a remote project in VisualStudioCode Try git commands in GitBash or actions in GitGui Enjoy the error message: Rename from 'C:/workspace/myproject/.git/index.lock' to 'C:/workspace/myproject/.git/index' failed. Should I try again? I saw other issues related to this, all closed without any working workaround (#901, #987, #90186). I tried to deactivate everything about git, it makes no difference. GitLens is deactivated. I have git.enabled: false, git.autorefresh: false and git.autofetch: false. Interesting point though: the git commands are working inside the WSL console, and not in the GitWindows console. I had the same problem with my previous setup (older versions of Windows, WSL-Ubuntu, VSCode and GitWindows), so this is not specific to the versions I am using right now. Does this issue occur when all extensions are disabled?: Yes (except for Remote-WSL) If your repository is in Windows, please use Git for Windows. If your repository is in WSL, please use Git inside WSL. How is this related? Well everything works fine as long as VS Code is not executing so it is obviously the cause of the issues. Even with git fully disabled in VS Code it is still locking the git index somehow, and no other command or tool is doing this. The repository is in Windows btw, but I compile it in the WSL console, and the filesystem is in windows anyway. The repository is in Windows btw, but I compile it in the WSL console, and the filesystem is in windows anyway. Got it. This is an unsupported scenario. I highly recommend using Git for Windows, if your files are in Window since (1) much better performance and (2) no FS errors like the above. I do use Git for Windows, it's Git for Windows that is not working when VS Code is running remote on the windows workspace. I don't have the issue if I open the workspace normally (not in remote). And I don't have the issue if VS Code is running for another project. So, somehow, opening the workspace using remote will lock the git index even if all git settings are disabled in VS Code.
gharchive/issue
2020-10-23T15:15:29
2025-04-01T04:35:03.698709
{ "authors": [ "joaomoreno", "ymoreau" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/109242", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
745051275
Hidden menu bar stays shown when mnemonics are used VSCode Version: 1.51.1 OS Version: Linux x64 5.4.77-1-lts Steps to Reproduce: Set window.menuBarVisibility to "hidden" Set window.enableMenuBarMnemonics to true → menu is now hidden Press Alt + F → menu is now show and File is deployed press Esc twice to close menu bar ➜ menu bar stays open The menu bar should close as it is set to "hidden". Does this issue occur when all extensions are disabled?: Yes @deepak1556 in the hidden case, mnemonics should not bring up the menu it all, but electron still brings them up Unable to repro with latest stable 1.74
gharchive/issue
2020-11-17T20:09:28
2025-04-01T04:35:03.702298
{ "authors": [ "Azorlogh", "deepak1556", "sbatten" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/110822", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
785856472
Uncrustify not shown in the extension marketplace VSCode Version: 1.52.1 Commit: ea3859d4ba2f3e577a159bc91e3074c5d85c0523 Date: 2020-12-16T16:32:10.090Z Electron: 9.3.5 Chrome: 83.0.4103.122 Node.js: 12.14.1 V8: 8.3.110.13-electron.0 OS Version: ubuntu 20.04 (5.8.0-36-generic) Steps to Reproduce: 1.Open extension marketplace 2. Search for uncrustify Does this issue occur when all extensions are disabled?: No It was unpublished from Marketplace - see note in the header. https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.uncrustify It was unpublished from Marketplace - see note in the header. https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.uncrustify It was unpublished from Marketplace - see note in the header. https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.uncrustify It was unpublished from Marketplace - see note in the header. https://marketplace.visualstudio.com/items?itemName=LaurentTreguier.uncrustify Oh, thats sad Oh, thats sad
gharchive/issue
2021-01-14T10:08:42
2025-04-01T04:35:03.708400
{ "authors": [ "IllusionMH", "picatostas" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/114344", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
842671772
[simple browser] icons are broken in firefox Originally reported in Gitpod: https://github.com/gitpod-io/gitpod/issues/3474 But I can reproduce in Codespaces with latest Firefox as well: @mjbvz seems like a simple browser issue, codicons in the screenshot above appear to have been loaded.
gharchive/issue
2021-03-28T06:05:52
2025-04-01T04:35:03.710229
{ "authors": [ "akosyakov", "misolori" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/120036", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
848339521
wsl terminal There is no support for multilingualism I will pull merge request wsl -l -q Duplicate of #120321 it seems to be solved with this PR https://github.com/microsoft/vscode/pull/120382 Duplicate of #120321 This should be fixed in Insider's
gharchive/issue
2021-04-01T10:26:31
2025-04-01T04:35:03.713220
{ "authors": [ "lengyuxuan", "meganrogge", "mpasteur", "takapiro99" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/120333", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
925363433
[css] Color picker for css variables Currently vs code color picker doesn't display color picker on hover for a color picker where css variable is used. E.g. color: hsl(0, 0%, 0%) ^Works But, --hue-color: 250 color: hsl(var(--hue-color), 0%, 0%) ^Doesn't work. Is there a way to make it work? If the feature is not implemented is there any challenge to do so. I am currently looking at the code how this can be implemented but if some can direct me where to start would be great. @aeschli Yes, first part is a bit difficult to solve for. Esp bc there can be multiple ways CSS files can used together. One possible way is to take manual config per project basis, but not sure how can we standardize that. We can mount the variable values as read only.
gharchive/issue
2021-06-19T10:13:35
2025-04-01T04:35:03.715870
{ "authors": [ "baymac" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/126733", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
930756635
Add support for OSC 8 hyperlinks Support for in-terminal hyperlinks was recently added to Microsoft Terminal. We should support these in the VSCode terminal too! https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda Related issues: https://github.com/microsoft/terminal/issues/204 https://github.com/microsoft/terminal/issues/5001 /duplicate https://github.com/xtermjs/xterm.js/issues/1134
gharchive/issue
2021-06-26T17:29:21
2025-04-01T04:35:03.718423
{ "authors": [ "Tyriar", "pd93" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/127229", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
931074730
[TestUI] UI Display should clear timing display and tooltips when "clear data" is run Issue Type: Bug @connor4312 Example (clear data was run but Basic.Tests.ps1 still shows 0.0ms and whatnot) VS Code version: Code - Insiders 1.58.0-insider (49e1f9919880c1c96004f9b6ad91bcee7a94a1bd, 2021-06-25T05:14:20.119Z) OS version: Windows_NT x64 10.0.19042 Restricted Mode: No System Info Item Value CPUs AMD Ryzen 5 2600 Six-Core Processor (12 x 3850) GPU Status 2d_canvas: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: enabled_onvideo_decode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 15.95GB (4.97GB free) Process Argv --crash-reporter-id d15abc04-2f14-48d4-98ba-287dac26245f Screen Reader no VM 0% Extensions (40) Extension Author (truncated) Version emojisense bie 0.8.0 markdown-checkbox bie 0.1.3 vscode-opennewinstance chr 0.0.7 bracket-pair-colorizer-2 Coe 0.2.1 esbuild-problem-matchers con 0.0.2 vscode-generate-getter-setter DSK 0.5.0 gitlens eam 11.5.1 filter-lines ear 1.0.0 remotehub Git 0.10.1 vscode-pull-request-github Git 0.27.1 todo-tree Gru 0.0.213 vscode-test-explorer hbe 2.20.4 vscode-drawio hed 1.5.0 change-case hjd 1.0.2 git-graph mhu 1.30.0 vscode-azureresourcegroups ms- 0.4.0 vscode-bicep ms- 0.4.63 csharp ms- 1.23.12 vscode-dotnet-runtime ms- 1.1.0 remote-containers ms- 0.184.0 remote-ssh-nightly ms- 2021.5.29700 azure-account ms- 0.9.8 powershell-preview ms- 2021.6.1 test-adapter-converter ms- 0.0.12 vscode-paste-image mus 1.0.4 indent-rainbow ode 7.5.0 docthis oou 0.8.2 quicktype qui 12.0.46 vscode-commons red 0.0.6 vscode-yaml red 0.20.0 vscode-sort-json ric 1.20.0 tabnine-vscode Tab 3.4.10 vscode-inline-values-powershell Tyl 0.0.5 errorlens use 3.3.0 vscode-icons vsc 11.5.0 codetour vsl 0.0.56 gistfs vsl 0.2.9 gitmoji-vscode Vtr 1.0.7 quokka-vscode Wal 1.0.381 better-align wwm 1.1.6 A/B Experiments vsliv695:30137379 vsins829:30139715 vsliv368:30146709 vsreu685:30147344 python383:30185418 pythonvspyt602:30291494 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyt639:30291487 pythontb:30258533 pythonvspyt551cf:30291413 vspre833:30321513 pythonptprofiler:30281269 vshan820:30294714 pythondataviewer:30285072 vscus158:30321503 pythonvsuse255:30319630 vscorehov:30301224 3f5j7703:30294757 vscod805:30301674 pythonvspyt200:30323110 vscextlang:30310088 vsccppwtct:30312693 @connor4312 thank you!
gharchive/issue
2021-06-28T01:17:15
2025-04-01T04:35:03.739374
{ "authors": [ "JustinGrote" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/127279", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
943736447
Closing File freezes VSCode for a second Issue Type: Performance Issue Just close a File - see issue. VS Code version: Code 1.58.0 (Universal) (2d23c42a936db1c7b3b06f918cde29561cc47cd6, 2021-07-08T06:54:17.694Z) OS version: Darwin arm64 20.5.0 Restricted Mode: No System Info Item Value CPUs Apple M1 (8 x 24) GPU Status 2d_canvas: enabledgpu_compositing: enabledmetal: disabled_offmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledwebgl: enabledwebgl2: enabled Load (avg) 3, 3, 2 Memory (System) 8.00GB (0.19GB free) Process Argv --crash-reporter-id 218c3f12-e3ec-4ae3-8b4b-fafa3601a1ff Screen Reader no VM 0% Extensions (40) Extension Author (truncated) Version better-comments aar 2.1.0 html-snippets abu 0.2.1 vscode-intelephense-client bme 1.7.1 vscode-tailwindcss bra 0.6.13 path-intellisense chr 2.3.0 bracket-pair-colorizer Coe 1.0.61 vscode-database-client2 cwe 3.9.4 macos-modern-theme dav 2.1.9 vscode-eslint dba 2.1.23 gitlens eam 11.6.0 vscode-npm-script eg2 0.3.22 prettier-vscode esb 8.0.1 php-intellisense fel 2.3.14 auto-close-tag for 0.5.11 auto-rename-tag for 0.1.7 live-sass gle 5.0.4 helium-icon-theme hel 1.0.0 beautify Hoo 1.5.0 path-autocomplete ion 1.17.1 mysql-syntax jak 1.3.1 remotefs lix 0.0.16 vscode-JS-CSS-HTML-formatter lon 0.2.3 regionfolder map 1.0.15 vscode-language-pack-de MS- 1.58.7 python ms- 2021.6.944021595 vscode-pylance ms- 2021.7.2 jupyter ms- 2021.8.1013163132 material-icon-theme PKi 4.8.0 LiveServer rit 5.6.1 ActiveFileInStatusBar Ros 1.0.3 mdx sil 0.1.0 sass-indented syl 1.8.17 tabnine-vscode Tab 3.4.13 es6-string-html Tob 2.10.0 pdf tom 1.1.0 vscodeintellicode Vis 1.2.14 vscode-icons vsc 11.5.0 material-ui-snippets vsc 3.3.3 twig wha 1.0.2 JavaScriptSnippets xab 1.8.0 (3 theme extensions excluded) A/B Experiments vsliv368:30146709 vsreu685:30147344 python383:30185418 pythonvspyt602:30300191 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyt639:30300192 pythontb:30283811 pythonvspyt551cf:30311713 vspre833:30321513 pythonptprofiler:30281270 vshan820:30294714 vstes263:30335439 pythondataviewer:30285071 vscus158:30321503 pythonvsuse255:30335481 vscod805:30301674 pythonvspyt200cf:30331938 vscextlangct:30333562 binariesv615:30325510 bridge0708:30335490 /needsMoreInfo @kieferrm What kind of Information do you need? I submitted the issue using the Performance-Issue Tool in VSCcode. Please have a look at: https://github.com/microsoft/vscode/wiki/Performance-Issues. I'm guessing it's one of the extensions you have installed. You can also use extension bisect: https://code.visualstudio.com/blogs/2021/02/16/extension-bisect. Thanks! @kieferrm bisect could not find any issues :( It told me that the possible problem is "code." Please follow the steps below to get following two traces: Main process * Launch vscode like `code --inspect=9229` * In chrome browser visit chrome://inspect or in edge browser visit edge://inspect * You should see an entry under Remote Target that starts with /Applications/Visual Studio Code/.... * If you don't see the above entry, then * Under Devices, click open dedicated devtools for node * Under Connection tab, add localhost:9229 * You should now see the target * Click inspect * Go to Profiler tab and start the CPU profiler * Now perform the steps in vscode that recreate the slowdown * Stop the profiler and attach it to this issue. Workbench process * Launch vscode normally * Open Command Palette and run `Toggle Developer Tools` * Choose Performance tab * Hit the reload and record button * Perform the steps to slowdown and stop recording * Attach the generated trace
gharchive/issue
2021-07-13T18:55:22
2025-04-01T04:35:03.763088
{ "authors": [ "BerkeAras", "deepak1556", "kieferrm" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/128567", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
958458190
rename using F2 Issue Type: Bug I selected an html div tag and then pressed F2 key to rename the tag along with its closing tab, after entering a new name suddenly all div tags in all of my files in my project renamed to the new name. That was so wierd and critical bug. Fortunately I was using git VCS and I could undo all the changes in 147 files :D. Thanks, Moga. VS Code version: Code 1.58.2 (c3f126316369cd610563c75b1b1725e0679adfb3, 2021-07-14T22:10:15.214Z) OS version: Windows_NT x64 10.0.19043 Restricted Mode: No System Info Item Value CPUs Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz (8 x 2592) GPU Status 2d_canvas: enabledgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: enabledopengl: enabled_onrasterization: enabledskia_renderer: enabled_onvideo_decode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) undefined Memory (System) 7.43GB (0.88GB free) Process Argv --crash-reporter-id 63fd5075-69a5-4e66-ad55-b8bb4f8c57a1 Screen Reader no VM 0% Extensions (9) Extension Author (truncated) Version vscode-css-formatter aes 1.0.1 es7-react-js-snippets dsz 3.1.1 vscode-language-babel mgm 0.0.31 csharp ms- 1.23.14 material-icon-theme PKi 4.8.0 LiveServer rit 5.6.1 markdown-preview-enhanced shd 0.5.22 lorem-ipsum Tyr 1.2.0 vscode-icons vsc 11.6.0 A/B Experiments vsliv368cf:30146710 vsreu685:30147344 python383cf:30185419 pythonvspyt700cf:30270857 pythonvspyt602:30300191 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyt639:30300192 pythontb:30283811 pythonptprofiler:30281270 vshan820:30294714 vstes263cf:30335440 pythondataviewer:30285071 pythonvsuse255:30340121 vscod805:30301674 pythonvspyt200:30340761 vscextlangct:30333562 binariesv615:30325510 vsccppwt:30329788 pythonvssor306:30344512 bridge0708:30335490 The html mode does not rename across files. Can it be you were in a tsx file? The html mode does not rename across files. Can it be you were in a tsx file? It was a react jsx file. Please share example code that demonstrates the issue Also does this reproduce in the latest VS Code insiders build with all extensions disabled? Closing as needs more info
gharchive/issue
2021-08-02T19:53:03
2025-04-01T04:35:03.775052
{ "authors": [ "aeschli", "mjbvz", "mogaozq" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/129991", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1132207784
Git - use git mv when a file is being renamed in the explorer Investigate the possibility of installing a handler that would participate in the file move operation and invoke git mv. possible code here https://github.com/adam8810/vscode-git-rename https://marketplace.visualstudio.com/items?itemName=ambooth.git-rename [https://marketplace.visualstudio.com/items?itemName=erickriva.git-watch-vscode-rename](This extension) is intended to solve a very-specific case, where changing only file/folder name case is not registered in Git as a different file/folder. +1 for this: Considering that GitHub and VS Code are owned by the same company, my assumption was that everything is designed to work with Git. I suppose I am not alone with this assumption. Seems to me that the thing here is that this unfortunately wouldn't solve a problem. I ended up here because I (wrongly) assumed that it should. But I just did extensive experimenting and unless I missed something, it doesn't matter whether you renamed a file through the OS or by using git mv. git will make the decision whether it recognizes a file as having gotten renamed purely based on file content when staging changes. (In addition to basic experiments with a single commit, I also tried splitting up renaming and changing content into different commits. But once reviewing it on GitHub, it has no more knowledge about the file having gotten renamed, just like git diff.)
gharchive/issue
2022-02-11T09:42:53
2025-04-01T04:35:03.779079
{ "authors": [ "bgbruno", "erickriva", "lszomoru", "s-h-a-d-o-w", "villesundell" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/142821", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1203857962
Symbolic link on Debian is deleted everytime VSCode gets updated Issue Type: Bug Hello! It's just a minor nuissance, but everytime that VSCode updates, I no longer can launch it via terminal typing "code ." because the symbolic link that is usually located on my /usr/bin is deleted. Then, I have to manually recreate it. Again, not really a "system breaking bug" but I noticed that on others distros that I have here (to be more specific, Bodhi Linux and Zorin) it works just fine after updates. Only on my main machine (that have a Debian 11 installed) it occurs. Thank you in advance!! ;) VS Code version: Code 1.66.2 (dfd34e8260c270da74b5c2d86d61aee4b6d56977, 2022-04-11T07:49:24.808Z) OS version: Linux x64 5.10.0-9-amd64 Restricted Mode: No System Info Item Value CPUs AMD Ryzen 5 1500X Quad-Core Processor (8 x 3591) GPU Status 2d_canvas: enabledcanvas_oop_rasterization: disabled_offdirect_rendering_display_compositor: disabled_off_okgpu_compositing: enabledmultiple_raster_threads: enabled_onoop_rasterization: disabled_offopengl: enabled_onrasterization: disabled_softwareraw_draw: disabled_off_okskia_renderer: enabled_onvideo_decode: disabled_softwarevideo_encode: disabled_softwarevulkan: disabled_offwebgl: enabledwebgl2: enabled Load (avg) 2, 1, 1 Memory (System) 15.62GB (9.90GB free) Process Argv . --crash-reporter-id d4d87d11-37ab-4b5f-9caf-4dec3c8d94e9 Screen Reader no VM 0% DESKTOP_SESSION gnome XDG_CURRENT_DESKTOP GNOME XDG_SESSION_DESKTOP gnome XDG_SESSION_TYPE x11 Extensions (7) Extension Author (truncated) Version vscode-css-formatter aes 1.0.2 vscode-eslint dba 2.2.2 code-runner for 0.11.7 vsliveshare ms- 1.0.5527 material-icon-theme PKi 4.15.0 LiveServer rit 5.7.5 quokka-vscode Wal 1.0.457 A/B Experiments vsliv368:30146709 vsreu685:30147344 python383:30185418 vspor879:30202332 vspor708:30202333 vspor363:30204092 pythonvspyl392:30443607 pythontb:30283811 pythonptprofiler:30281270 vsdfh931:30280409 vshan820:30294714 vstes263cf:30335440 vscorecescf:30445987 pythondataviewer:30285071 vscod805cf:30301675 pythonvspyt200:30340761 binariesv615:30325510 bridge0708:30335490 bridge0723:30353136 vsaa593cf:30376535 vsc1dst:30438360 pythonvs932:30410667 wslgetstarted:30449410 pythonvsnew555:30457759 vscscmwlcmt:30465135 Hey, there!! Just writing down to inform you that, after I updated the kernel (currently using 5.16.0-0.bpo.4-amd64) the problem seems to have ceased. I don't know if it was a coincidence (maybe you did something to correct the issue as I did the kernel update) but since then, VSCode updated a bunch of times and the symlink seems to be OK!
gharchive/issue
2022-04-13T22:44:28
2025-04-01T04:35:03.791180
{ "authors": [ "GuilhermeSoaresGarcia" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/147419", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1249752472
Use gitattributes encoding when opening a file It would be a very good idea for VSCode to take into account the ".gitattributes" file to apply the encoding when opening files. *.html encoding=utf-8 *.c encoding=cp1252 This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation. Happy Coding! :slightly_frowning_face: In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation. Happy Coding!
gharchive/issue
2022-05-26T15:57:58
2025-04-01T04:35:03.795662
{ "authors": [ "SecSamDev", "VSCodeTriageBot" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/150462", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1323473650
Each time I open VScode, I need to log back in to my Microsoft account VS Code Version: 1.69.2 OS Version: Darwin arm64 22.0.0 Steps to Reproduce: quit vscode reopen vscode /duplicate of #152964 Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for similar existing issues. See also our issue reporting guidelines. Happy Coding!
gharchive/issue
2022-07-31T14:13:46
2025-04-01T04:35:03.798456
{ "authors": [ "VSCodeTriageBot", "evimacs", "gjsjohnmurray" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/156754", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1389735246
Add branch name and filenames in autosuggest list for commit message editor This will remove the need for copy pasting branch name and filenames in the commit message. Just type the first letter and press Control+Space to complete. This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation. Happy Coding! :slightly_frowning_face: In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation. Happy Coding!
gharchive/issue
2022-09-28T17:47:07
2025-04-01T04:35:03.802387
{ "authors": [ "VSCodeTriageBot", "asherlporetz" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/162232", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1580681182
Can't copy or edit built-in keybindings with arguments Type: Bug Built-in keybindings that involve arguments for the command can't really be interacted with in any meaningful way from the keybindings GUI Copy - The copied text doesn't include arguments so the binding isn't actually usable. Change Keybinding - Looses the arguments and therefore the binding no longer works. Add Keybinding - doesn't work, again no args. Remove Keybinding - works Change When Expression - Nope, nukes the args. Arguments aren't displayed in the GUI VS Code version: Code - Insiders 1.76.0-insider (c7930ca55d072608625ba76c13b5f9baaf9a2136, 2023-02-10T16:22:19.445Z) OS version: Windows_NT x64 10.0.19045 Modes: Sandboxed: Yes System Info Item Value CPUs AMD Ryzen 9 5950X 16-Core Processor (32 x 3400) GPU Status 2d_canvas: enabledcanvas_oop_rasterization: disabled_offdirect_rendering_display_compositor: disabled_off_okgpu_compositing: enabledmultiple_raster_threads: enabled_onopengl: enabled_onrasterization: enabledraw_draw: disabled_off_okskia_renderer: enabled_onvideo_decode: enabledvideo_encode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabledwebgpu: disabled_off Load (avg) undefined Memory (System) 31.92GB (21.04GB free) Process Argv Screen Reader no VM 0% Extensions: none A/B Experiments vsliv695:30137379 vsins829:30139715 vsliv368cf:30146710 vsreu685:30147344 python383:30185418 vspor879:30202332 vspor708:30202333 vspor363:30204092 vslsvsres303:30308271 pythonvspyl392:30422396 pythontb:30258533 pythonptprofiler:30281269 vsdfh931cf:30280410 vshan820:30294714 pythondataviewer:30285072 vscod805cf:30301675 bridge0708:30335490 bridge0723:30353136 cmake_vspar411:30581797 vsaa593cf:30376535 pythonvs932:30404738 cppdebug:30492333 vsclangdf:30492506 c4g48928:30535728 dsvsc012cf:30540253 pynewext54:30618038 pylantcb52:30590116 pyindex848:30611229 nodejswelcome1:30587009 pyind779:30611226 pythonsymbol12:30651887 2i9eh265:30646982 showlangstatbar:30659908 pythonb192cf:30661257 /duplicate Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for similar existing issues. See also our issue reporting guidelines. Happy Coding! Duplicate of which issue? Duplicate of which issue? https://github.com/microsoft/vscode/issues/84072
gharchive/issue
2023-02-11T06:10:16
2025-04-01T04:35:03.811977
{ "authors": [ "VSCodeTriageBot", "abyrd-phx", "akbyrd", "sandy081" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/174125", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1677741972
add more accessibility.verbosity settings / hints With the initial small set that we allow configuring in #180365, we should find other components that would benefit from: a setting like this an aria-label with helpful information and then a setting like this Originally posted by @meganrogge in https://github.com/microsoft/vscode/issues/172465#issuecomment-1515470745 I noticed that the notebook editor has an aria alert when certain parts of a cell are focused with some navigation hints. I haven't actually seen it triggered much when playing around with it, but it seems potentially noisy and could benefit from this setting - https://github.com/microsoft/vscode/blob/main/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts#L2239 Should also potentially be added to the public api on the AccessibilityInformation type This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation. Happy Coding! I'll continue to think about this, but considering this finished for now Verify that the accessibility verbosity setting description makes sense and that it works when you have a screen reader on for accessibility.verbosity.notebook and accessibility.verbosity.keybindingsEditor for notebooks, you should see press escape to focus the cell container... or press enter to focus the inner... depending on where you click. for the keybindings editor, when you focus a row, you should see use space or enter to change the keybinding @rebornix can you pls provide more specific steps for the notebook case as I found it hard to trigger as did @amunger ? If I have a markdown cell in preview mode and hit enter, I hear 'press escape to focus the cell container'. If I then press escape to put the cell back into preview mode, I then hear 'press enter to focus the inner markdown editor. These instructions are not announced if I have accessibility.verbosity.notebook` disabled ✅. When I click into a notebook cell editor I hear 'the editor is not accessible at this time', which I don't really understand, is that expected? When I click into a notebook cell editor I hear 'the editor is not accessible at this time', which I don't really understand, is that expected? That sounds like a bug, but unrelated to these changes. @rebornix might have more info I'll file an issue
gharchive/issue
2023-04-21T03:52:44
2025-04-01T04:35:03.819499
{ "authors": [ "VSCodeTriageBot", "amunger", "joyceerhl", "meganrogge", "mjbvz" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/180470", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1851837148
Ability to wrap long cells in Data Wrangler Data Wrangler has a lot of nifty features for filtering, viewing the distribution of each feature, doing operations on the dataframe, etc., but sometimes I'd also like it use it in a more basic way to just look at the data (like I would in Excel/Numbers/Sheets/whatever). It'd be great if I could wrap long cells so that I can read the full content of the cell. Excited to see this continue to develop. Thanks! 🙏 This issue is caused by an extension, please file it with the repository (or contact) the extension has linked in its overview in VS Code or the marketplace for VS Code. See also our issue reporting guidelines. If you don't know which extension is causing the problem, you can run Help: Start extension bisect from the command palette (F1) to help identify the problem extension. Happy Coding! My mistake, I didn't realize when opening this that I should have done so on the dedicated repo for the extension itself. It looks like someone else made the same feature request recently anyhow. https://github.com/microsoft/vscode-data-wrangler/issues/84
gharchive/issue
2023-08-15T17:27:08
2025-04-01T04:35:03.823026
{ "authors": [ "VSCodeTriageBot", "chambliss" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/190511", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1921174320
Settings Editor overlaps with editor group highlight Does this issue occur when all extensions are disabled?: Yes/No VS Code Version: OS Version: The bottom of the setting editor overlaps with the border of the editor group Duplicate of #183503
gharchive/issue
2023-10-02T03:11:12
2025-04-01T04:35:03.825392
{ "authors": [ "rebornix", "rzhao271" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/194582", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1994671530
[extension activation] Extension not activated on certain contribution points. Dear VSCode devs, this is a follow up to https://github.com/microsoft/vscode-discussions/discussions/901 , pinging you here as I believe there may be a bug, not sure VS Code Version: 1.82 OS Version: Linux Starting with VSCode 1.75 (I believe), when extensions contribute a language, they don't need to declare it in activation events. This works well for our extension .v files (cc: https://github.com/ejgallego/coq-lsp ), however, we'd also like our extension to be activated on certain markdown files ending in .mv. This is the relevant part of our package.json "contributes": { "languages": [ { "id": "markdown", "aliases": [ "Markdown" ], "extensions": [ ".mv" ] } ], The situation here is strange: if I activate the extension by other means, .mv files work fine and are recognized by our language server. if I start from an empty VSCode workspace, and I open just a .mv file, the extension won't be activated. The extension is activated normally by .v files, which are also declared on contributes.language I'm not sure if this is intended or a bug, but given the recent changes to activation in 1.75 I thought I'd signal this to you folks. Thanks for creating this issue! It looks like you may be using an old version of VS Code, the latest stable release is 1.84.2. Please try upgrading to the latest version and checking whether this issue remains. Happy Coding! We will only do an implicit activation for "main" language contributions, i.e. contributions that include the language configuration. This behavior is currently as designed, I'd suggest to declare a standard onLanguage: activation event for your scenario. Thanks a lot for the information @joyceerhl , I was not aware of the notion of this rule, it makes sense! I'll actually play with the alias property too, as our language is really an alias, but so far the onLanguage plus the file selection rule is working as we desire as our extension is only activated for .mv files and not for .md files. I checked the API docs, maybe this could be documented more directly? I was looking here https://code.visualstudio.com/api/references/activation-events#onLanguage If so let me know and I'll be happy to prepare a documentation PR. Please feel free to send a PR, thank you!
gharchive/issue
2023-11-15T12:20:47
2025-04-01T04:35:03.832805
{ "authors": [ "VSCodeTriageBot", "ejgallego", "joyceerhl" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/198295", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2165417112
Store at .vscode/settings.json workspace the Window size (width, height) It would be nice to have a way to store the Window width, and height in the .vscode/settings.json, so if the user wanted to use these settings the window would open at the values ​​the user wants for that workspace. Are there other apps with support for that feature? Another issue is if the user resizes the window after, would the setting have to update itself? This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines. Happy Coding!
gharchive/issue
2024-03-03T15:30:05
2025-04-01T04:35:03.835230
{ "authors": [ "VSCodeTriageBot", "microhobby", "rzhao271" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/206729", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2241651215
Pattern (?<!\)backtick in end property didn't match \backtick in backtick string Does this issue occur when all extensions are disabled?: No Version: 1.88.1 Commit: e170252f762678dec6ca2cc69aba1570769a5d39 Date: 2024-04-10T17:43:08.196Z (2 days ago) Electron: 28.2.8 ElectronBuildId: 27744544 Chromium: 120.0.6099.291 Node.js: 18.18.2 V8: 12.0.267.19-electron.0 OS: Darwin arm64 22.6.0 Steps to Reproduce: Install extension from https://github.com/gomez-git/inline_sql_syntax Pattern defined here https://github.com/gomez-git/inline_sql_syntax/blob/d8a657e1e780b4f0ec05cf4880754dc6368fafc0/syntaxes/highlight-sql-string.json#L18 Try this snippet: const sql1 = 'SELECT \'HELLO\' FROM db;'; const sql2 = "SELECT \"HELLO\" FROM db;"; const sql3 = `SELECT \`HELLO\` FROM db;`; console.log('Test'); Highlighting breaks at line 3. You need to handle escaped quotes and backticks currently SQL starts a string at the escaped quotes and backtick and incorrectly finishes at the escaped quote but correctly doesn't finish at the escaped backtick SQL handles escape double quotes and single quotes differently to backticks https://github.com/microsoft/vscode-mssql/blob/88f05c1fe47b1e55b2b10d47d476987dd7855058/syntaxes/SQL.plist#L935 https://github.com/microsoft/vscode-mssql/blob/88f05c1fe47b1e55b2b10d47d476987dd7855058/syntaxes/SQL.plist#L831 https://github.com/microsoft/vscode-mssql/blob/88f05c1fe47b1e55b2b10d47d476987dd7855058/syntaxes/SQL.plist#L883 also "injectionSelector" should be a single string you're just lucky that the array converts to a string with valid comma , joiners SQL handles escape double quotes and single quotes differently to backticks So it's impossible to achieve what i want with backticks? also "injectionSelector" should be a single string you're just lucky that the array converts to a string with valid comma , joiners I fork the repo, but thank for your correction! @gomez-git can you share a screenshot that shows how highlighting breaks? @gomez-git can you share a screenshot that shows how highlighting breaks? Ah I missed that you have created your own extension and I was just testing with the built in SQL extension. Since this issue doesn't exist in the built in SQL extension it seems like an bug in your extension. This issue is caused by an extension, please file it with the repository (or contact) the extension has linked in its overview in VS Code or the marketplace for VS Code. See also our issue reporting guidelines. If you don't know which extension is causing the problem, you can run Help: Start extension bisect from the command palette (F1) to help identify the problem extension. Happy Coding!
gharchive/issue
2024-04-13T16:43:47
2025-04-01T04:35:03.846075
{ "authors": [ "RedCMD", "VSCodeTriageBot", "alexr00", "gomez-git" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/210307", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2408693581
Replacement of standard icons with Material Icon Theme I think that the standard icons of vscode are rather gloomy, there are no and many icons for different types of files are missing, and I think that it would be better to replace them with Material Icons, because these icons are much more attractive, clearer and the most popular (24M+ downloads), you can see for yourself: Default icons Material icons If they are pre-installed in vscode, then the editor will be much better If you accept this update, make it so that the new default icons appear only for new users, and for those who currently have default icons, they will remain the same, this will be the most tolerant solution As you know, the The Material Icon Theme is not owned and maintained not by us, but by Philipp Kief with the help of many contributors. Philipp does a fantastic job, and I can tell you that maintaining a icon theme is a lot of work. Making the Material theme a built-in theme would mean for us to take ownership of it. Its (a.) not what we want; we have too much on our plate already and (ab) (I think) also Philipp isn't keen of giving away his work and loosing the freedom to improve the theme the way he likes. It's very easy for users to install a theme from the marketplace and the sharing of work is the best model for the success of VS Code and to the benefit of all user, even, if it means a few extra clicks to install a theme. Closing as out-of-scope As you know, the The Material Icon Theme is not owned and maintained not by us, but by Philipp Kief with the help of many contributors. Philipp does a fantastic job, and I can tell you that maintaining a icon theme is a lot of work. Making the Material theme a built-in theme would mean for us to take ownership of it. Its (a.) not what we want; we have too much on our plate already and (ab) (I think) also Philipp isn't keen of giving away his work and loosing the freedom to improve the theme the way he likes. It's very easy for users to install a theme from the marketplace and the sharing of work is the best model for the success of VS Code and to the benefit of all user, even, if it means a few extra clicks to install a theme. Closing as out-of-scope The thing is, I didn't say to give you the Material Icons repository, but to make them pre-installed, I don't know exactly how it works for you, but I'm thinking of just putting the .vsix extension in the vscode build And to have the Material icons theme as the default and the old default vscode icons to be pre-installed as well and can be selected at any time @aeschli, would it be possible to do it as written in my plan? All extensions that are built-in VS Code are open source and maintained/owned by us. There are various benefits to that, in particular we can ensure that all changes are reviewed and tested. All extensions that are built-in VS Code are open source and maintained/owned by us. There are various benefits to that, in particular we can ensure that all changes are reviewed and tested. First, please reopen this issue Second, I will try to create a fork with these icons if possible All extensions that are built-in VS Code are open source and maintained/owned by us. There are various benefits to that What are the other benefits? 🧐 And why should they be yours or should you maintain them?
gharchive/issue
2024-07-15T13:02:29
2025-04-01T04:35:03.855822
{ "authors": [ "aeschli", "okineadev" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/221714", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2446964168
Terminal is not working fine. Type: Bug When i am creating the vite app by writing npm create @vite project-name. Then when it ask for the type project and while clicking down arrow key it is repeating the same command again and again for e.g: $ npm create vite@latest chatt ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue ? Select a framework: » - Use arrow-keys. Return to submit. Vanilla Vue React Preact Lit Svelte Solid Qwik Others **Also when I increase the height of the terminal i do not face the same issue. VS Code version: Code 1.92.0 (b1c0a14de1414fcdaa400695b4db1c0799bc3124, 2024-07-31T23:26:45.634Z) OS version: Windows_NT x64 10.0.22631 Modes: System Info Item Value CPUs 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (8 x 2419) GPU Status 2d_canvas: enabledcanvas_oop_rasterization: enabled_ondirect_rendering_display_compositor: disabled_off_okgpu_compositing: enabledmultiple_raster_threads: enabled_onopengl: enabled_onrasterization: enabledraw_draw: disabled_off_okskia_graphite: disabled_offvideo_decode: enabledvideo_encode: enabledvulkan: disabled_offwebgl: enabledwebgl2: enabledwebgpu: enabledwebnn: disabled_off Load (avg) undefined Memory (System) 7.75GB (1.36GB free) Process Argv C:\Users\HP\Documents\Web dev materials\Web development projects\00 MERN Projects\ChatApp --crash-reporter-id 03808d0c-c10b-4fb1-9ff6-14639f8cc17a Screen Reader no VM 0% Extensions (6) Extension Author (truncated) Version code-runner for 0.12.2 cmake-tools ms- 1.18.44 cpptools ms- 1.21.5 cpptools-extension-pack ms- 1.3.0 LiveServer rit 5.7.9 cmake twx 0.0.17 (1 theme extensions excluded) A/B Experiments vsliv368:30146709 vspor879:30202332 vspor708:30202333 vspor363:30204092 vstes516:30244333 vscod805cf:30301675 binariesv615:30325510 vsaa593cf:30376535 py29gd2263:31024239 c4g48928:30535728 azure-dev_surveyone:30548225 962ge761:30959799 pythongtdpath:30769146 welcomedialog:30910333 pythonnoceb:30805159 asynctok:30898717 pythonregdiag2:30936856 pythonmypyd1:30879173 h48ei257:31000450 pythontbext0:30879054 accentitlementst:30995554 dsvsc016:30899300 dsvsc017:30899301 dsvsc018:30899302 cppperfnew:31000557 dsvsc020:30976470 pythonait:31006305 dsvsc021:30996838 da93g388:31013173 pythoncenvpt:31062603 a69g1124:31058053 dvdeprecation:31068756 dwnewjupyter:31046869 impr_priority:31102340 refactort:31108082 ccplc:31103425 pythonrstrctxtcf:31103194 1iic9185:31097392 wkspc-onlycs-t:31106322 /duplicate https://github.com/microsoft/vscode/issues/224726 /duplicate
gharchive/issue
2024-08-04T08:45:07
2025-04-01T04:35:03.871296
{ "authors": [ "ShivnandanBasotra", "albertosantini", "gjsjohnmurray" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/224727", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
218065971
showInputBox should have the ability to have an array of quickpick options as well If you do showInputBox, you can receive input from a user. If you do showQuickPick you can have the user choose from a list. There is no way to receive input from a user AND show a list of choices. If you try this with showQuickPick, and the user enters something that is not in the array, undefined is returned. I think that showInputBox should have an overload that displays options just like in showQuickPick and returns the value instead of undefined if it is not an entry from the array. +1 Re https://github.com/Microsoft/vscode/issues/50200, it'd be very useful to also change the set of displayed quick pick options based on user input. I was wondering if this is possible at all and didn't find anything. This code works for me though: const qp = window.createQuickPick(); qp.items = [new QPItem('yes'), new QPItem('no')]; let value: string | undefined; let selected: string | undefined; qp.onDidChangeValue(e => { value = e; }); qp.onDidChangeSelection(e => { selected = e[0].label; }); qp.show(); qp.onDidAccept(e => { let result; if (selected !== undefined) { result = selected; } else { result = value; } qp.hide(); qp.dispose(); });
gharchive/issue
2017-03-30T02:50:02
2025-04-01T04:35:03.874933
{ "authors": [ "jacobdufault", "rugpanov", "usernamehw", "xconverge" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/23633", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
458538313
Terminal dom renderer doesn't render dimmed colors VSCode Version: Version 1.35.1 (1.35.1) OS Version: macOS 10.13.6 Steps to Reproduce: Open terminal in VSCode and run npx dim-cli - it prints Hello World with World dimmed Change the "Integrated: Renderer Type" to dom - World is no longer dimmed. Canvas Renderer Dom Renderer Does this issue occur when all extensions are disabled?: Yes This is already done, we just need to update a css file. To verify: echo -e 'abc\x1b[2mdef' @Tyriar is this intended to be non-Windows only? I have verified on Ubuntu, but the dimming never works on Windows in the integrated terminal. @alexr00 it's easier to test these on non-Windows as support can depend on the shell and the pty backend. Normally you can test these types of issues on conpty and wsl but things can still possibly go wrong (for example conpty doesn't print black background correctly).
gharchive/issue
2019-06-20T09:24:52
2025-04-01T04:35:03.879656
{ "authors": [ "Tyriar", "alexr00", "timsuchanek" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/75827", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
468002092
Failed to save ...: The content of the file is newer. Please compare your version with the file contents. VSCode Version: 1.36.1 OS Version: openSUSE Leap 15.0 Steps to Reproduce: Change git branch Change file, try to save in new branch One out of 20 times get the error :) It is extremely frustrating seeing this from time to time! I have to open another editor/IDE in order to make my changes. Just worked through this with an Intern, sporadically they would be unable to save changes to anything that wasn't a css document, then this morning they were unable to save anything. TLDR; Completely remove all vscode installs & install vscode insiders. Speculated it could be a clock issue, resources issue, or general bug. Originally thought it was an issue with their working directory being on the Network and their device clock wasn't in sync. We updated the Linux Mint install to use our internal time server, this did not fix the issue. Went on to look at resource usage, the Machine in use was recently detuned to 4G of ram from 8G, only consumes around 2.7G when in use. (Runs EMail, Vscode, LAMP stack and a Browser). Bumping back to 8G had no effect, mind you we had to shut down and restart and the issue still persisted. Decided to update to the most recent version of Insiders. Started with a side by side install, and continued to have trouble saving. Completely removed Vscode and Insiders, then reinstalled Insiders. A fresh install of Insiders fixed the issue. This sounds like missing file events. Here is what likely happens: you have a couple of files open you switch branches and this changes each file that is opened you continue to make changes to the file and try to save this fails, complaining that the state has changed on disk but was not updated May I ask: does this only happen for dirty files or all files? Because non-dirty files should get updated automatically does this happen for any file that is opened, or only the top most one in the stack of tabs? Only happens with dirty files. Doesn't matter where the file is in the stack. @mcarpenterjr but that is intentional. we prevent you from overwriting a change that happened after you started editing. I had this issue because I had the vim extension installed and was trying to hit cmd + s. Might be the same problem others are having. Just toggle vim mode. This "feature" should be opt-in only. It's completely unexpected and frustrating behavior. When I save, it should save what's in front of me, period. Makes using git co . with VSCode impossible. :(
gharchive/issue
2019-07-15T08:32:37
2025-04-01T04:35:03.886236
{ "authors": [ "afreepenguin", "bpasero", "jmargolisvt", "mcarpenterjr", "slaffcheff" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/77387", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
520446212
[web] Folder selector not working as intended on Firefox I am running VS Code remotely via code-server code-server version: 2.1485-vsc1.38.1 OS Version: Arch Linux (rolling release) Coming from issue: code-server#1063 The folder selector seems to be very glitched, making it near impossible to open the folder I want. Specifically, one of the main bugs seems to be that selecting a folder by left clicking or hitting return on a dropdown entry, does not reflect on the path in the bar. As such, the "OK" button does not work as intended either. This bug is consistently reproducible. It's been a while. Any updates? duplicate of https://github.com/microsoft/vscode/issues/83292 @alexr00 I'm a bit confused here. The dupe points to an issue that has been resolved. Does that mean you expect this issue to be resolved in a specific version? @alexr00 I'm a bit confused here. The dupe points to an issue that has been closed. Does that mean I can expect this issue to be resolved in a specific version? The issue is fixed in VS Code. You can check out our test playground here: https://vscode-web-test-playground.azurewebsites.net/
gharchive/issue
2019-11-09T14:43:49
2025-04-01T04:35:03.891516
{ "authors": [ "EnKrypt", "alexr00" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/84382", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
580327049
JavaScript debugger drops Block scoped variables before return executes VSCode Version: 1.43.0 OS Version: Mac OS X 10.14.6 With the following JavaScript code (this is just a simple example), run under the VS Code debugger: function convertAttribute(attr) { if (attr) { const key = 1; const val = 2; return val; } return attr; } convertAttribute(42); If you place a breakpoint on the const val = 2; statement then the debugger shows the following variables (correctly): Block this key: 1 val: undefined Local attr: 42 If you step over the const val = 2; statement to the subsequent return val; statement then the debugger shows the following variables (incorrectly): Local Return value: 2 this attr: 42 The problem is that the debugger has dropped the Block scoped variables before the return statement has executed. It's a common debugging technique to break on a return statement so that you can see the state of variables prior to return. This also happens if you place the (only) breakpoint on the return val; statement and run to it. This is an optimization made by Chrome/V8; we just don't get the information for those variables. You can see the same behavior in the chrome devtools I've opened an issue on Chromium for this: https://bugs.chromium.org/p/chromium/issues/detail?id=1061306 Thanks for the report! Chromium has closed this as a wontfix--see the linked issue for details.
gharchive/issue
2020-03-13T02:15:34
2025-04-01T04:35:03.897166
{ "authors": [ "connor4312", "john-aws" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/92617", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
587914260
C++ intelisense not working Hello my intelisense isn't working in C++ files \extC++
gharchive/issue
2020-03-25T18:47:24
2025-04-01T04:35:03.898137
{ "authors": [ "AlohaJax", "JacksonKearl" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/93425", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
608159811
Not seeing setting sync info message everywhere re #96226 have two computers both have settings sync off (at least both show "Turn on Pref Sync") on computer A it puts me right into the what-to-sync picker on computer B it shows a nice message ❓ I am confused. Is that because I am logged in on computer A? This dialog is to inform user that this is a preview feature and is only shown once before user turns on sync successfully on a given VS Code instance. It was shown on machine B you are using this feature there for the very first time and not shown on machine A because you used this feature already before.
gharchive/issue
2020-04-28T09:20:56
2025-04-01T04:35:03.900365
{ "authors": [ "jrieken", "sandy081" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/96353", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
608544933
Breakpoints look like they're set immediately based on the gutter but that's not always true Issue Type: Bug git clone https://github.com/ivanhernandez13/vscode-mock-debug npm install, compile, run the mock debug extension. create a readme.md file in your workspace with multiple lines run the "Ask for file name" configuration and select readme.md set a breakpoint on any line hit continue (within 5 seconds of step #5) The breakpoint looks like it's set (filled in red circle) but the debug adapter hasn't finished setting the breakpoint so it will be skipped. The fork of vscode mock debug contains a simple change to delay the setBreakpoint response by 5 seconds. This is obviously a contrived example but in a real debugger, the logic to set a breakpoint might take a non-trivial amount of time to finish during which the UI will show no indication the breakpoint is pending. Breakpoints can be unverified and are displayed as an outlined red circle. Would it be possible to use the unverified state as the initial state and only change it to the verified state once the debug adapter responds and verifies it? VS Code version: Code 1.44.2 (ff915844119ce9485abfe8aa9076ec76b5300ddd, 2020-04-16T17:07:18.473Z) OS version: Darwin x64 19.4.0 System Info Item Value CPUs Intel(R) Xeon(R) W-2191B CPU @ 2.30GHz (36 x 2300) GPU Status 2d_canvas: enabledflash_3d: enabledflash_stage3d: enabledflash_stage3d_baseline: enabledgpu_compositing: enabledmetal: disabled_offmultiple_raster_threads: enabled_onoop_rasterization: disabled_offprotected_video_decode: unavailable_offrasterization: enabledskia_renderer: disabled_off_okvideo_decode: enabledviz_display_compositor: enabled_onviz_hit_test_surface_layer: disabled_off_okwebgl: enabledwebgl2: enabled Load (avg) 2, 2, 2 Memory (System) 128.00GB (54.01GB free) Process Argv Screen Reader no VM 0% Extensions (2) Extension Author (truncated) Version lldb-vscode llv 0.1.0 vim vsc 1.13.1 @ivanhernandez13 I'll provide an answer...
gharchive/issue
2020-04-28T19:04:13
2025-04-01T04:35:03.909993
{ "authors": [ "ivanhernandez13", "weinand" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/96476", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
617345368
Incorrect syntax highlighting of PHP strings containing an SQL query VSCode Version: 1.45.0 and 1.46.0-insider (e88b8d32aa7233f6cb3665f6dae9fa78b1e8aafb) OS Version: Win 10 1909 Syntax highlighting around an array appended to an SQL query string is incorrect. Note the dots and square brackets. Steps to Reproduce: Paste this to a PHP file: <?php $wrong = "SELECT * FROM '" . $var["foo"] . "'"; $expected = "select * from '" . $var["foo"] . "'"; ?> Does this issue occur when all extensions are disabled?: Yes Moved to owning repo: https://github.com/atom/language-php/issues/392
gharchive/issue
2020-05-13T10:48:01
2025-04-01T04:35:03.913704
{ "authors": [ "MmAaXx500", "alexr00" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/issues/97703", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2624893201
scroll chat list on keyboard focus fixes https://github.com/microsoft/vscode-copilot/issues/9357 https://github.com/user-attachments/assets/253bb733-3a9d-4948-abd3-74f82e34f1ce Looks great, but it looks like it's scrolling even when tabbing to something inside the viewport? I don't think it should do that, and it would still scroll when clicking buttons and things, I think Prevented mouse clicks from causing the scroll. Can't figure out how to prevent the scrolling when within the viewport without causing the scroll to not happen when it's outside of that. Crux of the issue: bottomOffset becomes negative for the element when it's below the viewport. Since it's rightfully so negative when within or above the viewport, we cannot tell when it's actually below it to scrolldown.
gharchive/pull-request
2024-10-30T17:57:30
2025-04-01T04:35:03.916138
{ "authors": [ "meganrogge", "roblourens" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/pull/232644", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
412130358
fix for #69005 expand workspace folders from current state unless starting vscode fix for issue #69005 This should be fixed in latest. Closing as outdated
gharchive/pull-request
2019-02-19T21:22:33
2025-04-01T04:35:03.917018
{ "authors": [ "isidorn", "ragrag" ], "repo": "microsoft/vscode", "url": "https://github.com/microsoft/vscode/pull/69006", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
913498939
winget list command not working Brief description of your issue Failed to open the predefined source; please report to winget maintainers. An unexpected error occurred while executing the command: 0x80070459 : No mapping for the Unicode character exists in the target multi-byte code page. Steps to reproduce winget list Expected behavior Name Id Version IPFS Desktop 0.14.0 033dffdc-028b-55d6-9442-9e386fe5b76e 0.14.0 Notebook 1.2.9 07e74316-82bc-58bb-a564-e9fc8e1a4b1c 1.2.9 Actual behavior Failed to open the predefined source; please report to winget maintainers. An unexpected error occurred while executing the command: 0x80070459 : No mapping for the Unicode character exists in the target multi-byte code page. Environment Windows Package Manager v0.2.10191 Preview Copyright (c) Microsoft Corporation. All rights reserved. Windows: Windows.Desktop v10.0.18363.1556 Package: Microsoft.DesktopAppInstaller v1.11.10191.0 Logs: %LOCALAPPDATA%\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\DiagOutputDir Links Privacy Statement https://aka.ms/winget-privacy Licence Agreement https://aka.ms/winget-license Third Party Notices https://aka.ms/winget-3rdPartyNotice Homepage https://aka.ms/winget @charudatta10 can you upgrade to the latest version of the client? https://github.com/microsoft/winget-cli#installing-the-client It worked with upgrade
gharchive/issue
2021-06-07T12:33:23
2025-04-01T04:35:03.940715
{ "authors": [ "charudatta10", "denelon" ], "repo": "microsoft/winget-cli", "url": "https://github.com/microsoft/winget-cli/issues/1129", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1154204093
Remove duplicated message about unknown versions [X] Have you signed the Contributor License Agreement? [ ] Are you working against an Issue? It turns out that this message is displayed twice, without a reason. Example: $ winget upgrade --all Name Id Version Available Source --------------------------------------------- gsudo gerardog.gsudo 1.0.2.0 1.1.0 winget 1 upgrades available. 10 packages have version numbers that cannot be determined. Use "--include-unknown" to see all results. (1/1) Found gsudo [gerardog.gsudo] Version 1.1.0 This application is licensed to you by its owner. Microsoft is not responsible for, nor does it grant any licenses to, third-party packages. Downloading https://github.com/gerardog/gsudo/releases/download/v1.1.0/gsudoSetup.msi ██████████████████████████████ 364 KB / 364 KB Successfully verified installer hash Starting package install... Successfully installed 10 packages have version numbers that cannot be determined. Use "--include-unknown" to see all results. $ winget upgrade --all No installed package found matching input criteria. 10 packages have version numbers that cannot be determined. Use "--include-unknown" to see all results. No applicable update found. 10 packages have version numbers that cannot be determined. Use "--include-unknown" to see all results. This PR removes the latter duplicated message. Microsoft Reviewers: Open in CodeFlow /azp run /azp run
gharchive/pull-request
2022-02-28T15:07:59
2025-04-01T04:35:03.943612
{ "authors": [ "felipecrs", "yao-msft" ], "repo": "microsoft/winget-cli", "url": "https://github.com/microsoft/winget-cli/pull/1982", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1568685656
Add custom download handler support to COM api This is part of the effort to support private 3rd party sources where packages hosted may require custom handling (encryption, custom format, etc). Added support for a group policy source to be configured as hidden Added custom download callback functionality Added e2e tests Microsoft Reviewers: Open in CodeFlow Microsoft Reviewers: Open in CodeFlow The feature is postponed. This pr could be reactivated in future releases when needed.
gharchive/pull-request
2023-02-02T19:47:20
2025-04-01T04:35:03.946092
{ "authors": [ "yao-msft" ], "repo": "microsoft/winget-cli", "url": "https://github.com/microsoft/winget-cli/pull/2912", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1789483555
How can we help? I would like someone else to build the manifest. Please read and ensure the following [X] The installer meets the above requirements Please provide the following information Download Page Url: https://sourceforge.net/projects/gpredict/files/Gpredict/ Publisher: Alexandru Csete Package Name: Gpredict Description: Real time satellite tracking and orbit prediction. Package Version: 2.3.37 Installer URL: https://sourceforge.net/projects/gpredict/files/Gpredict/2.3.37/gpredict-win32-2.3.37.zip [Policy] Zip Binary [Policy] Unblocked; Will require ManifestVersion: 1.9.0 with ArchiveBinariesDependOnPath: true
gharchive/issue
2023-07-05T12:46:38
2025-04-01T04:35:03.949139
{ "authors": [ "AsciiWolf", "Trenly" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/issues/111362", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1148099195
[Package Request]: SQLite Studio Package Requested [X] I would like someone else to build the manifest. [ ] I would like help so I can submit the manifest. [X] I have performed a search and couldn't find this package. [ ] I have checked that the installer for this package is not a standalone or portable executable or a .zip file [ ] I think there is a new version available and I have provided the URL. Please provide the following information Publisher: Paweł Salawa Publisher Url: https://sqlitestudio.pl Package Name: Sqlite Studio Description: SQLiteStudio is desktop application for browsing and editing SQLite database files. It is aimed for people, who know what SQLite is, or what relational databases are in general. Package Version: 3.3.3 Installer URL: https://github.com/pawelsalawa/sqlitestudio/releases/download/3.3.3/sqlitestudio-3.3.3.zip Current Package Identifier (for new versions): - I have checked that the installer for this package is not a standalone or portable executable or a .zip file Blocked by microsoft/winget-cli#140 There is now an exe installer available: https://github.com/pawelsalawa/sqlitestudio/releases Created a PR https://github.com/microsoft/winget-pkgs/pull/93750 Closing, as package is now available. Thank you @schlamar for your work!
gharchive/issue
2022-02-23T13:30:17
2025-04-01T04:35:03.954941
{ "authors": [ "ItzLevvie", "Trenly", "schlamar", "szyb" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/issues/47856", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1692949846
Remove Alibaba.Yuque version 2.5.5 URL is 404 Microsoft Reviewers: Open in CodeFlow @wingetbot run
gharchive/pull-request
2023-05-02T19:04:06
2025-04-01T04:35:03.956292
{ "authors": [ "ImJoakim", "Trenly" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/104202", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1827764230
New version: Dogramming.Imaconverter version imaconverter2.0 Pull request has been created with WinGet Automation :rocket: Microsoft Reviewers: codeflow:open?pullrequest=https://github.com/microsoft/winget-pkgs/pull/113626&drop=dogfoodAlpha Automatic Validation ended with: (Inconclusive) Manual Validation ended with:
gharchive/pull-request
2023-07-30T02:15:49
2025-04-01T04:35:03.958749
{ "authors": [ "stephengillie", "vedantmgoyal2009" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/113626", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1920084308
Add version: ShiningLight.OpenSSL.Light version 1.1.1w Pull request has been created with Komac v1.11.0 :rocket: Microsoft Reviewers: Open in CodeFlow Command: komac --update --id ShiningLight.OpenSSL.Light --version 1.1.1w --urls https://slproweb.com/download/Win64OpenSSL_Light-1_1_1w.msi,https://slproweb.com/download/Win32OpenSSL_Light-1_1_1w.msi
gharchive/pull-request
2023-09-30T03:28:45
2025-04-01T04:35:03.960426
{ "authors": [ "szhu25" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/121300", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1932734173
Delete manifests/s/SKDataAS/ORMCore/202330051 directory [x] Have you signed the Contributor License Agreement? [x] Have you checked that there aren't other open pull requests for the same manifest update/change? [x] This PR only modifies one (1) manifest [x] Have you validated your manifest locally with winget validate --manifest <path>? [x] Have you tested your manifest locally with winget install --manifest <path>? [x] Does your manifest conform to the 1.5 schema? Note: <path> is the name of the directory containing the manifest you're submitting. Microsoft Reviewers: Open in CodeFlow This removes an old buggy version that messed up the versioning. The version number uses a date, and due to how Winget works, it would put an older version before a newer one. This is because a mistake was made in the version that put the day before the date (USA style) when we use European style.
gharchive/pull-request
2023-10-09T10:12:54
2025-04-01T04:35:03.964409
{ "authors": [ "skdataas" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/122200", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2105908157
New version: Ryujinx.Ryujinx.Ava version 1.1.1143 Pull request has been created with Komac v1.11.0 :rocket: Microsoft Reviewers: Open in CodeFlow Automatic Validation ended with: No errors to post. (Automated response - build 672.) @wingetbot waivers Add Validation-Executable-Error @wingetbot waivers Add Validation-Executable-Error For moderators This account is automated by Github Actions and the source code was created by CoolPlayLin. If you have any questions about any pull request, don't hesitate to ping @Exorcism0666, I'll get a notification. [!important] Please carefully review these Pull Request before merging. If it is a Pull Request for removing incorrect content and the URLs are issue, free upon manual checking, please close this Pull Request directly. (It is best to inform Exorcism0666 of the closure.) 良い一日をお過ごしください!
gharchive/pull-request
2024-01-29T16:39:45
2025-04-01T04:35:03.968332
{ "authors": [ "Exorcism0666", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/136995", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2113626726
Fix Maltego.Maltego to only have primary ARP entry Microsoft Reviewers: Open in CodeFlow /AzurePipelines run
gharchive/pull-request
2024-02-01T22:30:35
2025-04-01T04:35:03.969434
{ "authors": [ "Trenly", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/137552", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2114042563
Update version: alexx2000.DoubleCommander version 1.0.11 Pull request has been created with komac v2.0.3 :rocket: Microsoft Reviewers: Open in CodeFlow /AzurePipelines run For moderators This account is automated by Github Actions and the source code was created by CoolPlayLin. If you have any questions about any pull request, don't hesitate to ping @Exorcism0666, I'll get a notification. [!important] Please carefully review these Pull Request before merging. If it is a Pull Request for removing incorrect content and the URLs are issue, free upon manual checking, please close this Pull Request directly. (It is best to inform Exorcism0666 of the closure.) 良い一日をお過ごしください! @wingetbot run
gharchive/pull-request
2024-02-02T04:39:39
2025-04-01T04:35:03.972387
{ "authors": [ "Exorcism0666", "mdanish-kh", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/137584", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2177590976
Remove Apifox.Apifox 2.3.1 to Ruihu.Apifox 2.3.1 Microsoft Reviewers: Open in CodeFlow URL: https://cdn.apifox.cn/download/2.3.1/Apifox-2.3.1.exe Status Code: 200 (Automated message - build 869)
gharchive/pull-request
2024-03-10T07:58:11
2025-04-01T04:35:03.974050
{ "authors": [ "SpecterShell", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/143643", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2339336742
Moved: Foxit.FoxitReader.Inno version 2023.3.0.23028 Microsoft Reviewers: Open in CodeFlow Possible duplicate package entry. Similar installer SHA256 hash found in manifest: InstallerSha256: 64ef44e90646e00ef67d059a5d3e1f318699be0dd76a7520e4fd87262d9df03b manifests\f\Foxit\FoxitReader\2023.3.0.23028 Verify by hash.
gharchive/pull-request
2024-06-07T00:03:13
2025-04-01T04:35:03.976377
{ "authors": [ "SpecterShell", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/156885", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2363359986
New version: erickutcher.thumbsviewer version 1.0.3.1 Pull request has been created with komac v2.2.1 :rocket: Microsoft Reviewers: Open in CodeFlow Automatic Validation ended with: (Automated response - build 886.)
gharchive/pull-request
2024-06-20T02:04:18
2025-04-01T04:35:03.978063
{ "authors": [ "stephengillie", "tianyeeT" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/158859", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2415458097
Remove version: CrystalDewWorld.CrystalDiskInfo version 8.12.7 [Automated] It returns code over 400 in all urls Microsoft Reviewers: Open in CodeFlow URL: - https://osdn.net/frs/redir.php?m=auto&f=crystaldiskinfo%2F75914%2FCrystalDiskInfo8_12_7.exe Invalid URI: The URI scheme is not valid. (Automated message - build 912) Close with reason: Host issue, package still available.; URL: - https://osdn.net/frs/redir.php?m=auto&f=crystaldiskinfo%2F75914%2FCrystalDiskInfo8_12_7.exe Invalid URI: The URI scheme is not valid. (Automated message - build 912)
gharchive/pull-request
2024-07-18T06:07:51
2025-04-01T04:35:03.981188
{ "authors": [ "Exorcism0666", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/163559", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2451387023
Update SHA256: Tencent.WeType 1.2.2.630 #165220 Microsoft Reviewers: Open in CodeFlow 8/6/2024 5:45:10 PM Installer Verification Analysis Context Information: Specified hash doesn't match. Actual hash: AF04E13B073A993C1E16F48B6FC06DB7D24875BBE66E182A8DD64E62AB571790 Expected hash: 3339f2967e28d7d84116308d59fd1977aad7643998ad058afbaee9ade6ea0f43 /azp run
gharchive/pull-request
2024-08-06T17:38:45
2025-04-01T04:35:03.983205
{ "authors": [ "stephengillie", "stevenlele" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/166398", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2645437517
Remove version: qBittorrent.qBittorrent version 4.5.1 [Automated] It returns code over 400 in all urls Microsoft Reviewers: Open in CodeFlow URL: https://sourceforge.net/projects/qbittorrent/files/qbittorrent-win32/qbittorrent-4.5.1/qbittorrent_4.5.1_lt20_qt6_x64_setup.exe/download OK (Automated message - build 923) Close with reason: Package still available.;
gharchive/pull-request
2024-11-09T01:01:42
2025-04-01T04:35:03.985545
{ "authors": [ "Exorcism0666", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/190020", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2659251739
New package: lostindark.DriverStoreExplorer version 0.11.92 Checklist for Pull Requests [x] Have you signed the Contributor License Agreement? [x] Resolve #191494 Manifests [x] Have you checked that there aren't other open pull requests for the same manifest update/change? [x] This PR only modifies one (1) manifest [x] Have you validated your manifest locally with winget validate --manifest <path>? [x] Have you tested your manifest locally with winget install --manifest <path>? [x] Does your manifest conform to the 1.6 schema? Note: <path> is the directory's name containing the manifest you're submitting. Manual validation Microsoft Reviewers: Open in CodeFlow Verify: This shell was opened by my automation, after the package install and scan step were completed. To get the application to launch, I had to open yet another shell window. Manual validation I saw the same output.
gharchive/pull-request
2024-11-14T15:49:50
2025-04-01T04:35:03.992475
{ "authors": [ "Dragon1573", "stephengillie" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/191544", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1167486963
Update: Tyrrrz.LightBulb version 2.2.0 Removing old versions to reduce clutter Microsoft Reviewers: Open in CodeFlow @wingetbot run
gharchive/pull-request
2022-03-13T05:40:48
2025-04-01T04:35:03.993818
{ "authors": [ "vedantmgoyal2009" ], "repo": "microsoft/winget-pkgs", "url": "https://github.com/microsoft/winget-pkgs/pull/53664", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
455473207
Allow bot to blur background in a teams meeting Microsoft teams has a background blur feature: https://support.office.com/en-ie/article/blur-your-background-in-a-teams-meeting-f77a2381-443a-499d-825e-509a140f4780 Is it possible for a bot, which is in the call to blur the background? Yes, if you process the raw video stream. You'd have to build your own model to blur the background. https://github.com/microsoftgraph/microsoft-graph-comms-samples/tree/master/Samples/V1.0Samples/LocalMediaSamples Blurring the background is not simple. It would be easier if the existing blur control was enabled via an API. Unfortunately that is a client side feature. Platform allows generic tools to access media, but nothing to transform/transcribe it. There is no plan that I am aware of to support transformations of the media. @ssulzer is this something you ever plan to add support for? We currently have no plan to provide a helper API in the bot media API for blurring (or any other kind of transforms), but it's not something we've considered. @saraswat40 What scenario do you want to enable? A bot taking the video from a Teams client, blurring its background, and then substituting the client's video with that transformed video stream for everyone else to see? Or just archive/record the blurred video? Would your scenario require a bot performing this blurring for multiple clients within a Teams meeting? @ssulzer ideally, we want two things. When a user enables the camera on a call, they get an option to blur the background as well. This feature already exists in microsoft teams today. We only want some kind of api call which will allow us to either blur the background automatically or at least get the blur status so that we can prompt the user to blur the background. So the bot itself does not want to perform the blurring but instead wants to ensure all the blur-capable Teams clients are enabling their background blurring? e.g., because of a compliance policy? Thanks. ideally the bot should be able to perform the blurring. If and only if this is not possible, the bot should at least be able to detect that the blur is enabled or not. So this scenario is not possible or supported by the bot platform. The following capabilities do not exist: A bot cannot tell whether a client has enabled background blur or not. And this may not be just a technical limitation, but also a privacy concern (so would likely require authorization from the tenant). Similarly, a bot cannot command a client to enable their background blur feature. The bot media platform does not provide any kind of blurring transformation helper API; the platform just provides raw access to the video stream. There is no way for a bot to substitute a client's video source with a different (transformed) video source. This would be a very advanced scenario to try to accomplish with a bot. A better approach might be to support a tenant policy to command all Teams clients to enable their background blurring (possibly only for certain meetings). But this would not work for certain endpoints, such as web clients, so how to handle those would need to be addressed. Thanks.
gharchive/issue
2019-06-12T23:49:20
2025-04-01T04:35:04.000156
{ "authors": [ "ksikorsk", "saraswat40", "ssulzer" ], "repo": "microsoftgraph/microsoft-graph-comms-samples", "url": "https://github.com/microsoftgraph/microsoft-graph-comms-samples/issues/83", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2357524820
Update Microsoft.DirectoryServices.json Instructions: Add any supporting information, such as a description of the PR changes, here. [!NOTE] The following guidance is for Microsoft employees only. Community contributors can ignore this message; our content team will manage the status. After you've created your PR, expand this section for tips and additional instructions. do not merge is the default PR status and is automatically added to all open PRs that don't have the ready to merge label. Add the ready for content review label to start a review. Your PR won't be reviewed until you add this label. If your content reviewer requests changes, review the feedback and address accordingly as soon as possible to keep your pull request moving forward. After you address the feedback, remove the changes requested label, add the review feedback addressed label, and select the Re-request review icon next to the content reviewer's alias. If you can't add labels, add a comment with #feedback-addressed to the pull request. After the content review is complete, your reviewer will add the content review complete label. When the updates in this PR are ready for external customers to use, replace the do not merge label with ready to merge and the PR will be merged within 24 working hours. Pull requests that are inactive for more than 6 weeks will be automatically closed. Before that, you receive reminders at 2 weeks, 4 weeks, and 6 weeks. If you still need the PR, you can reopen or recreate the request. For more information, see the Content review process summary. @keshri-rahul7 , can you let me know the reason for this change? The CreatedDateTime is generally generated by the tooling; does this affect the Changelog experience? @Lauragra I have been assigned the item below. Upon debugging the issue, I found that this JSON file is picked up by the SyncChangelogJsonFilesJob present in OdxipBackgroundJobs. Within the models, we have defined the CreatedDateTime format as "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff'Z'". Our job fails because it is unable to convert the string into an object. For reference, you can check this file as we are using this format in other places as well. https://office.visualstudio.com/OC/_workitems/edit/8857289 Closing this PR as the error no longer occurs.
gharchive/pull-request
2024-06-17T14:41:16
2025-04-01T04:35:04.007168
{ "authors": [ "Lauragra", "keshri-rahul7" ], "repo": "microsoftgraph/microsoft-graph-docs-contrib", "url": "https://github.com/microsoftgraph/microsoft-graph-docs-contrib/pull/9367", "license": "CC-BY-4.0", "license_type": "permissive", "license_source": "github-api" }
2271109956
Generated beta models and request builders This pull request was automatically created by Azure Pipelines. Important Check for unexpected deletions or changes in this PR. closing as impacted by https://github.com/microsoftgraph/msgraph-sdk-python/issues/673
gharchive/pull-request
2024-04-30T10:37:26
2025-04-01T04:35:04.354108
{ "authors": [ "andrueastman", "baywet" ], "repo": "microsoftgraph/msgraph-beta-sdk-python", "url": "https://github.com/microsoftgraph/msgraph-beta-sdk-python/pull/395", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
2266869126
Logo and image colors in the README differ in light vs dark theme Description: Our logo and brand colors seem to be different when I see it in light theme and dark theme. The dark theme seems to be closer to our brand colors. Light Theme Dark Theme Ideal state Colors are uniform across modes. #203 resolves this
gharchive/issue
2024-04-27T06:29:19
2025-04-01T04:35:04.364139
{ "authors": [ "amoghjalan", "dhruvagarwal" ], "repo": "middlewarehq/middleware", "url": "https://github.com/middlewarehq/middleware/issues/201", "license": "Apache-2.0", "license_type": "permissive", "license_source": "github-api" }
449101956
zone parsing: return more comments Right now the zoneparser returns comment after an RR: example.org. IN A 10.10.10.1 ; a comment will return "a comment" to the caller. This is useful-ish, but I'm contemplating to more DNSSEC work in CoreDNS and leaving comments intact while rewriting a zonefile has some appeal. I'm looking to see if we can attach comment string to the next RR being read and return that. i.e. ; a comment example.org IN A 10.10.0.1; another comment would return "a comment another comment" as the comment string. This would allow the following use-cases: store state of DNSSEC operations in a comment at the top keep user's comment while rewriting zone files. Attaching comments to a RR means that a comment after the last RR won't be seen by the parser and will be ignored. I’m pretty sure this would be non-trivial, though I could be wrong. Both ParseZone and ZoneParaer are documented as discarding comments that are on a blank line, so this would be a change to documented behaviour. Yeah, I think I agree. Alternatively I can use the current behaviour and store some metadata on the SOA record or something; need to work out what I want/need exactly. On Tue, 28 May 2019, 09:48 Tom Thorogood, notifications@github.com wrote: I’m pretty sure this would be non-trivial, though I could be wrong. Both ParseZone and ZoneParaer are documented as discarding comments that are on a blank line, so this would be a change to documented behaviour. — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/miekg/dns/issues/978?email_source=notifications&email_token=AACWIW2PWTL7KXXXOEPK4MTPXTPWJA5CNFSM4HQANOD2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODWLIRCQ#issuecomment-496404618, or mute the thread https://github.com/notifications/unsubscribe-auth/AACWIWYQK7ON7V2ST5DBLNLPXTPWJANCNFSM4HQANODQ .
gharchive/issue
2019-05-28T07:18:57
2025-04-01T04:35:04.373559
{ "authors": [ "miekg", "tmthrgd" ], "repo": "miekg/dns", "url": "https://github.com/miekg/dns/issues/978", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
797888297
Validate Rdlength and off in UnpackRRWithHeader This was split out of #1214. I don't think this can be hit from UnpackRR as unpackHeader does validate it doesn't exceed msg, but it can definitely be hit by calling UnpackRRWithHeader directly. The off check doesn't seem to be done anywhere else off is taken so I'm not sure whether it should be introduced here or not, happy to back that out.
gharchive/pull-request
2021-02-01T02:07:31
2025-04-01T04:35:04.375213
{ "authors": [ "tmthrgd" ], "repo": "miekg/dns", "url": "https://github.com/miekg/dns/pull/1215", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
1077290803
Authentication For SSH authentication: [ ] For password logins, we should support the userauth_password with callback, for cases where the server requests that we change the password before continuing. [x] ~Should an empty password be allowed, rather than triggering interactive mode?~ [x] ~Should we show the fingerprint? libssh2_hostkey_hash~ Closing due to the low priority of the first case.
gharchive/issue
2021-12-10T22:48:21
2025-04-01T04:35:04.397226
{ "authors": [ "migueldeicaza" ], "repo": "migueldeicaza/SwiftTermApp", "url": "https://github.com/migueldeicaza/SwiftTermApp/issues/79", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
1284846821
Context menu Copy command freezes app (on main branch) Describe the bug In Ubuntu when I activate Copy the app freezes. Console is Terminator. Ctrl+Q does not respond, no response to clicks/keypresses etc. Only way out is to close terminal or kill process. Also worth noting is that while the program is blocking I can't copy anything in other apps either (e.g. Firefox). Its like the Copy method is blocking and holding onto xclip (or the clipboard process) so nobody else can use it but never exits. To Reproduce Steps to reproduce the behavior: Open Editor Scenario Select some text Select Copy Screenshots Desktop (please complete the following information): OS: [e.g. iOS] Browser [e.g. chrome, safari] Version [e.g. 22] Smartphone (please complete the following information): Device: [e.g. iPhone6] OS: [e.g. iOS8.1] Browser [e.g. stock browser, safari] Version [e.g. 22] Issue does not exist in 8e70756cd857f5f273d9471e35a98caae83769ae so I think it was introduced in #1828 Do you are using CursesDriver or NetDriver? Do you are using CursesDriver or NetDriver? Curses Driver Sorry, at the time, I was going to make some changes that I ended up not concluding or not making sense and forgot to replace. Sorry, at the time, I was going to make some changes that I ended up not concluding or not making sense and forgot to replace. No worries, glad we caught this before a nuget package shipped and thanks for the quick fix
gharchive/issue
2022-06-26T08:37:27
2025-04-01T04:35:04.403814
{ "authors": [ "BDisp", "tznind" ], "repo": "migueldeicaza/gui.cs", "url": "https://github.com/migueldeicaza/gui.cs/issues/1837", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
637107452
MainLoop: Indeterminate behavior of AddIdle/RemoveIdle I'm writing unit tests for MainLoop. The exercise is clearly illustrating the advantages of test-driven-development, esp for APIs like this. Tons of poor design decisions and resulting indeterminate behavior being exposed. This is one of the worst and should be called out: [Fact] public void AddTwice_Function_CalledOnce () { var driver = new FakeDriver (); var ml = new MainLoop (driver); var functionCalled = 0; Func<bool> fn = () => { functionCalled++; return true; }; functionCalled = 0; ml.AddIdle (fn); ml.AddIdle (fn); ml.MainIteration (); // BUGBUG: Since Remove relies on fn equality AddIdle should not allow adding more than once // Once fixed, this 2 should change to a 1. Assert.Equal (2, functionCalled); } One potential fix is for AddIdle() to call List.Exists before adding and to not add the fn if it is already in the list. But it's not possible to add twice the same function? Imagine if two objects call to same function, that's wrong? Maybe I'm wrong and if so I'm sorry. If you call AddIdle() with the same fn twice, that fn gets called twice. That is a bug. The docs for AddIdle are pretty clear the return value is a token, but in reality it just returns the passed fn: Executes the specified @idleHandler on the idle loop. The return value is a token to remove it. I'm completely wrong about this. This proves it: [Fact] public void AddTwice_Function_CalledTwice() { var driver = new FakeDriver (); var ml = new MainLoop (driver); var functionCalled = 0; Func<bool> fn = () => { functionCalled++; return true; }; functionCalled = 0; ml.AddIdle (fn); ml.AddIdle (fn); ml.MainIteration (); Assert.Equal (2, functionCalled); functionCalled = 0; ml.RemoveIdle (fn); ml.MainIteration (); Assert.Equal (1, functionCalled); functionCalled = 0; ml.RemoveIdle (fn); ml.MainIteration (); Assert.Equal (0, functionCalled); } and [Fact] public void AddIdle_Twice_Returns_False_Called_Twice() { var driver = new FakeDriver (); var ml = new MainLoop (driver); var functionCalled = 0; Func<bool> fn1 = () => { functionCalled++; return false; }; // Force stop if 10 iterations var stopCount = 0; Func<bool> fnStop = () => { stopCount++; if (stopCount == 10) { ml.Stop (); } return true; }; ml.AddIdle (fnStop); ml.AddIdle (fn1); ml.AddIdle (fn1); ml.Run (); ml.RemoveIdle (fnStop); ml.RemoveIdle (fn1); ml.RemoveIdle (fn1); Assert.Equal (2, functionCalled); } Nevermind.
gharchive/issue
2020-06-11T15:21:42
2025-04-01T04:35:04.407839
{ "authors": [ "BDisp", "tig" ], "repo": "migueldeicaza/gui.cs", "url": "https://github.com/migueldeicaza/gui.cs/issues/671", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
273792451
Does it support encode to Data and decode from Data? Does it support encode to Data and decode from Data? Does it supoort NSRect, NSSize, NSPoint? BinaryEncoder.encode() -> Data BinaryDecoder.decode(BinaryCodable, data: Data) It doesn't directly deal with Data, but it's easy to convert between Data and [UInt8]. I'm not sure about the various NS structs. Try it and see!
gharchive/issue
2017-11-14T13:29:18
2025-04-01T04:35:04.454226
{ "authors": [ "diuming", "mikeash" ], "repo": "mikeash/BinaryCoder", "url": "https://github.com/mikeash/BinaryCoder/issues/3", "license": "MIT", "license_type": "permissive", "license_source": "github-api" }
30981041
Added $params property to Request with merged GET, POST, PUT and DELETE ... ...params. I thought it would be useful to have a single Collection with all the GET, POST and raw (PUT and DELETE from php://input) parameters merged together. This would allow for a layer of abstraction between the method of a request and the mapped function. Closing the pull request since dev seems uninterested and @cceconi makes a good point.
gharchive/pull-request
2014-04-07T12:49:57
2025-04-01T04:35:04.464812
{ "authors": [ "dmalatesta" ], "repo": "mikecao/flight", "url": "https://github.com/mikecao/flight/pull/111", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
253042460
Consider an alternative to Bower It looks like the Bower team is recommending npm or yarn for new UI projects. It would be helpful to add yarn/npm as an alternative or in place of Bower in the videos/repository. Hi @saschwarz Thanks for the heads up. This is a bummer. I'll keep this issue open until I either fix that section or figure out some thing to communicate this. Best, Michael Any update on this issue? Hi, No nothing yet. But I would recommend using NPM instead of Bower given the move by the community.
gharchive/issue
2017-08-25T23:47:01
2025-04-01T04:35:04.466654
{ "authors": [ "jboys", "mikeckennedy", "saschwarz" ], "repo": "mikeckennedy/python-for-entrepreneurs-course-demos", "url": "https://github.com/mikeckennedy/python-for-entrepreneurs-course-demos/issues/23", "license": "mit", "license_type": "permissive", "license_source": "bigquery" }
268134242
WP_REST_Posts_Controller vs WP_REST_Terms_Controller Received a report that the current entry in the class constant is incorrect and causing issues with Yoast SEO. // Terms. foreach ( get_taxonomies( array( 'show_in_rest' => true ), 'object' ) as $taxonomy ) { $class = ! empty( $taxonomy->rest_controller_class ) ? $taxonomy->rest_controller_class : 'WP_REST_Terms_Controller'; if ( ! class_exists( $class ) ) { continue; } $controller = new $class( $taxonomy->name ); if ( ! is_subclass_of( $controller, 'WP_REST_Controller' ) ) { continue; } $controller->register_routes(); } PR https://github.com/mikelking/bacon/pull/12 contain as prospective patch to resolve this issue. merged and fixed. Will be included in next release.
gharchive/issue
2017-10-24T18:15:05
2025-04-01T04:35:04.474100
{ "authors": [ "mikelking" ], "repo": "mikelking/bacon", "url": "https://github.com/mikelking/bacon/issues/13", "license": "bsd-3-clause", "license_type": "permissive", "license_source": "bigquery" }
438974540
Switches to unicode, adds a .gitignore for VS (C#) The old version of the program took input and gave output in ASCII. This commit replaces this with unicode. The purpose of this is opening up for the usage of special characters. The commit also adds a .gitignore in the csharp-directory. The .gitignore is the recommendations for Microsoft Visual Studio. 👍 Thanks!
gharchive/pull-request
2019-04-30T20:57:40
2025-04-01T04:35:04.524398
{ "authors": [ "johannesskivdal", "mikepound" ], "repo": "mikepound/pwned-search", "url": "https://github.com/mikepound/pwned-search/pull/23", "license": "Unlicense", "license_type": "permissive", "license_source": "github-api" }