2

In vim, I am able to highlight the search word by moving my cursor to word and press shift + *. How can I perform the same in visual studio code with VSCodeVim extension?

jacobcan118
  • 7,797
  • 12
  • 50
  • 95

2 Answers2

3

set vim.hlsearch=true in setting.json

tcf01
  • 1,699
  • 1
  • 9
  • 24
0

"set vim.hlsearch=true" setting in settings.json is worded like this in my vscode version (1.76.2):

"vim.hlsearch": true, 
stdout123
  • 33
  • 4