| Age | Commit message (Collapse) | Author |
|
It's annoying to have to spell out "apt-get", and I don't want to
configure APT not to use the fancy progress bar because I happen to
like it.
Alternative approach: https://oremacs.com/2019/03/24/shell-apt/
|
|
|
|
I had spent the better part of a day composing a 50-line message to
help-gnu-emacs asking for advice, and I was a heartbeat away from
hitting C-c C-c, until I began wondering if the list returned by
alist-get was a copy or a reference.
Turns out it's a reference. Remembered that setcar is a thing. Whipped
up the following:
(let* ((indicator (alist-get 'compilation-in-progress mode-line-modes))
(old-props (text-properties-at 0 (car indicator)))
(new-props '(face compilation-mode-line-run)))
(setcar indicator (apply #'propertize "⚙" (append new-props old-props))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Background extension: faces now have an :extend attribute that
allows them not to extend beyond EOL. Good enough for now.
- Reports on .dir-locals parsing changes have been closed.
- icomplete has been revamped recently; most of these behaviors have
changed.
- y-or-no-p now allows C-x o'ing out of the minibuffer.
- can't reproduce the org-clocktable bug.
- Magit now says (256+) when there are more than 256 unpulled commits.
- Transient preferences can be set with C-x C-s.
- rg-project seems to DTRT even in a Dired buffer.
Also add information for scroll-lock and org-indent+diff-hl bugs.
|
|
|
|
Need to try the repository version, make a bug report if it's still
failing, and ask when are new releases coming out if not.
|
|
I.e. itches started from scratching other itches.
|
|
|