<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dotemacs.git/modules/config-utilities.el, branch v0.7.2</title>
<subtitle>my Emacs configuration
</subtitle>
<id>https://git.cjennings.net/dotemacs.git/atom?h=v0.7.2</id>
<link rel='self' href='https://git.cjennings.net/dotemacs.git/atom?h=v0.7.2'/>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/'/>
<updated>2025-11-06T23:58:40+00:00</updated>
<entry>
<title>feat: Add comprehensive authentication cache reset utility</title>
<updated>2025-11-06T23:58:40+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-11-06T23:58:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=90b24921b780da0c9ec60f8aed256e91066df9a1'/>
<id>urn:sha1:90b24921b780da0c9ec60f8aed256e91066df9a1</id>
<content type='text'>
Added cj/reset-auth-cache function to recover from incorrect password
entry for encrypted files like authinfo.gpg. Resolves "Bad session key"
and "Decryption failed" errors.

Key features:
- Smart cache clearing: preserves 400-day GPG/SSH cache by default
- Optional prefix arg (C-u) to also clear gpg-agent cache
- Clears auth-source, EPA file handler, and optionally gpg-agent caches
- Bound to C-; A for easy access (removed from debug menu C-c d)

Also added cj/kill-gpg-agent for aggressive agent reset when needed.

Consolidates and replaces simpler auth-source-only version that was
previously in config-utilities.el.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>feat:which-key: Add descriptive labels for custom keymaps</title>
<updated>2025-10-27T23:45:23+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-27T23:45:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=87034eab17625165b884128d8058c1158fc2f50f'/>
<id>urn:sha1:87034eab17625165b884128d8058c1158fc2f50f</id>
<content type='text'>
Enhance which-key integration by providing detailed descriptions for
new key bindings across multiple modules. This improves the
usability of custom keymaps by clarifying the purpose of each
keybinding, making it easier for users to navigate and understand
different menus and options available within the configuration.

This update ensures that all custom keymaps now display a
descriptive label in the which-key popup to explain their
functionality, aiding users in identifying keymap purposes promptly.
</content>
</entry>
<entry>
<title>fix: config-utilities: remove duplicate keymap binding</title>
<updated>2025-10-27T01:32:35+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-27T01:32:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=2bcf9ffccc6c8ef558bf2eb62bc325a39b63d1ea'/>
<id>urn:sha1:2bcf9ffccc6c8ef558bf2eb62bc325a39b63d1ea</id>
<content type='text'>
Removed a duplicate keymap binding for
'cj/delete-emacs-home-compiled-files'
</content>
</entry>
<entry>
<title>feat: undead-buffers: Add `cj/make-buffer-undead` function and tests</title>
<updated>2025-10-22T17:27:05+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-22T17:27:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=c4e9232f297ffda4443477c589f29052178d2c87'/>
<id>urn:sha1:c4e9232f297ffda4443477c589f29052178d2c87</id>
<content type='text'>
Introduce a new function `cj/make-buffer-undead` that appends a
buffer name to the `cj/undead-buffer-list`, preventing it from being
killed. This comes along with a suite of tests to check various
scenarios and edge cases for handling undead buffers.

Additionally, add tests for related functions:
`cj/kill-buffer-or-bury-alive`, `cj/kill-buffer-and-window`, and
others to ensure they correctly manage buffers, particularly with
undead-status considerations.

Refactor `undead-buffer-list` naming for consistency and clarity in
the module.
</content>
</entry>
<entry>
<title>fix: config-utilities: Show Emacs binary location in version info</title>
<updated>2025-10-21T22:53:42+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-21T22:53:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=8a80092b43dcba4d6e49652e0f0358250e0e760f'/>
<id>urn:sha1:8a80092b43dcba4d6e49652e0f0358250e0e760f</id>
<content type='text'>
Also update which-key label for config debugging utilities.
</content>
</entry>
<entry>
<title>refactor:config-utils: method rename, remove dead code</title>
<updated>2025-10-21T21:45:01+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-21T21:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=8eba8f744e8e95f5ff9154f05ce226090361f946'/>
<id>urn:sha1:8eba8f744e8e95f5ff9154f05ce226090361f946</id>
<content type='text'>
- renamed methods to allow intuitive grouping
- removed uncommented/unused code
- fixed compilation bug when no compilation is available
</content>
</entry>
<entry>
<title>feat:config-utils: add debug-keymap C-c d, profiling, benchmarking</title>
<updated>2025-10-21T18:39:44+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-21T18:39:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=20e71df7da9235fcfa05701955bc07f54cd55cf9'/>
<id>urn:sha1:20e71df7da9235fcfa05701955bc07f54cd55cf9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs/refactor:utilities: Add documentation; improve organization</title>
<updated>2025-10-19T10:07:37+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-19T10:05:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=e2e45d866f3911c878aa7a00cd84130859238ae6'/>
<id>urn:sha1:e2e45d866f3911c878aa7a00cd84130859238ae6</id>
<content type='text'>
- Add detailed module commentary with feature list and key commands
- Document all functions with proper docstrings
- Add function/variable declarations for lazy-loaded packages
- Add new Emacs build summary functionality, moved from system-utils
- Fix variable initialization order in list-loaded-packages
- Improve code organization and suppress byte-compiler warnings
</content>
</entry>
<entry>
<title>fix: config-utilities: docstring quoting issue</title>
<updated>2025-10-18T05:26:23+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-18T05:26:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=7c5de692d9878fcdce076e15da7f31466360584d'/>
<id>urn:sha1:7c5de692d9878fcdce076e15da7f31466360584d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>changing repositories</title>
<updated>2025-10-12T16:47:26+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2025-10-12T16:47:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/dotemacs.git/commit/?id=092304d9e0ccc37cc0ddaa9b136457e56a1cac20'/>
<id>urn:sha1:092304d9e0ccc37cc0ddaa9b136457e56a1cac20</id>
<content type='text'>
</content>
</entry>
</feed>
