Fix incorrect interpolation.

This commit is contained in:
2026-09-10 21:01:07 +01:00
parent e7a2e5ef58
commit 7e60dbd8c3
+1 -10
View File
@@ -33,8 +33,7 @@ KEY_MAP = {
CONFIG_FILE = "%s"
puts "hello-1"
DEFAULT = <<CODE
DEFAULT = <<'CODE'
# ==== State ====
MAX_PROJECTS = 9
@@ -75,8 +74,6 @@ def in_project?(ws)
!SPECIAL.key?(ws)
end
puts "hello1"
# Toggle between a special-mode workspace (terminal/browser/music/misc/todo)
# and whatever workspace you were last on. Starts the associated app if
# it isn't already running. `ws` is the current workspace, passed in by
@@ -134,8 +131,6 @@ bind 81 do |_, ws|
go_special :todo, ws
end
puts "hello2"
# ==== Project navigation ====
(1..MAX_PROJECTS).each do |n|
@@ -169,12 +164,8 @@ end
# ==== Startup ====
go_project(1, 0)
puts "hello3"
CODE
puts "hello0"
BINDINGS = []
SYSTEM_BINDINGS = []