Posts about vim

| |

VimtelliJ: All the best of Vim in IntelliJ

VimtelliJ with Scala Sometimes I am a very happy (metals) user, sometimes things just do not work out and I need to fall back to IntelliJ…


Vim: Substitute across all files

Let's say you want to do a refactoring in your Scala project and replace all occurrences of with . Search for what you want to match in…


| |

Vim with Dotty (using coc vim)

TL;DR Install coc Install coursier Remove settings from Add the script given below to your path Add this to your Make sure your…


| |

Vim-test now supports haskell

With this commit vim-test now allows for running test in Haskell with Stack and HSpec . This is pretty neat as it allows to run the whole…


tmux like zoom

I really like the zoom feature of tmux. It allows to jump into any window in detail, if you have multiple split windows open at the same…


|

Running tests with vim-test

Having the test results in-line in the quickfix list (:h quickfix) can be really helpful, as it allows fast test feedback and easy…


|

Jump between test files and implementation in Vim

One thing I was still missing a little bit after switching from IntelliJ to Vim was being able to quickly switch between the file I am…


Vim: Search for visual selection

The command is awesome in Vim, as it let's you search for the word currently under the cursor as in: keystrokes: But unfortunately if you…


Increment numbers in Vim

Today I learned about a great command to increase numbers in Vim! How to go from here: To here: to select to the bottom to increment each…