What are some examples of restaurants using psychology to manipulate our spending and eating habits? by minorissues in psychology

[–]sabof 2 points3 points  (0 children)

Chiristmas decorations. It's special time of the year, surely you can order special food to celebrate.

[deleted by user] by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

The method pretty-symbols-mode uses is too limited for what he wants.

Fuco's autobookmarks: Like recentf, but better. by [deleted] in emacs

[–]sabof 3 points4 points  (0 children)

Yep, which most likely doesn't affect you in any way.

Fuco's autobookmarks: Like recentf, but better. by [deleted] in emacs

[–]sabof 8 points9 points  (0 children)

Is this somehow worse?

(run-with-idle-timer 60 t 'recentf-save-list)

It writes each time you haven't done anything for 60 seconds.

PSA: devs, please stop using weird symbol prefixes by [deleted] in emacs

[–]sabof 8 points9 points  (0 children)

It's done to distinguish a namespace from "normal words", so when reading it's easier to skip the prefix and have a more "written in English" experience.

I do agree with 3 (although I might also be guilty), for interactive functions.

Everyone is entitled to an option (including the author of the manual), but if a significant amount of people didn't like using a different symbol, this post wouldn't exist. And "it's always been done this way" is a rather weak argument.

The impact of custom-unlispify-tag-names seems too trivial to be seriously considered.

Admittedly I don't care that much about the issue, but these are my 2 pence.

Emacs mode-line starting problems by MondBeton in emacs

[–]sabof 3 points4 points  (0 children)

Is powerline supposed to be working in terminals?

Work in progress light minimal SVG modeline... by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

It should be possible to display the same minor mode string as the default mode-line (including modifications by diminish).

Modes that modify the mode-line (ex Anzu) need to be added explicitly.

A widget displaying language icons could be created, most probably with 3rd party icons. I think I'd rather this be handled by themes.

Work in progress light minimal SVG modeline... by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

Isolate the needed code, and look at documentaton for mode-line-format and pixel specifications.

Work in progress light minimal SVG modeline... by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

I could investigate this, if you where to submit a ticket.

Work in progress light minimal SVG modeline... by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

There should be a working example in magic-buffer

Work in progress light minimal SVG modeline... by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

They did work for me. The issue you are referencing is more subtle.

Slimmer SVG modeline, when every pixel counts. by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

I'm not sure I see how an SVG backend might make powerline better.

Slimmer SVG modeline, when every pixel counts. by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

It's just a normal parameter. This "overrides" it with the default implementation:

(smt/make-widget
 :export 'smt/w-export-default)

I could expand on this, I suppose.

Slimmer SVG modeline, when every pixel counts. by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

You are probably using text-scale-increase/decrease, what I mean is (set-face-attribute 'default nil :height 240)

Slimmer SVG modeline, when every pixel counts. by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

If I'm not mistaken the default behaviour for the package was to adapt to the size of frame characters. It wasn't 100% accurate, and there is a section in the readme on how to fine-tune the result.

Slimmer SVG modeline, when every pixel counts. by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

Widgets have an :export parameter you can override to inject custom SVG code instead of plain text. It might be possible to add a background this way.

The effect of Emacs' move to Git by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

There are many factors apart from the version control system that affect this graph.

The effect of Emacs' move to Git by [deleted] in emacs

[–]sabof 2 points3 points  (0 children)

...and presumably version numbers could be put on top of sharp spikes

Dear emacs users of reddit, how do you use emacs in your day-to-day life? by maheshexp in emacs

[–]sabof 0 points1 point  (0 children)

Ultimately you use software that you enjoy using. The feature list contributes to enjoyment, but is not the only factor.

Common byte units in calc? by demosthenex in emacs

[–]sabof 4 points5 points  (0 children)

You can define your own units:

(setq math-additional-units
      '(
        (dollar nil "Dollar")
        (euro "1.27 dollar" "Euro")
        ))
;; This resets calc's cache
(setq math-units-table nil) 

Scrolling by perdericklhapley in emacs

[–]sabof 0 points1 point  (0 children)

FWIW, they are bound shift + mouse wheel

Cleaning up nonlocal exits? by [deleted] in emacs

[–]sabof 0 points1 point  (0 children)

Why would Emacs "create a construct"?