Commit ed90d8a

Eric Bower  ·  2026-06-23 23:30:49 -0400 EDT
parent a152b6d
chore: better find cmd for kak
2 files changed,  +11, -7
+8, -5
 1@@ -28,11 +28,14 @@ map global user B ":delete-buffer-picker<ret>"	-docstring "delete buffer"
 2 define-command find -docstring "find files" -params 1 %{ edit %arg{1} }
 3 # complete-command find shell-script-candidates %{ fd -t f }
 4 complete-command find shell-script-candidates %{
 5-  if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
 6-    git ls-files
 7-  else
 8-    find . -type f -not -path '*/.git/*'
 9-  fi
10+  find . -type d \
11+  	\( -name .git -o -name .jj \
12+  	   -o -name .zig-cache -o -name zig-pkg -o -name zig-out \
13+  	   -o -name node_modules \
14+  	   -o -name __pycache__ -o -name .mypy_cache \
15+  	   -o -name .pytest_cache -o -name .ruff_cache -o -name .venv \
16+  	\) -prune \
17+  	-o -type f -printf '%P\n'
18 }
19 
20 define-command dowrap %{ # soft-wrap command
+3, -2
 1@@ -1,9 +1,10 @@
 2 {
 3-  "lastChangelogVersion": "0.75.5",
 4+  "lastChangelogVersion": "0.79.9",
 5   "packages": [
 6     "npm:@deevus/pi-zmx",
 7     "file:~/.pi/agent/extensions/qwen-remote.ts"
 8   ],
 9   "defaultProvider": "rackai",
10-  "defaultModel": "unsloth/Qwen3.6-27b"
11+  "defaultModel": "unsloth/Qwen3.6-27b",
12+  "theme": "dark"
13 }