summary refs log tree commit diff stats
path: root/lisp
Commit message (Collapse)AuthorAge
* Rewrite early-init.elCase Duckworth2021-08-21
|
* Allow acdw/copy-region-as-plain in read-only buffersCase Duckworth2021-08-20
|
* Follow user preference in `org-return-follows-link'Case Duckworth2021-08-20
|
* Better handle prefix links in acdw/org-return-dwimCase Duckworth2021-08-20
|
* Merge branch 'main' of tildegit.org:acdw/emacsCase Duckworth2021-08-19
|\
| * Add `sort-setq'Case Duckworth2021-08-18
| |
* | Update `acdw/copy-text-plain'Case Duckworth2021-08-19
|/ | | | Totally works great now :)
* Indicate the region that's been copy-plain'dCase Duckworth2021-08-17
|
* Break out functionality into other filesCase Duckworth2021-08-16
|
* Correct drawer-ignoring logic in `acdw-org/count-words-stupidly'Case Duckworth2021-08-16
| | | | | | After finding the :END: of the drawer, the point is (I think) just at the end of :END:, meaning it won't catch the next drawer if there's another one. (forward-line) fixes that issue.
* Merge `acdw-org/count-words' and `acdw-org/count-words-stupidly'Case Duckworth2021-08-14
| | | | I kept the second name, because really, it is a stupid function.
* Implement `with-eval-after-loads' macroCase Duckworth2021-08-14
|
* Use `unfill' package and delete `kill-ring-save-unfilled'Case Duckworth2021-08-14
| | | | `acdw/copy-region-plain' takes care of what I want it to.
* Don't error on bad drawersCase Duckworth2021-08-13
|
* Correct </> bugCase Duckworth2021-08-13
|
* Edit `acdw-org/count-words-stupidly' to be even MOAR stupiderCase Duckworth2021-08-13
|
* Add acdw/copy-region-plainCase Duckworth2021-08-12
| | | | This is finally the thing I was looking for
* Merge branch 'main' of tildegit.org:acdw/emacsCase Duckworth2021-08-12
|\
| * Add acdw-compat.elCase Duckworth2021-08-11
| |
* | Customize quit messageCase Duckworth2021-08-12
|/
* Add docstringsCase Duckworth2021-08-10
|
* Add acdw-modeline/positionCase Duckworth2021-08-10
|
* Add region-active indicator to word-count modelineCase Duckworth2021-08-10
|
* Show narrowed status in mode-lineCase Duckworth2021-08-07
|
* Add space to word-count modelineCase Duckworth2021-08-07
| | | | Honestly I should make the format a customizable variable.
* Turn off ERC modeline when clocked inCase Duckworth2021-08-07
| | | | Less distracting.
* Add `acdw-org/count-words-stupidly'Case Duckworth2021-08-07
| | | | | To count words in an Org-mode buffer, disregarding headings and drawers completely.
* Add twitter.com URL handlingCase Duckworth2021-08-07
| | | | | TODO: This could be smarter, e.g. not going to nitter if twitter.com/t.co is part of the URL query.
* Add alias for erc-propertize -> propertizeCase Duckworth2021-07-31
|
* Rewrite kill-ring-save-unfilledCase Duckworth2021-07-31
|
* Aesthetic and messageCase Duckworth2021-07-31
|
* Move private.elCase Duckworth2021-07-23
|
* Further configure org-modeCase Duckworth2021-07-22
| | | | | Especially `kill-ring-save-unfilled', though it doesn't quite work in a really weird way.
* Configure ERC furtherCase Duckworth2021-07-22
|
* Merge branch 'main' of tildegit.org:acdw/emacsCase Duckworth2021-07-14
|\
| * Merge branch 'main' of https://tildegit.org/acdw/emacsCase Duckworth2021-07-02
| |\
| * | Modify erc configCase Duckworth2021-07-02
| | |
* | | Add `erc/reconnect'Case Duckworth2021-07-14
| |/ |/|
* | Switch prefix with erc-switch-to-bufferCase Duckworth2021-06-30
|/
* Force mode line update after quitting serverCase Duckworth2021-06-06
| | | | Still not quite working... i think i need to kill all the channel buffers too.
* Add acdw-erc/promptCase Duckworth2021-06-06
|
* Require erc on connectCase Duckworth2021-06-06
|
* Write function to require private.elCase Duckworth2021-06-06
|
* Add unfill-regionCase Duckworth2021-06-02
| | | | | | TODO: unfill-buffer, etc. Possibly a whole 'filler.el' ...
* Remove commented blockCase Duckworth2021-06-02
|
* Add ORG functionalityCase Duckworth2021-06-01
|
* Move things from init.el to acdw.el and acdw-eshell.elCase Duckworth2021-05-30
| | | | Probably should've been 2 commits...
* Fix mode-line flashingCase Duckworth2021-05-28
| | | | Thanks, doom-themes!
* Change C-z binds to C-c and remove leaderCase Duckworth2021-05-27
|
* Fix `acdw/build-button-url-regexp' to rebuild on callCase Duckworth2021-05-25
| | | | | `rx' builds the regexp at compile time -- I need it to be built at runtime. `rx-to-string' takes care of that for me.