about summary refs log tree commit diff stats
path: root/lisp/acdw.el
Commit message (Collapse)AuthorAge
...
* Add fat-finger-exitCase Duckworth2021-09-14
|
* Improve sort-setqCase Duckworth2021-09-13
|
* Add 💩Case Duckworth2021-09-10
|
* Add suppress-messagesCase Duckworth2021-09-09
|
* blepCase Duckworth2021-09-08
|
* Add goto-{last|first}-rowCase Duckworth2021-09-08
|
* Make acdw.el package-lint compliantCase Duckworth2021-09-08
| | | | Really just to silence flymake...
* Change acdw/reading-mode to reading-modeCase Duckworth2021-09-07
|
* Add other-window-or-switch-buffer-backwardCase Duckworth2021-09-06
|
* Add ';' as link-cmd map in acdw/reading-modeCase Duckworth2021-09-04
|
* Sort init.el by packageCase Duckworth2021-09-04
|
* Add `clone-buffer-write-file' and sortCase Duckworth2021-09-03
|
* Change to acdw/make-password-fetcherCase Duckworth2021-09-02
|
* Enable iscroll-mode alwaysCase Duckworth2021-09-02
|
* Add functions and shitCase Duckworth2021-09-02
|
* Change warn to messageCase Duckworth2021-09-01
|
* Add acdw/fetch-password and circe network configurationCase Duckworth2021-09-01
|
* Make C-w work right in paredit-modeCase Duckworth2021-08-25
|
* Setup `repeat-mode' real nice likeCase Duckworth2021-08-24
|
* Allow acdw/copy-region-as-plain in read-only buffersCase 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
|
* 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.
* Add acdw/copy-region-plainCase Duckworth2021-08-12
| | | | This is finally the thing I was looking for
* 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.
* Rewrite kill-ring-save-unfilledCase 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.
* 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
|
* Move things from init.el to acdw.el and acdw-eshell.elCase Duckworth2021-05-30
| | | | Probably should've been 2 commits...
* 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.
* Formatting ... and stuffCase Duckworth2021-05-25
| | | | Whatever.
* Add gemini to browse-url-button-regexpCase Duckworth2021-05-24
| | | | Also I overengineered some other stuff around that.
* Remove modeline customization in acdw/reading-modeCase Duckworth2021-05-24
|
* Add `sort-sexps'Case Duckworth2021-05-22
| | | | from unpackaged.el
* Add `comment-or-uncomment-sexp'Case Duckworth2021-05-21
| | | | from https://endlessparentheses.com/a-comment-or-uncomment-sexp-command.html
* Comment out `hook-defun'Case Duckworth2021-05-21
| | | | | | | | | | 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.
* Fix `acdw/system' argument parsingCase Duckworth2021-05-21
| | | | | | | | | | `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.
* Add `acdw/system' macroCase Duckworth2021-05-11
| | | | | | `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.
* Remap C-w to backward-kill-word if the region isn't activeCase Duckworth2021-05-04
|
* Add `dos2unix'Case Duckworth2021-05-01
| | | | | | | 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.
* Change the fringe faceCase Duckworth2021-04-30
| | | | "dim gray" looks good on both black and white.
* Customize fringesCase Duckworth2021-04-30
| | | | | Still to think about: changing the `fringe' face. Do I want it another color? Do I even need any buffer boundaries? Hm....