How do I tell IntelliJ IdeaVim to re-source the .ideavimrc

13,883

In Intellij's code editor window while in command mode, type a colon, that opens up a mini bar at the bottom. Then type

:source ~/.ideavimrc
Share:
13,883
Freedom_Ben
Author by

Freedom_Ben

Updated on June 08, 2022

Comments

  • Freedom_Ben
    Freedom_Ben almost 2 years

    I made some changes to my .ideavimrc and I want IntelliJ IdeaVim to reload the file. I can obviously close and reopen IntelliJ, but that sucks.

    How can I re-source my .ideavimrc without restarting IntelliJ?

  • blueberry_chopsticks
    blueberry_chopsticks almost 3 years
    And as a bonus, map that command to an ideaVIM keystroke: nnoremap <leader>si :source ~/.ideavimrc<CR>
  • Steven Pribilinskiy
    Steven Pribilinskiy almost 3 years
    Looks like it doesn't work on Windows. I've tried with fully qualified path too, e.g. :source C:\Users\user\.ideavimrc
  • Jacob Pavlock
    Jacob Pavlock over 2 years
    @StevenPribilinskiy it works if you use / instead of \ in the path