:set commands aren't working after latest update (1.9.1) #426
-
I have a keybind in my .ideavimrc that toggles relative line numbers which comes in handy when pair programming. However, with the most recent Ideavim update my custom bind doesn't work. After poking around, I realized no Here's the keybind in question: Any help would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, sorry, that seems to be a bug in the new implementation of vim parser. We'll fix this and for the moment you can use the following rude mapping: |
Beta Was this translation helpful? Give feedback.
Hi, sorry, that seems to be a bug in the new implementation of vim parser. We'll fix this and for the moment you can use the following rude mapping:
nnoremap <expr> <leader>tl (&relativenumber) ? ':set norelativenumber<cr>' : ':set relativenumber<cr>'