Fixed bugs and warnings.

This commit is contained in:
2026-03-28 17:05:49 +03:00
parent e7ab8c10d8
commit dccdcd4f18
5 changed files with 19 additions and 8 deletions
+12
View File
@@ -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