@mrmasterkeyboard it's really fucking sad...
At least I can list #EVi as alternative to #vim, but still...
- I don't want to have to make a #list like @european_alternatives / @alternativeto when it comes to #AIslop, yet HERE WE ARE!
@mrmasterkeyboard it's really fucking sad...
At least I can list #EVi as alternative to #vim, but still...
- I don't want to have to make a #list like @european_alternatives / @alternativeto when it comes to #AIslop, yet HERE WE ARE!
I'm afraid they did. Commit history contains plenty of "claude" and there's this
https://github.com/vim/vim/blob/master/AGENTS.md
replacement fork is called #EVi I believe
#EVi is now built for @opensuse Leap 16/Slowroll/Tumbleweed in my home project. It will replace vim. If you use gvim, you want gevi and there's also evi-small if that's your preference.
https://download.opensuse.org/repositories/home:/underseamonkey/
so this was all done in #evi and compiled with g++
here's the actual code:
/*
basic timer script by beaiouns
written in 2026
this software is unlicensed, use it or don't, tell your friends if you like
just temper your expectations
Usage: peels (seconds)
Example: "peels 10" to peels for 10 seconds.
*/
#include <iostream> // used for basic shit
#include <chrono> // used to tell time (1s)
#include <thread> // used to sleep thread based on the chrono thingy
using namespace std; // i don't wanna type std:: a lot
// this block prints out what we're expecting to happen
// call it when something unexpected happens
void wtfBox() {
cout << "\nUsage: peels (seconds)\n";
cout << "Example: \"peels 10\" to peels for 10 seconds.\n\n";
}
//the main bit
int main(int argc, char* argv[]) {
if (argc != 2) {
wtfBox(); // if they didn't do it right, give them the instructions
} else {
int timeLeft = atoi(argv[1]); // this converts the 2nd argument into a number, e.g. 10
if (timeLeft == 0) {
wtfBox(); // if they didn't do it right, give them the instructions
return 0; // and then don't run the whole loop
}
while (timeLeft > 0) { // here's where the timer actually starts
string sendOut = "Time left: " + to_string(timeLeft); // string to send
// first we gotta blank out the line before printing any new ones
int spacesToPrint = sendOut.length(); // length of what we printed last
int printSpace = 0;
cout << "\r"; // go to the start of the line
while (printSpace <= spacesToPrint) {
cout << " ";
printSpace++;
} // print a bunch of spaces
cout << "\r"; // back to start
cout << sendOut << flush; // here's where we print the current time left
this_thread::sleep_for(1s); // now we wait 1 second
timeLeft--; // and now we have 1 less second to wait
}
// now we're done, so print how long we waited
// the last thing we printed was "Time left: 1" so i'm just gonna print that many spaces
cout << "\r \rYou waited " << argv[1] << " seconds.\n";
}
//end
return 0;
}
* Built #EVi locally and put the #SUSE vimrc in place as the default.
* Aliased #vim and #vi to it to account for muscle memory (view is fine due to $PATH priorities).
* Next up will be to produce an @opensuse package and propose it for the Editors project in the Build Service (with Provides and Obsoletes to have it replace the vim package and replace those aliases with symlinks).
@ki @hell no, otherwise @mrmasterkeyboard wouldn't have to #fork #vim from the last non-#AIslop - #enshittified versionโฆ
That fork is called #EVi (Enhanced [?] Vi):
https://codeberg.org/evi-editor/evi
Steiner EVI with Microcosm #KaeMurphy #EVI #electronicvalveinstrument #electronicmusic
