Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@al3x@hachyderm.io
2024-04-26 10:58:36

In other news, #Emacs Newsticker seems to forget the status of some of the feeds between restarts.
It might not be its issue. I haven't seen this with RSS reader apps though.
After two days of excitement, I'm entering the trough of disappointment with RSS in #Emacs.

@publicvoit@graz.social
2024-03-22 07:11:18

Protesilaos Stavrou: Re: Advice regarding note-taking in #Emacs #orgmode
protesilaos.com/codelo…

@mxp@mastodon.acm.org‬
2024-04-25 11:29:37

@… Good point!
It may be interesting to write a little script or some Elisp code to pull the macOS text replacements into #Emacs.
If they're synced via iCloud, it seems that they're stored under ~/Library/Mobile Documents/com~apple~TextInput/Dictionaries/…<…

‪@mxp@mastodon.acm.org‬
2024-04-25 11:29:37

@… Good point!
It may be interesting to write a little script or some Elisp code to pull the macOS text replacements into #Emacs.
If they're synced via iCloud, it seems that they're stored under ~/Library/Mobile Documents/com~apple~TextInput/Dictionaries/…<…

@al3x@hachyderm.io
2024-04-25 09:45:18

TIL macOS text replacement doesn't work in #Emacs.
I do know #Emacs has many snippet tools.
I looked into using macOS Text Replacement
because
1) it syncs across devices---indeed when it wants to
2) it could have worked across all applications

@al3x@hachyderm.io
2024-04-25 09:45:18

TIL macOS text replacement doesn't work in #Emacs.
I do know #Emacs has many snippet tools.
I looked into using macOS Text Replacement
because
1) it syncs across devices---indeed when it wants to
2) it could have worked across all applications

@publicvoit@graz.social
2024-03-09 11:45:22

This small function is probably a game-changer in my personal #Emacs experience:
From emacs.dyerdwelling.family/emac

@al3x@hachyderm.io
2024-04-25 20:43:49

My #Emacs Lisp attempt today have failed.
The second one is the following:
```
(add-hook 'newsticker-mode-hook (lambda ()
(require 'eww)
(keymap-set newsticker-treeview-mode-map "C-c C-o" 'eww-follow-link)))
```
Honestly I can't say what's wrong with it. If I eval `(…

@al3x@hachyderm.io
2024-04-25 20:43:49

My #Emacs Lisp attempt today have failed.
The second one is the following:
```
(add-hook 'newsticker-mode-hook (lambda ()
(require 'eww)
(keymap-set newsticker-treeview-mode-map "C-c C-o" 'eww-follow-link)))
```
Honestly I can't say what's wrong with it. If I eval `(…

@al3x@hachyderm.io
2024-04-25 12:49:22

What am I doing wrong in this #Emacs snippet:
```
(add-hook 'newsticker-mode-hook (lambda ()
(setq browse-url-browser-function 'eww-browse-url)))
```
I am trying to make newsticker use eww instead of an external browser
for opening links.
Thank you!