| ▲ | Can AI Exit Vim?(theadamcolton.github.io) |
| 37 points by topwalktown 3 days ago | 24 comments |
| |
|
| ▲ | bean469 2 days ago | parent | next [-] |
| My favorite big-brained way of quitting is ZZ (save and quit) and ZQ (quit without saving). Learned these shortcuts from a video by the legendary Luke Smith [1]. 1. https://lukesmith.xyz |
| |
| ▲ | stonegray 2 days ago | parent [-] | | Wow, this is so much easier than what i’ve been doing: :call system('kill -9 ' . getpid()) | | |
| ▲ | mwcz 2 days ago | parent | next [-] | | Brilliant. When is the next International Obfuscated Vim Exit contest? | | |
| ▲ | ErroneousBosh 2 days ago | parent [-] | | I misread that as "Intentional Obfuscated Vim Exit contest", which led me to wonder what the Unintentional version would bring. | | |
| ▲ | mwcz 2 days ago | parent [-] | | Haha, my version of that is accidentally closing a split when I meant to drop a buffet, or vice versa, losing either my work or my layout. |
|
| |
| ▲ | ramon156 2 days ago | parent | prev [-] | | `:!sudo shutdown` |
|
|
|
| ▲ | topwalktown 3 days ago | parent | prev | next [-] |
| I test if qwen3.5-35B-A3B can exit vim when running in a harness that allows it to read the raw terminal buffer and send raw key presses to the terminal. Enjoy! |
| |
| ▲ | slim 3 days ago | parent [-] | | what harness do you use ? | | |
| ▲ | topwalktown 2 days ago | parent [-] | | I wrote it myself it python. The model runs in a loop and can either read the terminal or input keys. If it does neither the loop exits. |
|
|
|
| ▲ | tim-tday 2 days ago | parent | prev | next [-] |
| Turns out this was the real test of Artificial General Intelligence all along. Also:
https://github.com/hakluke/how-to-exit-vim |
|
| ▲ | seanhunter 3 days ago | parent | prev | next [-] |
| Obvious question demands an obvious answer. No. No-one can exit vim. I started using it nearly 30 years ago now and there is still no end in sight. I’m pretty much convinced it’s just not possible at this point. |
| |
| ▲ | seanhunter 2 days ago | parent | next [-] | | The irony here is I have been using vim for nearly 30 years and I actually do sometimes have problems quitting. Some background needed. Obviously I know how to exit so it's not that. I always have the following remap in my vimrc: > noremap :W :w
> noremap :Q :q
What this means is if I'm going fast I don't need to get my little finger off the shift between the colon and the w/q to quit if I do it that way. Normally I quit using "ZZ" which doesn't require any shenanigans but whatever.However, if I'm sshed into a remote machine or on a different account/in a docker container/vm or whatever and I don't have my .vimrc around most things are completely fine[1] except that I occasionally have some cognitive dissonance when I try to quit and nothing happens because I have subconsciously done ":Q" instead of "ZZ" or whatever, and my brain does a brief double-take before realising what happened. [1] Yes you don't need a highly customized vimrc to function - most defaults are OK especially if you can load vim-sensible | |
| ▲ | griffzhowl 3 days ago | parent | prev [-] | | Did you try turning your computer off and on? | | |
|
|
| ▲ | k310 3 days ago | parent | prev | next [-] |
| https://theadamcolton.github.io/can-ai-exit-vim/ is 404 |
| |
|
| ▲ | NackerHughes 2 days ago | parent | prev | next [-] |
| The AI model is likely trained on Stack Overflow posts, or otherwise related content from wherever off the internet, so most likely it will have ripped off enough hand-written posts or articles on how to quit Vim. So of course it can regurgitate the required keystrokes on command. And will the writers of those posts, who contributed their knowledge to help out their fellow humans, get a fraction of a penny for the hundreds and thousands and millions of dollars of profit the AI corps are making off the backs of their labour? I somehow doubt it. |
|
| ▲ | meszmate 2 days ago | parent | prev | next [-] |
| Yeah, but it would still open three tabs, rewrite my config, and ask whether I meant :q or :qa! |
|
| ▲ | stonegray 2 days ago | parent | prev [-] |
| Vimscript is extremely token efficient and very common in training data. Dunno about constraining to a window, but vimscript itself could be a good way of sending editing commands. |