From dccdcd4f18cf27f9baf1e877e55c606b7d36320b Mon Sep 17 00:00:00 2001 From: Aner Zakobar Date: Sat, 28 Mar 2026 17:05:49 +0300 Subject: [PATCH] Fixed bugs and warnings. --- AGENTS.md | 12 ++++++++++++ azos-core | 2 +- flake.lock | 8 ++++---- flake.nix | 3 +-- modules/home-manager/qutebrowser-config.py | 2 +- 5 files changed, 19 insertions(+), 8 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index cc02b82..13827d6 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -49,6 +49,18 @@ nix build '.?submodules=1#nixosConfigurations.vm.config.system.build.vm' ./result/bin/run-nixos-vm ``` +## Emacs Debugging + +When adding or debugging Emacs functionality, you can interact with the running Emacs session via `emacsclient` (with user permission): + +```bash +# Create and switch to a buffer +emacsclient -c -e '(switch-to-buffer (get-buffer-create "test"))' + +# Evaluate arbitrary Elisp +emacsclient -e '(message "hello")' +``` + ## Code Style Guidelines ### File Organization diff --git a/azos-core b/azos-core index 84ae266..6d44344 160000 --- a/azos-core +++ b/azos-core @@ -1 +1 @@ -Subproject commit 84ae2665045dc050d460fc3dfcb320abca947801 +Subproject commit 6d44344fd17f53bc410cb386935e450cf9b5b227 diff --git a/flake.lock b/flake.lock index 06da7bf..a859092 100644 --- a/flake.lock +++ b/flake.lock @@ -96,16 +96,16 @@ ] }, "locked": { - "lastModified": 1774559029, - "narHash": "sha256-deix7yg3j6AhjMPnFDCmWB3f83LsajaaULP5HH2j34k=", + "lastModified": 1774647770, + "narHash": "sha256-UNNi14XiqRWWjO8ykbFwA5wRwx7EscsC+GItOVpuGjc=", "owner": "nix-community", "repo": "home-manager", - "rev": "a0bb0d11514f92b639514220114ac8063c72d0a3", + "rev": "02371c05a04a2876cf92e2d67a259e8f87399068", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-25.11", + "ref": "master", "repo": "home-manager", "type": "github" } diff --git a/flake.nix b/flake.nix index 4b7232a..316a9b5 100755 --- a/flake.nix +++ b/flake.nix @@ -13,8 +13,7 @@ nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { - # Follow corresponding `release` branch from Home Manager - url = "github:nix-community/home-manager/release-25.11"; + url = "github:nix-community/home-manager/master"; inputs.nixpkgs.follows = "nixpkgs"; }; diff --git a/modules/home-manager/qutebrowser-config.py b/modules/home-manager/qutebrowser-config.py index fb735f9..17a2526 100644 --- a/modules/home-manager/qutebrowser-config.py +++ b/modules/home-manager/qutebrowser-config.py @@ -8,7 +8,7 @@ config.load_autoconfig(True) c.tabs.show = 'never' c.session.default_name = '' -c.session.store_size = 0 +c.auto_save.interval = 0 c.tabs.tabs_are_windows = True c.window.title_format = 'qute: {private}{host}{perc}{title_sep}{current_title}'