5 comments

  • lilerjee6 minutes ago
    It is convenient to draw flow chart or architecture of something using vim and just ASCII
  • qiine29 minutes ago
    Visual block mode and virtual edit are such killer features of vim.<p>I also like plugins like <a href="https:&#x2F;&#x2F;github.com&#x2F;nvim-mini&#x2F;mini.move" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;nvim-mini&#x2F;mini.move</a> That allows you to move selected characters around; it&#x27;s super useful to correct mistakes or reorder things quickly, and it&#x27;s also very intuitive to make ASCII art with it!
  • vitiral2 days ago
    Awesome! I added your blog to the docs for an ascii art color syntax I wrote for my vim-like editor, I&#x27;d love if you checked it out<p><a href="https:&#x2F;&#x2F;civboot.github.io&#x2F;lua&#x2F;asciigame.html" rel="nofollow">https:&#x2F;&#x2F;civboot.github.io&#x2F;lua&#x2F;asciigame.html</a><p>Note: right now the editor crashes if you mis-type any of the syntax... it&#x27;s not really fully launched, going to fix that soon hopefully but you can see a [screenshot](<a href="https:&#x2F;&#x2F;civboot.github.io&#x2F;img&#x2F;asciigame.png" rel="nofollow">https:&#x2F;&#x2F;civboot.github.io&#x2F;img&#x2F;asciigame.png</a>) of what it looks like<p>Also, if you know any other good references for getting into asciiart I&#x27;d love to reference them as well.<p>Note: the Ele editor isn&#x27;t _quite_ ready for all the asciiart features in your blog post, notably virtualedit and macros are not implemented yet - but I just added basic visual mode so it&#x27;s getting close!
  • newsomix9xl2 days ago
    I know that AI will never replace me until it can generate ASCII art. So far it seems to struggle so I sleep well at night.
  • ramses01 day ago
    Another slew of utility lies in `:help searchoffset`, often like the following: <a href="https:&#x2F;&#x2F;til.codeinthehole.com&#x2F;posts&#x2F;about-vims-semicolon-search-offset&#x2F;" rel="nofollow">https:&#x2F;&#x2F;til.codeinthehole.com&#x2F;posts&#x2F;about-vims-semicolon-sea...</a><p><pre><code> &#x2F;x&#x2F;e-3 &#x2F;x&#x2F;+1 &#x2F;x&#x2F;;&#x2F;yz </code></pre> ...it allows near arbitrary cursor placement (eg: this blog articles &quot;squiggle&quot; situation) to be able to find the beginning of the squiggle, or the end of the squiggle (or temporarily using &quot;X&quot; and &quot;Z&quot; for start&#x2F;end, and &quot;clearing&quot; it with `V...:s&#x2F;[XY]&#x2F;.&#x2F;g`
    • JSR_FDED1 hour ago
      Love it, this was new to me