| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
| |
|
|
|
|
|
|
|
| |
When I changed `unpackaged/org-element-descendent-of' to
`acdw-org/element-descendent-of' (honestly, to make it easier to see where the
definition of the function is), I didn't change all the references to that
function.
|
| |
|
|\ |
|
| | |
|
|/ |
|
| |
|
|
|
|
|
| |
Now <S-return> will do its regular thing /in/ a table, but will also work
/outside/ a table as a regular <return>.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Added a block at the top of the function to call `auto-fill-function' if it's
enabled, and I changed the calls to `newline' to `insert "\n"`, due to
... something. It was having issues figuring out that the new lines were list
items I think.
I also removed the message part in the middle of the function that I forgot to
remove before.
|
| |
|
|
|
|
|
|
| |
`org-return-dwim' now ends a list on an empty nested list item.
See the comment for details.
|
|
|
|
| |
This keeps happening :/
|
|
|
|
| |
From amitp.blogspot.com.
|
|
|
|
|
|
|
|
| |
The advice I've added untabifies in addition to deleting the character, which
enables the function to look at `delete-backward-char-untabify-method' or
whatev.
Also ... whitespace apparently?
|
|
|
|
|
|
| |
I couldn't find a function that would return a filename /if/ it exists, so I
had to write one: `expand-file-name-exists-p'. Might change the name at some
point.
|
|
|
|
|
| |
Based heavily (basically copied) from
https://github.com/olivertaylor/olivertaylor.github.io/blob/master/notes/20210324_emacs-optical-font-adjustment.org
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Mismatched parens
|
|
|
|
| |
I can just overwrite the buffer-local `mode-line-format'.
|
| |
|
|
|
|
|
|
|
| |
In adding `dumb-auto-format', I've removed `acdw/reformat-buffer' because it's
not complex enough or stand-alone enough to keep as its own function.
21 guns.
|
|
|
|
|
| |
Hopefully this will put a halt to all of my whitespace commits. Of course, this
commit also includes whitespace-only diffs.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
setup (https://git.sr.ht/~zge/setup) does everything I tried to do with
`acdw/pkg', et al., but better.
|
| |
|
|
|
|
| |
... and whitespace...
|
| |
|
| |
|
| |
|
|
|
|
|
| |
I've broken out extra functions into `acdw-modeline', so they don't clutter up
the init.el too much.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Instead of only allowing (list-of-hooks) (list-of-functions), `acdw/hooks' now
accepts a (list-of-hook-specs), each of which is of the above form, allowing the
user to set multiple unrelated hooks at once.
|
|
|
|
|
| |
This change means I don't have to `require' libraries that haven't been
registered with `straight' yet.
|
| |
|
| |
|
|
|
|
| |
I should probably change `acdw/bind-after-map' to use this macro...
|