14
Vis: Vi Improved, on Steroids
(phroxy.z3bra.org)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
Isn't your
x
covered by: https://vim.fandom.com/wiki/Power_of_gWell, partly.
g/pattern/cmd
will let you select lines where you want to applycmd
. For the use case I present in the post, it solves the problem. But theg
command, has the same limitation as every command invim
: it works on line only. On the other hand, thex
command insam
applies to the whole text. It doesn't matter whether or not you have new lines in the pattern.Imagine that you have a text file, and you want to make sure that all paragraphs are separated by only one blank new line. I cannot think of a way of doing it easily in
vim
, while withsam
expressions, you can do:x/\n+/ c/\n\n/
and call it a day :) Another cool feature is that asx
is a command like any other, which applies to any predefined selection. For example, you can do stuff like that:This will first extract "Emacs rules" from the whole text, then extract "Emacs" from it, then change it to "Sam". This means that you can narrow down the parts of the text that your commands will apply to portions of the line. The
g
command here would simply select the last line for you, but then you'd have to be very careful not to substitute the first occurrence of "Emacs", leading to the following invim
(I'm exaggerating the command for the example of course) :