Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use vim keybindings in visual studio code terminal

Is it possible to use vim keybindings in the terminal in Visual Studio Code? As far as I know, the vscodevim extension does not change anything for the terminal.

like image 281
pblpbl Avatar asked Sep 19 '25 23:09

pblpbl


1 Answers

Try ble.sh and modify your .bashrc to use Vim mode (instead of Emacs mode). This will setup your whole terminal to use Vim keybindings (as well as VS Code).

set -o vi  # add this line

More info about ble.sh in Vim mode: https://github.com/akinomyoga/ble.sh/wiki/Manual-%C2%A76-Vim-Mode

like image 60
George Ogden Avatar answered Sep 23 '25 05:09

George Ogden