Neat. The quick and dirty way I use if I want to make something big and unmissable is to invoke figlet inside vim: ":r!figlet vim"
Making ASCII Art in Vim
11–17 of 17 posts
Re: Making ASCII Art in Vim
#12Another slew of utility lies in `:help searchoffset`, often like the following: https://til.codeinthehole.com/posts/about-vims-semicolon-sea... /x/e-3 /x/+1 /x/;/yz ...it allows near arbitrary cursor placement (eg: this blog articles "squiggle" situation) to be able to find the beginning of the squiggle, or the end of the squiggle (or temporarily using "X" and "Z" for start/end, and "clearing" it with `V...:s/[XY]/./…
/test_.*_errors/;/errors
I find it much easier to use "\zs". That tells vim where you want the "start" of the match to be. Everything before the "\zs" is just treated like context: /test_.*_\zserrors
It is also useful for ":s/match/sub"Re: Making ASCII Art in Vim
#13Neat. The quick and dirty way I use if I want to make something big and unmissable is to invoke figlet inside vim: ":r!figlet vim"
Re: Making ASCII Art in Vim
#14Another slew of utility lies in `:help searchoffset`, often like the following: https://til.codeinthehole.com/posts/about-vims-semicolon-sea... /x/e-3 /x/+1 /x/;/yz ...it allows near arbitrary cursor placement (eg: this blog articles "squiggle" situation) to be able to find the beginning of the squiggle, or the end of the squiggle (or temporarily using "X" and "Z" for start/end, and "clearing" it with `V...:s/[XY]/./…
For the last example given in that article: /test_.*_errors/;/errors I find it much easier to use "\zs". That tells vim where you want the "start" of the match to be. Everything before the "\zs" is just treated like context: /test_.*_\zserrors It is also useful for ":s/match/sub"
Re: Making ASCII Art in Vim
#15You can find her impressive ASCII art archived at
https://web.archive.org/web/20091028031724/http://www.geocit...