Claude Code Session/memory loss after WSL restart

Note to self: Claude Code stores per-project auto-memory and session data under ~/.claude/projects/ using a path derived from the absolute working directory (e.g., -mnt-source-ProjectName). When WSL restarts, Windows drive mount points can change (e.g., /mnt/source becomes /mnt/d/source/), causing the project path to no longer match. This makes previous sessions unresumable and auto-memory invisible. If this … Continue reading Claude Code Session/memory loss after WSL restart

GExperts Code Formatter: Align Assignment Operators

The GExperts Code Formatter can already var blocks, const blocks and single line comments at a configurable column position. The latest addition brings the same capability to assignment operators (:=) in regular code as suggested in this feature request (Yes, I do read those.) How It Works When enabled, the formatter pads the space before … Continue reading GExperts Code Formatter: Align Assignment Operators

GExperts: The Dialog That Ate My Screen (and How I Finally Fixed It)

If you've been using GExperts' "Edit Unit Search Path" dialog on a multi-monitor setup with mixed DPI scaling, you may have noticed something odd: The dialog gets a little bigger every time you open it. Not dramatically - just enough to be annoying. Open it ten times and it's noticeably larger. Open it twenty times … Continue reading GExperts: The Dialog That Ate My Screen (and How I Finally Fixed It)

Disable Bing search in Windows 11 Start menu

Note to self: There is an easy way to disable Bing search in the Windows 11 Start menu: Add the following Registry entry: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search [DWORD] BingSearchEnabled=0 To activate the setting you need to either reboot or run the following command: gpupdate /force Source: makeuseof.com

Context-Sensitive Preview in GExperts Code Formatter Configuration

The formatter configuration dialog now shows context-relevant preview code when you switch between settings tabs. Previously, the same preview.pas file was shown regardless of which tab you were configuring. This made it difficult to see the effect of certain settings because the preview code didn't contain relevant examples. Now each tab loads its own preview … Continue reading Context-Sensitive Preview in GExperts Code Formatter Configuration

GExperts Win64: Enabling the Explicit Filter Expert

The GExperts 64-bit build just got a little more capable. The Filter Explicit Properties expert, which prevents the IDE from writing ExplicitLeft, ExplicitTop, ExplicitWidth, and ExplicitHeight properties to .dfm files, now works in the 64-bit IDE. Since Delphi 2006, the IDE has been adding these Explicit* properties to .dfm files. While they serve a purpose … Continue reading GExperts Win64: Enabling the Explicit Filter Expert

GExperts Code Formatter: Delphi 13 Language Support

The GExperts code formatter has been updated to support three new language constructs introduced in Delphi 13: The noreturn Directive Delphi 13 introduces the noreturn directive for procedures that never return (e.g., procedures that always raise an exception or call Halt). The formatter now correctly keeps this directive on the same line as the procedure … Continue reading GExperts Code Formatter: Delphi 13 Language Support