| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
|
| |
- sort groups
- hide empty groups
- use expert mode
|
|
|
|
|
|
| |
I'm kind of rethinking my whole 'leader' key stuff. Like, maybe C-z should be
the leader for "application"-type things, but C-c chould be the leader for
other stuff (since that's the predefined leader for user configuration stuff).
|
|
|
|
| |
Just in the one spot. I should do like, all of em.
|
| |
|
| |
|
|
|
|
| |
I'm not sure how much I'm going to use it, but it's done now.
|
|
|
|
| |
from unpackaged.el
|
|\ |
|
| | |
|
| |
| |
| |
| | |
... also add elpher to ibuffer
|
| |
| |
| |
| | |
Trying to get a character that works in most character encodings
|
| |
| |
| |
| | |
from https://endlessparentheses.com/a-comment-or-uncomment-sexp-command.html
|
| |
| |
| |
| | |
... also fix the type of the equality function.
|
| |
| |
| |
| |
| |
| | |
I found out about `after-make-frame-functions', a special hook that I want to
use instead of `after-focus-change-function'. I also don't need to remove it
in the function because the hook only fires once after each frame is made.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The only plus `hook-defun' has over (add-hook 'hook (defun name ... )) is the
ability to add the same function to multiple hooks at once. My init files
don't use that functionality, so I've retired this macro for now.
I'm thinking, honestly, that if a function is used in more than one hook, it
should be defined separately and added to each hook in turn ... you know, like
Emacs does it by default.
|
|/
|
|
|
|
|
|
|
|
| |
`acdw/system' parsed arities of the form
(acdw/system (:home (do-thing)))
incorrectly: instead of expanding to (pcase acdw/system (:home (do-thing))),
it parsed to ... something else that tried to call `:home' as a function and
crapped out. I've fixed that issue and clarified the `cond' clauses.
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
From http://www.nextpoint.se/?p=864
|
| | | |
|
| | |
| | |
| | |
| | | |
IDK
|
| | | |
|
| | |
| | |
| | |
| | | |
Free up the C-z s key for shell
|
| | |
| | |
| | |
| | | |
I should probably change this to `after-make-frame-functions' instead...
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
(I renamed it from `acdw-org/word-count'.)
It's still too slow for use in the modeline. So I have work to do still...
|
| | | |
|
| |/ |
|
| | |
|
| |
| |
| |
| | |
As of ... 9.5(?), it's split into a separate package
|
|/ |
|
|\ |
|
| |\ |
|
| | |
| | |
| | |
| | | |
Since I just use sly
|
| |/
|/| |
|
| |
| |
| |
| | |
I think it causes issues with restarting Gnus in a running session.
|
| | |
|
| | |
|
| | |
|
|\| |
|
| |
| |
| |
| |
| |
| | |
This is a prelude to writing 'acdw-cl.el', since the two IDEs (that's what I'm
calling them) each have a known structure. So I'm going to write a little
library to abstract that out.
|
| |
| |
| |
| |
| | |
I don't think gnus actually 'remembers' these ... possibly they're reset after
it loads >-<
|
| |
| |
| |
| | |
To keep hanging list items from indenting at save.
|
|/
|
|
|
|
| |
`acdw/system' eases configuration -- it returns the system when called with no
arguments, acts as a test with one argument, or as a `pcase' with more than one
argument.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
To set up elsewhere:
1. Delete .emacs.d/var/gnus
2. Start gnus
3. Run gnus/import-feed-list
4. Profit???
I had to also delete all the emails in Emacs-Cloud on IMAP too, so it wasn't
what I'd call perfect. But ... it's good enough, for now. I really wish Gnus
was more programmable, tbh.
|
|
|
|
| |
Oop
|
|
|
|
| |
Who knows this might bite me in the foot
|
| |
|
|
|
|
| |
Oops, should've tested before pushing
|