fix(go,nix,zig): dynamic keymap interpolation errors

Amend: 7c6e1950e8
Amend: 5b37bfee23
Amend: 9acc5f48b6
This commit is contained in:
Henrik Lissner
2025-08-30 09:44:14 +02:00
parent 7dcedc16b5
commit 2870697e1a
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@
(when (modulep! +lsp)
(add-hook (intern (format "%s-local-vars-hook" mode)) #'lsp! 'append))
(map! :map ,(symbol-value (intern (format "%s-map" mode)))
(map! :map ,(intern (format "%s-map" mode))
:localleader
"a" #'go-tag-add
"d" #'go-tag-remove

View File

@@ -25,7 +25,7 @@
(add-hook (intern (format "%s-local-vars-hook" mode)) #'lsp! 'append))
(map! :localleader
:map ,(symbol-value (intern (format "%s-map" mode)))
:map ,(intern (format "%s-map" mode))
"f" #'nix-update-fetch
"p" #'nix-format-buffer
"r" #'nix-repl-show

View File

@@ -12,7 +12,7 @@
(when (modulep! +lsp)
(add-hook (intern (format "%s-local-vars-hook" mode)) #'lsp! 'append))
(map! :localleader
:map ,(symbol-value (intern (format "%s-map" mode)))
:map ,(intern (format "%s-map" mode))
"b" #'zig-compile
"f" #'zig-format-buffer
"r" #'zig-run