Skip to main content

Questions tagged [ideavim]

IdeaVim is a Vim emulation plug-in for IDEs based on the IntelliJ IDEA platform.

ideavim
1 vote
0 answers
30 views

How can I surround multiple lines with triple quotes in PyCharm IdeaVim?

Before using IdeaVim I would just select the lines of code with the mouse and press " 3 times to comment the entire section out. I would like to be able to do the same from visual mode in ideavim....
thr0ne's user avatar
  • 11
0 votes
0 answers
26 views

How to make the relative line number shift one character to the left as vscode does in intellij?

I am now using Intellij IDE like pycharm and ideavim plugin, i have the: set number relativenumber inside the .ideavimrc to have the relative number like this: but i am wondering if i can make it ...
Jasper's user avatar
  • 1
-1 votes
0 answers
18 views

How Do I Disable the IntelliJ/CLion Vim Plugin in Terminal?

I want the vim plugin to be enabled in the editor windows, but be disabled in the terminal and other non-editor windows.
Elvir Crncevic's user avatar
1 vote
0 answers
52 views

How can I use j/k to select next/previous completion suggestions in Intellij IDEA/CLion/RustRover(also use IdeaVim)?

In VSCode I can set keybindings.json like this: { "key": "j", "command": "selectNextSuggestion", "when": "suggestWidgetMultipleSuggestions &&...
Sirius Su's user avatar
0 votes
0 answers
23 views

Go directly in INSERT mode after clicking mouse in SELECT mode in IdeaVim plugin

I am using IdeaVim plugin for PhpStorm. Is it possible to go back in INSERT mode after highlighting some code with a mouse and eventually clicking in a specific place? Here is what I mean: After I ...
semi_92's user avatar
  • 188
0 votes
1 answer
44 views

How to map IdeaVim Command + Shift + m to ]m?

I try below mapping but it doesn't jump to method. nnoremap <D-M> ]m How to do it in IdeaVim?
ikhvjs's user avatar
  • 5,663
-1 votes
1 answer
43 views

Delete with vim-surround in visual mode

I want to highlight some word and delete the asterisks for example the sentenace bellow: <u>*Build and Run with Docker*</u> I highlight Build and Run with Docker and then what? If i do d ...
Ledrake's user avatar
  • 161
0 votes
1 answer
57 views

IntelliJ plugin development - loop over only git tracked files

Currently I am working on an IntelliJ plugin, with this plugin I want to iterate over a list of files that are only tracked by git (so excluding the files in the .gitignores). I am able to loop over ...
Ramon Vermeulen's user avatar
0 votes
1 answer
272 views

How to get corresponding ideavim action name for an action?

How can I get corresponding ideavim action name for a particular action? For example, in the screenshot, I want to find corresponding ideavim action name, so that I could map using a vim keybinding. ...
Mehul Pamale's user avatar
1 vote
1 answer
69 views

IdeaVim remapping not working for CloseActiveEditor

I'm using IdeaVim and WebStorm and I want to map closing the active editor to: nnoremap <leader>tc :action CloseActiveEditor<CR> and also map reopening the closed editor to: nnoremap <...
escapingSamsara's user avatar
0 votes
1 answer
60 views

Intellij IdeaVIM visual selection wonky?

Given : assertTrue(selenium.isTextPresent("SOME PAGE")); assertTrue(selenium.isTextPresent("2911030417")); When you select selenium.isTextPresent in order to execute a macro on ...
Anogoya Dagaate's user avatar
0 votes
0 answers
53 views

Ideavim - Cannot re-select with 'gv' after using ':m' move command

In my .ideavimrc I am currently trying to implement a macro that allows me to move a selected block of code multiple time using J and K. The problem is that gv doesn't give me back my old selection ...
Antoine Barthes's user avatar
0 votes
2 answers
73 views

Vim string (double quotes) operator

I found the following vim remaps and they work perfectly for selecting, deleting, choosing...everything in between parenthesis or brackets onoremap b i[| onoremap p i(| I tried getting ...
Ciko's user avatar
  • 3
0 votes
0 answers
395 views

Vim plugins on IdeaVim

I was using Vim in my computer, but recently I began using IntelliJ as IDE. I was using some plugins in my Vim such as UltiSnips, vimtex, through vim-plug. the problem is to transfer the plugins into ...
user22409146's user avatar
1 vote
1 answer
609 views

IdeaVIM multiline editing

i am working with IntelliJ and IdeaVIM. I often end up in a case, where i need to change a Json from { "key": "value", "keytwo": "value" } to { key: &...
steffmaster's user avatar

15 30 50 per page
1
2 3 4 5
17