Spyke

Modalka for me. It has exactly what you want and no more, which also makes it a lot easier to learn: useful for me that I'm not a programmer.

5

eMacs takes a life time to learn, so the sooner you start, the longer it will take.

52
kbin.social

There was another Twitler who tried to create an everything Reich.

27

Elon is racing him to see who can collapse a thousand-year social media platform the fastest

12
ox0rreply
jlai.lu

just lacks kernel.

Sounds like a trademark of GNU tbh

14
mea_rahreply
lemmy.world

GNU Hurd is going to be mainstream any minute now.

8
sh.itjust.works

Thanks for sharing. I have never seen that deep dive into templeOS before and it is a much more interesting OS than I anticipated.

4

Yeah it's pretty amazing system all things considered. It's kind of as if 8-bit home computer systems continued to evolve, but keep the same principles of being really closely tied to the HW and with very blurry line between kernel and user space. It radiates strong user ownership of the system. If you look at modern systems where you sometimes don't even get superuser privileges (for better of worse) it's quite a contrast.

Which is why it reminds me of Emacs so much. You can mess with most of the internals, there's no major separation between "Emacs-space" and userspace. There are these jokes about Emacs being OS, but it really does remind me of those early days of home computing where you could tinker with low level stuff and there were no guardrails or locks stopping you.

4

An extremely extensible text editor, there's jokes that it can do literally anything, you can play music, watch video, etc.

It's often at war with the cult of vi and the church of emacs.

53
lemmy.sdf.org

if you listen closely, you can still hear the terminal bells ringing of those that never managed to ESC

11

They just said :wq in school, so thanks for the tip. Hard to believe it saves even when the file hasn't been changed if you use :wq. What is the use case for that? If the file gets changed in another program and you want to revert?? Edit: Just saw the comment about the modification times being updated.

3
Norareply
sh.itjust.works

habit lol. i use :w a lot so :wq feels like a natural extension

1
programming.dev

I don't do a lot of text editing in terminal, but I used to have to at my last job and I always reached for nano and gave instructions fot nano since it's just pick up and use.

3
heimchenreply
discuss.tchncs.de

Nano just feels sluggish as soon as you know vim keybindings. Emacs is a bit overkill for some quck edits, but nano is just to basic

6
lemmy.ml

As a nanoite who couldn't be bothered to learn editor commands, I switched to turbo, which is essentially a linux port of the DOS text editor

5

I was using vim for the first time the other day and I was running through the built in vimtutor. I got a call from a friend and they asked what I was up to, and I said I was doing a tutorial for a text editor. At that moment, I felt simultaneously very silly and very smart.

3
sopuli.xyz

By "as soon as you know" you mean "as soon as you have put those bindings to muscle memory". Knowing them isn't really enough.

4

Well yeah, I'd say the same concept applies to using anything tech related these days. It'd be like if you "knew" where all of the keys on a keyboard layout that you don't normally use are located - you'd still need muscle memory to actually use it efficiently.

1

Yeah, again, I don't do much terminal text editing. I have an IDE. If I'm trying to help someone across the country 1000 miles away fix something on the machine I develop for, I'm going to give them instructions on something that will be incredibly easy to use. I don't want to have to explain why the arrow keys aren't working and why they have to use jkl; to navigate or explain how enter edit mode or how so save and exit. Keep it simple stupid.

2
257mreply
lemmy.ml

I've thinking of using Usenet. What client would you recommed for mobile and desktop?

2
257mreply
lemmy.ml

Aw man, now I have to download an whole OS just to use Usenet? /s

1
barsoapreply
lemm.ee

You should really convert to helixism, the latest messianic update to the cult of vi.

5

I mean it does support LSP, natively, I found that ultimately that's all the plugins I really need. It working out of the box and not requiring megabytes of configuration files is one of its great strengths.

If all you need is some customisation it's perfectly possible to write custom commands that execute sequences of commands. Including calling out to the shell and piping to and from external programs. Strictly static sequences though unlike the abomination that is vimscript they're not making keybindings a scripting language...

6

I'm a vim and emacs user for some decades already. I had this urge one day to try and work with helix. It kind of misses some things such as file manager or editorconfig support. Nine months later I'm still using helix. It still misses these things, but I really started to like how I don't need any plugins to work with it and I need about five lines of configuration to have a usable editor. Probably going to continue using it.

And it is written in Rust, which is my main language and I can just jump in to the editor source and fix things if needed.

I miss magit and org from emacs a lot though. Every time I need to write an article, I do it in emacs.

3

Indeed. Make sure to start it with hx --tutor the first time around so you know how to quit :)

And no matter what you do when giving it a try do it in a time and place where you can go at least a week without vi as the command grammar is close yet different enough to completely confuse your muscle memory, you don't want to mix them up (helix uses a strict selection-action command set so you get 'wd' instead of 'dw' and stuff).

2

A self-documenting, extensible lisp computing environment that uses text buffers as its main data format.

8
siriusmartreply
lemmy.world

im a vim user, i dont usually put videos players in my text editor

otherwise, i use mpv for desktop

18
goodnessmereply
lemm.ee

It's possible to watch videos in the terminal as ASCII art with both vlc and mplayer, by the way.

8
hackrisreply
lemmy.ml

Sorry mate, my tired brain interpreted the post in the picture as something you've written :)

1
programming.dev

Late 30s dev here: I've never cared to learn emacs or vim, tried when younger, but left it. Am I a fraud?

6
edriseurreply
jlai.lu

I used to be a vim fan but now I only use it for modifying files over SSH. Other than that I code with an IDE, you can't beat all the plugins and linters with a in-terminal editor. A colleague still codes in emacs and its code is dirty af.

5

A colleague still codes in emacs and its code is dirty af.

PEBKAC - don't blame emacs (not sure why anyone would use it when vim exists, though)

5

I mean, I use a plugin manager for Neovim myself, and you can pretty much configure it to however you like.

Someone even make an inline markdown preview for the editor using sixels (in terminal image display).

but still I prefer the markdown preview plugin as it previews the file using a browser is format rly similar to github's styles

1