diff options
Diffstat (limited to '')
| -rw-r--r-- | dot_config/nvim/fnl/bindings/builtins.fnl | 6 | ||||
| -rw-r--r-- | dot_config/nvim/fnl/bindings/init.fnl | 10 | ||||
| -rw-r--r-- | dot_config/nvim/fnl/bindings/plugins.fnl | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/dot_config/nvim/fnl/bindings/builtins.fnl b/dot_config/nvim/fnl/bindings/builtins.fnl index 8c77e35..dd96dfc 100644 --- a/dot_config/nvim/fnl/bindings/builtins.fnl +++ b/dot_config/nvim/fnl/bindings/builtins.fnl @@ -1,5 +1,5 @@ ; document missing builtins -(import-macros {: tbl : recc} :toast.macros) +(import-macros {:mixed-table · : recc} :toast.macros) (recc :which-key :add - [(tbl :gt & :desc "Next tab") - (tbl :gT & :desc "Previous tab")]) + [(· :gt & :desc "Next tab") + (· :gT & :desc "Previous tab")]) diff --git a/dot_config/nvim/fnl/bindings/init.fnl b/dot_config/nvim/fnl/bindings/init.fnl index c350db4..80b6733 100644 --- a/dot_config/nvim/fnl/bindings/init.fnl +++ b/dot_config/nvim/fnl/bindings/init.fnl @@ -1,4 +1,4 @@ -(import-macros {: tbl : recc} :toast.macros) +(import-macros {:mixed-table · : recc} :toast.macros) (each [_ v (ipairs [:builtins :plugins])] @@ -7,7 +7,7 @@ ; general bindings that aren't specific to a plugin (recc :which-key :add ; diagnostics - [(tbl :<leader>e vim.diagnostic.open_float & :desc "diag float") - (tbl :<leader>q vim.diagnostic.setloclist & :desc "diag locations") - (tbl "[d" vim.diagnostic.goto_prev & :desc "prev diag") - (tbl "]d" vim.diagnostic.goto_next & :desc "next diag")]) + [(· :<leader>e vim.diagnostic.open_float & :desc "diag float") + (· :<leader>q vim.diagnostic.setloclist & :desc "diag locations") + (· "[d" vim.diagnostic.goto_prev & :desc "prev diag") + (· "]d" vim.diagnostic.goto_next & :desc "next diag")]) diff --git a/dot_config/nvim/fnl/bindings/plugins.fnl b/dot_config/nvim/fnl/bindings/plugins.fnl index ae0348d..97f09c7 100644 --- a/dot_config/nvim/fnl/bindings/plugins.fnl +++ b/dot_config/nvim/fnl/bindings/plugins.fnl @@ -1,4 +1,4 @@ ; plugin-specific category bindings -(import-macros {: tbl : recc} :toast.macros) +(import-macros {:mixed-table · : recc} :toast.macros) (recc :which-key :add - [(tbl :<leader>f & :desc :+find)]) + [(· :<leader>f & :desc :+find)]) |
