noooit

joined 1 year ago
[–] [email protected] 1 points 1 year ago

I'm glad nobody is recommending garbage like doom emacs, evil and etc.
Just start from the tutorial start adding your keybindings to make your life easy.

[–] [email protected] 1 points 1 year ago (1 children)

It's a weird default. The file is literally a elisp code with .el like almost everything else.

[–] [email protected] 1 points 1 year ago

You can select in one go in GNU Emacs. You can bind this to some shortcut.

(defun select-func-at-point ()
  (interactive)
  (let (bounds pos1 pos2 mything)
    (setf bounds (bounds-of-thing-at-point 'defun))
    (setf pos1 (car bounds))
    (setf pos2 (cdr bounds))
    (set-mark pos1)
    (goto-char pos2)))
[–] [email protected] 1 points 1 year ago

If you have to compare with vterm, it doesn't. Vterm has more features, faster and less buggy.

[–] [email protected] 1 points 1 year ago

I used both extensively but the both are faster than term or shell.
Vterm is the fastest and most correct about handling key events.
Maybe term will get similar improvement as vterm in the future. This is such a basic thing that most other IDEs also seem to support properly.

[–] [email protected] 1 points 1 year ago (1 children)

Show him one of the email clients on GNU Emacs. Vterm's directory tracking is also unique.

[–] [email protected] 1 points 1 year ago

as long as those files are opened via tramp, there is no way to do that, unless you patch tramp.

[–] [email protected] 1 points 1 year ago

You actually have to learn how to develop those features.

[–] [email protected] 1 points 1 year ago

I didn't know gwsl works for wsl1. I'm gonna give it a try. WSL1 is so much better if you exclude missing syscalls.

[–] [email protected] 1 points 1 year ago

Wow, this is really dumb in a single threaded event driven code base. I hope they replace with some popup or equivalent.

[–] [email protected] 2 points 1 year ago

Actually learning elips itself is the reward.

[–] [email protected] 1 points 1 year ago (1 children)

Regardless of the language, i feel like there is a core layer where it handles lower level stuff and an outer layer we typically interact with.

view more: next ›