TL;DR: I use a vim like editor which tackles Vim’s greatest weakness: vis.

  • z3braOP
    link
    111 months ago

    Of course the examples I gave are easier done interactively, rather than using ex commands. I used them because they’re easy to read and understand.

    I do however use ex (well, sam in my case ) commands quite often though. Examples include renaming variables, changing file paths reference, fixing repetitive typos, …

    There is another area where vis does a really good job: it’s a good replacement for vim macros.

    Sam’s x command let me select a pattern that will match amongst multiple lines, and will then create a new cursor for every match. I can then interactively change text from all these positions at the same time, and the changes apply in real time. With vim you would have to build a macro, then apply it to multiple lines and verify the result, to either undo and restart from scratch, or “accept” the changes. It’s very tedious when you figure out how simpler multi cursors are.