11

Recently I switch from vim to Pycharm to program and have installed ideavim plugin. It works well in most cases. When I search for a text, it finds the result, but the searching result has no highlighting color, e.g. I typed 'first_pos' in the command line, and the result shows, but no highlighting color in the word (sorry I can not post image...).

How to change the search result color of ideavim? Thanks.

funnydman
  • 9,083
  • 4
  • 40
  • 55
user1955023
  • 111
  • 1
  • 3

1 Answers1

20

Try this in the console:

:set hls

Taken from this related question: PhpStorm IdeaVim highlight and jump to search term before hitting enter (like Sublime Text or Vim)

Community
  • 1
  • 1
Dan Cornilescu
  • 39,470
  • 12
  • 57
  • 97
  • 4
    PSA: To get it to work globally add it to your `.ideavimrc` file. Also consider `set incsearch` command to highlight while typing search. – Basil Dec 27 '19 at 18:09