Installing extensions on visual studio code [closed] - visual-studio-code

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
How to install a extension on visual studio code using cli or cmd and also how to change the default terminal to any other like by default it uses cmd and i want to change it to cmder so please somebody help with this problem

Currently vscode doesn't support installing extensions through cli.https://github.com/Microsoft/vscode/issues/691
You can specify the path to shell by editing terminal.integrated.shell.windows of your preference

Related

Official VSCode in browser? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
The new July update of VSCode looks very interesting, particulary the Browser Support ( https://code.visualstudio.com/updates/v1_48#_browser-support ) where a developer seems to have opened VSCode inside a browser using localhost:9888.
Does anyone know how to do that? I can't seem to find any documentation about this and the only results I get are for code-server, which is not a official VSCode project.
https://code.visualstudio.com/updates/v1_40#_engineering
According to the description, in your local fork of the vscode repository, running yarn web from the command line.

gvim 8.2 doesn't paste on windows 10 in powershell [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I installed vim on Windows 10 with chocolatey. Copy and Paste don't work when I invoke vim in powershell. I expect them to work as long as I'm in insert mode. How can I make copy and paste work?
https://n3wjack.net/2014/08/25/setting-up-vim-on-windows/ has the answers.
Open vim and type the following:
:edit $MYVIMRC
This will edit your .vimrc file wherever it might live. (On my system, it was in c:\Users\<my_username>\.vimrc, but you might have weird configuration issues, so just let vim find the file for you.
Then, copy+paste the following into the file:
source $VIMRUNTIME/mswin.vim
behave mswin
Then save the file.

Download Visual Studio code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
Is it possible to download full visual studio code instead of using the web instaler of the official page?
I want several users to do the installation simultaneously and I want to avoid that everyone makes a simultaneous download of the same product.
Thank you.
Use this direct link
https://go.microsoft.com/fwlink/?Linkid=852157
assuming you are using Windows 64bit

Is Windows 7 professional installation comes with VCbuild.exe and .NET framework [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Can somebody help me with answer
Is windows7 professional installation comes with VCbuild.exe and >net framework or we need to install explicitly.
Thanks,
Sri
No because VCbuild.exe belongs to Visual Studio and cannot be obtained without Visual Studio.
.NET framework is not included from scratch but you can download it with Windows Updates.

how to run matlab script in mac terminal [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I search for this and got some answer involving sudo, I am a beginner to linux and curious how to do it in terminal,
say my file is in Desktop/hw
matlab is installed in application
could give me a detailed commands instructions?
Thanks
I just check that on my MacOS machine. Depending on where you installed your MATLAB, but
/Applications/MATLAB_R2013b.app/Contents/MacOS/MATLAB_maci64 -nodisplay
worked for my case.