diff options
| author | 2024-07-26 22:39:32 +0200 | |
|---|---|---|
| committer | 2024-07-26 22:39:32 +0200 | |
| commit | c3c2a2f26ba27574e7b4fabd8be150c057346131 (patch) | |
| tree | 76345040016b07deeb2cc4be49d64f80a6d5c90c /dot_config/nvim/fnl/bindings/init.fnl | |
| parent | nvim/mdquote: fix negative start line bug (diff) | |
nvim: rename tbl to mixed-table, import it as "·"
I swear I'm not succumbing to the APL, I just couldn't find a better
symbol.
Diffstat (limited to 'dot_config/nvim/fnl/bindings/init.fnl')
| -rw-r--r-- | dot_config/nvim/fnl/bindings/init.fnl | 10 |
1 files changed, 5 insertions, 5 deletions
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")]) |
