In VSCode integrated Terminal, how to pass mouse event? - visual-studio-code

As title.
For more environment details, I am using the default configure in VSCode. I connected to my server via SSH in the VSCode integrated terminal. I can use VIM to edit files. I have configured for VIM to enable mouse click in .vimrc as below.
" In many terminal emulators the mouse works just fine, thus enable it.
if has('mouse')
set mouse=a
endif
set clipboard=unnamedplus
It works fine when I use other terminals. Does anyone know what I should configure in VSCode or .vimrc?

Related

I have to "source ~/.zshrc" everytime I open a new terminal only in vscode

Currently have to manually write source ./zshrc to get my zsh plugins to work within the vscode terminal window, however I dont have this issue if I open a zsh shell outside of vscode. I am using Debian on wsl2.
In terminal I get proper syntax example (due to a plugin)
However in vscode I dont unless i run source ./zshrc
As seen here:

Can i sync my vscode to my termux terminal?

i installed VHEditor on my android, which is typically the android version of VScode, but when I tried using the integrated terminal, I can't see what I'm typing. Anything I type won't show in the integrated terminal, and now I want to switch terminal by using my termux terminal instead of the integrated terminal in vscode.
How do I do this please?
I also had this problem while using VHEditor [I can't see what I'm typing. Anything I type won't show in the integrated terminal].
This issue is already posted on github, Visit here --> Cannot see letters on terminal #196
If the letters in the terminal are not visible then just change this settings.
Go to settings and search for Terminal Integrated GPU
Change this settings from auto to off
Terminal > Integrated > Gpu Acceleration Preference of VScode to Off.
You don't need termux to use VHEditor, because it has an inbuilt termux.

Sending commands prefixed with `Shift`-`Alt` to VSCode's integrated terminal in Windows 11

Is it possible to send keyboard shortcuts prefixed with Shift-Alt to VSCode's integrated terminal in Windows 11?
I'm using Tilish, a nifty tmux plugin that by default uses several shortcuts prefixed with Shift-Alt (e.g. Shift-Alt-q to close a panel). Unfortunately, commands prefixed with Shift-Alt don't seem to get propagated to the terminal.
Ideally I'd prefer all input go to the terminal while my input focus is there.
Thanks!

How to disable opening default vscode terminal

I want to disable opening any terminals on reloading vscode window. How I can achieve it? I use Terminal Manager to run terminals by default and I don't need the standard one from vscode.

How to replicate the following Spyder behavior in VSCode?

I'm new to coding Python in VSCode. Previously I used Spyder but decided to move to VSCode as the project management seems better in it (I could easily switch to other files/folders by clicking on the path, just like in PyCharm). But I really need this one workflow which I still have not managed to do it in VSCode.
write some codes like Selenium.
Click run (F5)
The selenium browser opens up.
I could use the Ipython terminal to access the code interactively (find the element in the browser etc) and send new command.
I would like to have this workflow in VSCode. Im also quite overwhelmed by the difference in these 2 IDEs, for example, in VSCode, you have integrated terminal, a debugging console and an output tab, while im used to have only one-for-all Ipython tab.
Ok, I figured out what I need. Basically I just need to right click on the python file that I want to run on the side bar. Then I have to select 'run current file in interactive window'. The only difference is on the Ipython console, I have to use shift+Enter to send my input instead of just clicking enter. But its not a big deal.