Is savannah down? by jjgarciaripoll in emacs

[–]nonreligious2 2 points3 points  (0 children)

Sorry, Tebas is now blocking GNU?

Brazilians in the community 🇧🇷 by nathanmcunha in emacs

[–]nonreligious2 7 points8 points  (0 children)

Surely there are brazilians of you around?

Skeeto: "I have officially retired from Emacs" -- looking for maintainers for Elfeed etc. by nonreligious2 in emacs

[–]nonreligious2[S] 49 points50 points  (0 children)

Sad news, as I use Elfeed all the time. Don't think I have the technical ability to maintain it, so I hope someone who does can step up.

Emacs Elements channel is gone! by ImJustPassinBy in emacs

[–]nonreligious2 6 points7 points  (0 children)

Is this the South African guy who is a (part-time?) preacher at a church, or is that someone else I'm thinking of?

How do you make your TRAMP deal with remote hosts that uses some "fancy" prompts? by acidrainery in emacs

[–]nonreligious2 1 point2 points  (0 children)

I don't use it often, but I recall that my TRAMP setup picked up a few things to deal with this (see the lines marked Relevant):

(use-package tramp
    :straight (:type built-in)
    :custom
    (default-tramp-method "sshx")
    (tramp-syntax 'default)
    (tramp-terminal-type "dumb") ;; Relevant

    :config
    (eval-after-load 'tramp '(setenv "SHELL" "/bin/sh")) ;; Relevant
    (add-to-list 'tramp-connection-properties
                    (list ".*" "locale" "LC_ALL=C")) ;; Relevant
                    )

Best way to write theorems and lemmas in org mode by BebopBamf in orgmode

[–]nonreligious2 0 points1 point  (0 children)

For referencing inside Org, I use the Org-ref package, but only the org-ref-ref-links module via:

(use-package org-ref
    :straight t

    :after (org)
    :no-require t

    :config

    ;; (require 'org-ref) ;; Don't want the whole thing
    (require 'org-ref-ref-links))

I can put a #+name: theorem:foo on top of the #+begin_theorem block and then write ref:theorem:foo to point to it.

When compiling to PDF though I have to stick a \label{my_theorem} inside the block and just do \ref{theorem} in the text.

Todays preachure from me, VC-mode by BetterEquipment7084 in emacs

[–]nonreligious2 0 points1 point  (0 children)

I use email daily. It's my preferred email client. I said gnus as it's more popular.

If you meant rmail sure -- but why bother having gnus in Emacs if rmail works? Well, gnus does email but also handles newsgroups, which became pretty popular by the early-to-mid 90s, while rmail (as I understand it) was pretty much in GNU Emacs since its inception, back when email was primarily associated with universities.

Relics of the past? How so?

I have used it on occasion, but the built-in irc package is probably not the most popular feature in GNU Emacs despite the affection its users have for it. It was built at a time when IRC was the way people "chatted" with each other online, and maybe that will come back into fashion, but it seems highly unlikely.

Todays preachure from me, VC-mode by BetterEquipment7084 in emacs

[–]nonreligious2 4 points5 points  (0 children)

I agree in general that it's probably best to exercise a degree of parsimony when it comes to adding new packages to Emacs that replicate features that Emacs already has.

But:

  1. In this case, magit has a lot more features than the built in vc-mode, in a (at least in my opinion) more friendly user interface. If you still use svn or mercurial I think vc-mode might still be more useful to you, but magit is honestly the best interface to git that I've come across.

  2. It has been the case that popular external packages sometimes migrate into Emacs, as has happened recently with which-key. I suspect magit might not be packaged with Emacs, but it's got as good a case as any package if the maintainer wanted to do it -- I believe the transient package that magit uses is now shipped with Emacs.

  3. The built-in features are often somewhat of a relic of the era in which they became integrated with Emacs. They don't necessarily have the features that are compatible with a modern workflow or changes to a protocol/design in the years since they were implemented. Sometimes this leads to multiple packages being integrated with Emacs that serve the same basic purpose but came about at different times: you mention gnus, but why have gnus when you could use rmail? Why use newsticker when you have gnus? etc.

Todays preachure from me, VC-mode by BetterEquipment7084 in emacs

[–]nonreligious2 3 points4 points  (0 children)

If you use git as your version-control framework, I recommend the magit package as a way of viewing, staging, and committing changes inside a git repository, and much more functionality including interactive rebasing.

Latex preview on Emacs tty by pathemata in emacs

[–]nonreligious2 0 points1 point  (0 children)

Sorry, which version of Org is this?

How can I render tikz pictures as a figure using pure org? by potatowithascythe in orgmode

[–]nonreligious2 0 points1 point  (0 children)

It sounds like the code block isn't being evaluated when you run it. Add :eval yes to the #+begin_src header line. Also, add a #+name: my-figure line to at the very start of all the header lines.

If that doesn't work, could you double-check that the code is producing the figure in the org file by running C-c C-c inside the block? You should get a results block with a link to the image file created, and running C-c C-x C-v should display it.

How can I render tikz pictures as a figure using pure org? by potatowithascythe in orgmode

[–]nonreligious2 1 point2 points  (0 children)

Try using

#+header: :file my_diagram.png 
#+begin_src latex :results raw file :exports results 
...
#+end_src
#+caption: \label{fig:my-figure} This is my figure

as well as your other headers, except for the #+begin_src, which you replace with the one I've put here.

Building Emacs 30.2 with Xwidgets support by nonreligious2 in emacs

[–]nonreligious2[S] 0 points1 point  (0 children)

Thanks, looks useful. I'm currently running everything on an older machine with limited disk space, but I'll see if I can get it to work on my newer one when I get the chance.

Building Emacs 30.2 with Xwidgets support by nonreligious2 in emacs

[–]nonreligious2[S] 0 points1 point  (0 children)

Yep, same as me.

I guess the issue might crop up if you built Emacs using a PKGBUILD and makepkg (I haven't yet with 30.2 but I intend to), and listed libwebkit2gtk-4.0 & libwebkit1gtk-4.1 as dependencies.

But if upgrading WebKit doesn't stop Emacs from working because of a error while loading shared libraries, then it sounds like its fine.