diff options
| -rw-r--r-- | mut/neovim/fnl/conf/init.fnl | 13 | ||||
| -rw-r--r-- | profiles/station/suckless.nix | 1 |
2 files changed, 3 insertions, 11 deletions
diff --git a/mut/neovim/fnl/conf/init.fnl b/mut/neovim/fnl/conf/init.fnl index 6fd0967..08a6eb8 100644 --- a/mut/neovim/fnl/conf/init.fnl +++ b/mut/neovim/fnl/conf/init.fnl @@ -38,12 +38,12 @@ #(do (vim.api.nvim_feedkeys (vim.api.nvim_replace_termcodes - ":Compile<up><c-f>" true false true) + ":Sh<up><c-f>" true false true) :n false) (vim.schedule #(do (vim.cmd "let v:searchforward = 0") - (map :n :/ "/Compile.* " {:buffer true}) - (map :n :? "?Compile.* " {:buffer true}))))) + (map :n :/ "/Sh.* " {:buffer true}) + (map :n :? "?Sh.* " {:buffer true}))))) (map :n "[q" ":cprevious<cr>") (map :n "]q" ":cnext<cr>") (map :n "[x" ":lprevious<cr>") @@ -132,13 +132,6 @@ (vim.notify (.. "\"" title "\" succeeded!")))))))))) (vim.api.nvim_create_user_command - :Compile - (fn [cmd] - (local thunk #(qfjob cmd.fargs nil)) - (set last_job_thunk thunk) - (thunk)) - {:nargs :* :bang true :complete :shellcmd}) -(vim.api.nvim_create_user_command :Sh (fn [cmd] (local thunk #(qfjob [:sh :-c cmd.args] nil)) diff --git a/profiles/station/suckless.nix b/profiles/station/suckless.nix index 24754b2..5afd067 100644 --- a/profiles/station/suckless.nix +++ b/profiles/station/suckless.nix @@ -2,7 +2,6 @@ self, config, pkgs, - suckless, lib, ... }: with lib; { |
