Hell doesn’t change, but which is Heaven now? “There are more editors in Heaven and Earth, Horatio, than are dreamt of in your philosophy.” vim is the old stand-by, and is still a king among editors, but now we have Helix, Kakoune, and even a resurgence of interest in ed and edline. You can’t swing a teddy bear without hitting a new editor, half of them written in Rust, the rest in a grab bag of Go, zig, V, or Nim. And that’s just the TUIs.

Hell… Hell is for hell… Hell is for hell… Hell is for emacs.

Hell Is For Children by Pat Benatar

YouTube
By chance, do you know why neovim feels ten times more smooth in a TTY than in a graphic environment?
Nope. But IME it’s common for GUIs to be slower and to use more memory than their TUI counterparts.
Everything generally is.
emacs ofc. I’m sure there’s an emacs implementation of heaven
More like heaven implementation within emacs, so you don’t even leave emacs in your second life
There are definitely at least 9 circles of emacs filled with tormented souls.
They only know vi and don’t know about evil mode.
that’s what I mean
GitHub - emacsorphanage/god-mode: Minor mode for God-like command entering

Minor mode for God-like command entering. Contribute to emacsorphanage/god-mode development by creating an account on GitHub.

GitHub
Counterpoint, heaven probably has lots of Emacs
Just give me nano, I can’t be bothered to fuck with emacs or vim.
use micro, it’s 1000x better

Thanks, I’ll check it out

Edit: did I just fall for an si prefix joke?

It’s a joke, but it’s a real editor

The SI prefix thing stems from a joke anyway. Allow me to trot out the etymology again:

Once upon a time in the 1980s, there was created a program for reading ELectronic Mail called Elm.

Someone created a rival mail reader called Pine, which followed both the tree pun as well as the fact it was a recursive acronym: "Pine is not Elm".

Pine had an editor called the Pine Composer or Pico for short. Pico is both a typographical term as well as an SI unit. They may have been going for both. Too perfect a pun to pass up, perhaps.

Due to licensing uncertainty, someone else created a from-scratch clone of Pico called Nano, cementing the continuation of puns, but in the SI direction.

And then apparently someone else has decided to get on the bandwagon with Micro.

There’s a similar trend in the emulator world, it’s great.
At the risk of invoking the ire of two communities, why shouldn't we think of Micro as Emacs but with Lua instead of Lisp?

I don’t know how Micro works, and I don’t actually use emacs day to day, but as I understand it emacs works a bit like:

  • When you press a key in emacs it invokes a Lisp function that takes as arguments the text buffer that has focus, the parameters of the ‘window’ into that buffer, and the cursor position in that window.
  • This is the case for any key you press in any context, even for typing normal letters.
  • A ‘mode’ in emacs is a set of bindings which associate specific keys with specific functions.
  • ‘modes’ can be stacked on top of each other, with higher modes being able to intercept key presses before they reach lower modes, and changes / manipulate lower modes (I think?)
  • All of the editor’s functionality, such as ‘search’ or ‘undo’, is implemented in that way.
  • All of this is completely customizable, so pressing a key combo can be made to do virtually anything or manipulate the rest of the editor’s systems in any way.

Does Micro work anything like that?

A ‘mode’ in emacs is a set of bindings which associate specific keys with specific functions.

Not quite, a mode is basically a lisp function defined with a different macro that integrates it into the various systems (like showing up in the modeline when active). It can do basically anything, including setting keybinds.

‘modes’ can be stacked on top of each other, with higher modes being able to intercept key presses before they reach lower modes, and changes / manipulate lower modes (I think?)

No, a keybind can only run one function and what that function is is whatever last defined a binding for that key. Like, if one mode defines a key to be something and you activate another that also binds that key, the take over.

Emacs does have something like you describe, where functions can be ‘advised’.

EmacsWiki: Advising Functions

Use vim. 1000x better than emacs

On one hand autocompletion is nice when I want to use a language instead of learning it.

On the other hand I am in the middle of my learning phase.

One thing that irks me a lot is that you save in nano with ^O why!? How does O relates to saving?
I just save ny exiting ctrl+x
It makes the previous version obsolete

I want push my updates from volatile memory out to long term storage.

I always saw the O as output.

Yeah, that is probably my biggest gripe with nano as well.
I’ll try emacs as soon as I find something that isn’t already perfect with vi
Well surely vi could be improved, otherwise we wouldn’t have vim?
Then the question becomes, “did neovim go to far?” :D
I mean…has anyone really been far even as decided to use even go want to do look more like?
You can’t really use go want to do look more like until you’ve first been far even as decided to even go. It’s a prerequisite🤣
Neovim is on the path of enlightenment to become Emacs so everything is alright.
Helix
!! helix mentioned !!
Doom Emacs. made me switch from Vim/Neovim to it. Love it.

Emacs is real whether you like it or not.

(Also I go past one of these billboards about once a week, and I’ve always been so curious about how many calls they get. Or what they say when you call. I should get a Google voice number and check it out.)

vim for the win!
ed (software) - Wikipedia

Vim missing in the picture is insulting
Didn’t know John mentioned a telephone number. Learning new things every day.
Im going to vim heaven :3
GitHub - emacs-evil/evil: The extensible vi layer for Emacs.

The extensible vi layer for Emacs. Contribute to emacs-evil/evil development by creating an account on GitHub.

GitHub
Well I guess I’m Doomed then.
Doom Emacs

A configuration framework for GNU Emacs. Doom Emacs has 15 repositories available. Follow their code on GitHub.

GitHub
saw someone unironically use vim the other day. i thought people actually using vim was a joke.
Why wouldn’t one use vim? It’s a great editor that works under any circumstance.
Unless you want to exit it xD
Esc :q for closing if you didn’t modify anything, :!q for closing and discarding any changes you made and:wq for closing and writing the changes to the file.
I was joking I know how to exit because of sudoedit it just feels like it should be on the main screen like nano or atleast ctrl+c should exit.
If you start vim without opening a file it’s written on the screen in the beginning. It disappears as soon as you start writing something though.
I didn’t notice thanks!
Also, when you want to Quit by hitting CTRL+C, VIM will tell you to use !q instead.
I tried it just didn’t say anything for me, maybe it was an old version?
Perhaps you have vim-tiny installed by default on your distro rather than just vim?