diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-19 01:51:24 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-19 01:51:24 +0200 |
commit | c58e188c453b99821c4337e20f93ba82e3feac25 (patch) | |
tree | 42bf657091095182087f341f782de503c9adc83c /fnl/plugins/which-key.fnl | |
parent | 7f90f7c25da27ae42c72359395a2fa0008b24b8a (diff) |
Fix arrow names
Diffstat (limited to 'fnl/plugins/which-key.fnl')
-rw-r--r-- | fnl/plugins/which-key.fnl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fnl/plugins/which-key.fnl b/fnl/plugins/which-key.fnl index 269978e..f78efac 100644 --- a/fnl/plugins/which-key.fnl +++ b/fnl/plugins/which-key.fnl @@ -13,13 +13,13 @@ :z true :g true}} :icons {:breadcrumb (. icons :guillemet) - :separator (.. (. icons :small-right-arrow) " ") + :separator (.. (. icons :small-arrow-right) " ") :group "+" :colors false - :keys {:Up (.. (. icons :up-arrow) " ") - :Down (.. (. icons :down-arrow) " ") - :Left (.. (. icons :left-arrow) " ") - :Right (.. (. icons :right-arrow) " ") + :keys {:Up (.. (. icons :arrow-up) " ") + :Down (.. (. icons :arrow-down) " ") + :Left (.. (. icons :arrow-left) " ") + :Right (.. (. icons :arrow-right) " ") :C (.. (. icons :up-caret) " ") :M (.. (. icons :meta) " ") :D (.. (. icons :openbased) " ") |