| Commit message (Collapse) | Author | Age |
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Especially `kill-ring-save-unfilled', though it doesn't quite work in a really
weird way.
|
| |
|
|\ |
|
| |\ |
|
| | | |
|
| |/
|/| |
|
|/ |
|
|
|
|
| |
Still not quite working... i think i need to kill all the channel buffers too.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
TODO: unfill-buffer, etc.
Possibly a whole 'filler.el' ...
|
| |
|
| |
|
|
|
|
| |
Probably should've been 2 commits...
|
|
|
|
| |
Thanks, doom-themes!
|
| |
|
|
|
|
|
| |
`rx' builds the regexp at compile time -- I need it to be built at runtime.
`rx-to-string' takes care of that for me.
|
|
|
|
| |
Whatever.
|
| |
|
|
|
|
| |
Also I overengineered some other stuff around that.
|
|
|
|
| |
I also added acdw-erc.el.
|
| |
|
|
|
|
| |
I'm not sure how much I'm going to use it, but it's done now.
|
|
|
|
| |
from unpackaged.el
|
|
|
|
| |
from https://endlessparentheses.com/a-comment-or-uncomment-sexp-command.html
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| | |
(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...
|
|/ |
|
| |
|
|
|
|
|
|
| |
`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.
|
| |
|
|
|
|
|
| |
I only rebind winum-select-window-* in graphical buffers because that's
apparently the only place where C-[n] is the same as M-[n].
|
|
|
|
|
|
|
| |
Does the same thing (in general) as the dos2unix C program. By which I mean,
it converts \r\n to \n in the buffer. It doesn't do anything else.
... So it really doesn't do much of the same thing as dos2unix.
|
|
|
|
| |
"dim gray" looks good on both black and white.
|
|
|
|
|
| |
Still to think about: changing the `fringe' face. Do I want it another color?
Do I even need any buffer boundaries? Hm....
|
| |
|
| |
|
|
|
|
| |
... and rename refresh-emacs to emacs-refresh ...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Redefine as much as possible as `setup' forms
- Reorganize into "Setup", "Basics", and "Packages" sections
- Within each section, alphabetize sexps
- Also (mostly) alphabetize acdw- files
- (Not the ones that are almost completely others' code)
- Sidebar: Why is this not a thing in elisp!? Should write a function
- Break karthink's thing into another library `acdw-re'
- Add a function to `acdw': `acdw/find-emacs-source'
- Should refactor that to better find the source
I think everything looks much more better now!
|
|
|
|
| |
I could probably do better things with the output and error buffers. Whatever.
|
|
|
|
| |
Like `crux-insert-date', but I use ISO 8601.
|
|
|
|
|
| |
- Enable `debug-on-error'
- Save all init files before sourcing them
|