diff options
| author | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-18 00:52:28 +0200 |
|---|---|---|
| committer | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-20 22:58:39 +0200 |
| commit | 11d50dc8934a5b9e9be73d0445789e005843dfc2 (patch) | |
| tree | c87c84806ab5fcd48f191c765650b91e1e52ce6f /fnl/plugins/window-picker.fnl | |
| parent | 0f3690bd084ba3b47b4c356089b03a6df763572c (diff) | |
Diffstat (limited to 'fnl/plugins/window-picker.fnl')
| -rw-r--r-- | fnl/plugins/window-picker.fnl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fnl/plugins/window-picker.fnl b/fnl/plugins/window-picker.fnl index fa03722..7ddafa5 100644 --- a/fnl/plugins/window-picker.fnl +++ b/fnl/plugins/window-picker.fnl @@ -1,4 +1,5 @@ ;; Select buffer +(import-macros {: keymap} :macros) (local opts {:other_win_hl_color "#171717" :fg_color "#E1E1E1" @@ -13,7 +14,7 @@ (λ config [] (let [window-picker (require :window-picker)] (window-picker.setup opts) - (vim.keymap.set :n :mw (λ [] - (pick-window)) {}))) + (keymap :n :mw (λ [] + (pick-window)) {}))) {1 :s1n7ax/nvim-window-picker :event :VeryLazy :version :2.0.0 : config} |