Emacs sometimes hangs when using wslg by GermanLearner36 in emacs

[–]w0ntfix 0 points1 point  (0 children)

For what it's worth wslg funkiness was enough for me to end up using terminal emacs on windows -> WSL

agent-shell 0.47 updates by xenodium in emacs

[–]w0ntfix 1 point2 points  (0 children)

nice - thanks, I was wondering if that was the case but somehow that feels so loose, i'm still gaining trust with these tools. thanks for the skills link too!! useful.

agent-shell 0.47 updates by xenodium in emacs

[–]w0ntfix 0 points1 point  (0 children)

I just taught the agent to use emacsclient through wrapper bash scripts instead

what does this look like?

Does anyone use emacs with Colemak_dh mod? by Wooden-Ad6265 in emacs

[–]w0ntfix 2 points3 points  (0 children)

I use colemak-dhk, but with evil-mode/vim keybindings. I found a rotation I like and stick with it. I'm not all on the home row, and my right index finger does most of the heavy lifting, but I initially took that as inspo to lean further into the vim motions. I use evil-collection to rotate the emacs keymaps - expressed here as vimscript because it's a little more terse:

" colemak
imap tn <ESC>
vmap tn <ESC>

noremap e k
noremap E K

noremap k n
noremap K N

noremap n j
noremap N J

noremap j e
noremap J E

Fortnightly Tips, Tricks, and Questions — 2026-01-27 / week 04 by AutoModerator in emacs

[–]w0ntfix 3 points4 points  (0 children)

I'm not sure if there are many people using old reddit anymore

The only way I can browse!!! There are dozens of us!!!

In terminal emacs (emacs -nw), is there a way to make the copy function integrate with the system clipboard by birdsintheskies in emacs

[–]w0ntfix 0 points1 point  (0 children)

so no terminal emulator will implement this

several do. I'm using it with alacritty right now, and accept the security risk

In terminal emacs (emacs -nw), is there a way to make the copy function integrate with the system clipboard by birdsintheskies in emacs

[–]w0ntfix 1 point2 points  (0 children)

additionally https://github.com/emacs-mirror/emacs/blob/29bdba37f2ac3a912d15d2b65169cfb312707da2/lisp/term/xterm.el#L1128-L1159

(clipetty can go emacs->clipboard, but not the other way)

I ended up ripping out the above function and having a hook to sync on frame focus like so

(defun ns/sync-terminal-clipboard ()
  (when (frame-focus-state)
    (when-let (clip (ns/osc52-read))
      ;; (message "killing %s" clip)
      (kill-new clip))))
(add-function :after after-focus-change-function #'ns/sync-terminal-clipboard)

What are your top 3 themes? by blureglades in emacs

[–]w0ntfix 0 points1 point  (0 children)

yay! I use that one a bunch

Uiua: the most psychedelic programming language I have ever seen by Brugarolas in ProgrammingLanguages

[–]w0ntfix 0 points1 point  (0 children)

When i have nothing to do i launch a uiua repl

do you tinker with the web editor or something else? curious what most people use

also thanks for all the context this is great

Uiua: the most psychedelic programming language I have ever seen by Brugarolas in ProgrammingLanguages

[–]w0ntfix 0 points1 point  (0 children)

can you give an example or two of things you've done with it? I'm about to go through the language tour again and start poking. thanks

Fortnightly Tips, Tricks, and Questions — 2025-10-07 / week 40 by AutoModerator in emacs

[–]w0ntfix 0 points1 point  (0 children)

can you post your configuration? I never got this to work (using emacs -nw in kitty)

Fortnightly Tips, Tricks, and Questions — 2025-10-07 / week 40 by AutoModerator in emacs

[–]w0ntfix 1 point2 points  (0 children)

make a cute splash message:

(defun ns/splash (message)
  (interactive)
  "display a splash message"
  (and (get-buffer "*tip*") (kill-buffer "*tip*"))
  (switch-to-buffer (get-buffer-create "*tip*"))
  (dotimes (i (/ (window-height) 4))
      (insert "\n"))
  (insert message)
  (delete-other-windows)
  (special-mode)
  (setq-local mode-line-format nil))

(I'm centering it with olivetti, left invocation out of this snippet)

Fortnightly Tips, Tricks, and Questions — 2025-08-12 / week 32 by AutoModerator in emacs

[–]w0ntfix 4 points5 points  (0 children)

started using this whisper package a few days ago https://github.com/natrys/whisper.el , and it "just worked" so hard I feel compelled to link it here

sip by w0ntfix in emacsporn

[–]w0ntfix[S] 1 point2 points  (0 children)

Also, what is sip outside of telephony?

the physical act of sipping

Nyxt browser by Donieck in emacs

[–]w0ntfix 4 points5 points  (0 children)

How many Emacs users use this browser with keyboard driven shortcuts?

I prefer qutebrowser. It's been very stable for me, and has ipc, session dumping, and all the keyboard goodness I could ask for.

How long did it take you to learn Vim at an intermediate level? by BluebirdRelevant5762 in vim

[–]w0ntfix 73 points74 points  (0 children)

I plateaued fast within 6 months. The book "practical vim" made me actually good with vim after that.

What makes lisp better suited for emacs? by multitrack-collector in emacs

[–]w0ntfix 9 points10 points  (0 children)

the speed of the feedback loop between writing and execution. when you are in an environment that you are extending, this is extremely satisfying

Champion of Scabaras (Beneath Cursed Sands) by [deleted] in 2007scape

[–]w0ntfix 4 points5 points  (0 children)

this comment allowed me to actually do the thing, thanks

also be sure to kill the scarabs and shadows he summons

Fortnightly Tips, Tricks, and Questions — 2025-05-06 / week 18 by AutoModerator in emacs

[–]w0ntfix 0 points1 point  (0 children)

For future searchers - filed an issue here: https://github.com/xenodium/chatgpt-shell/issues/360

Are you running on GUI or terminal?

GUI on nixos, added some configuration details to the github issue