diff options
author | Minijackson <minijackson@riseup.net> | 2023-08-24 09:52:52 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-08-24 09:52:52 +0200 |
commit | 4cc3d855742dcd3a150b19d570292e0db2526592 (patch) | |
tree | 3ae42c93abb02b1ff0c6b38a83ac0bb0b2bf41b5 | |
parent | eb2ca44ff07458972f5f0710ad624bf7d2ec6036 (diff) | |
download | nixos-config-reborn-4cc3d855742dcd3a150b19d570292e0db2526592.tar.gz nixos-config-reborn-4cc3d855742dcd3a150b19d570292e0db2526592.zip |
vim: remove debug prints in lua config
-rw-r--r-- | dotfiles/vim/lua/myConfig.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/dotfiles/vim/lua/myConfig.lua b/dotfiles/vim/lua/myConfig.lua index b9a150c..53d46e2 100644 --- a/dotfiles/vim/lua/myConfig.lua +++ b/dotfiles/vim/lua/myConfig.lua | |||
@@ -518,10 +518,6 @@ vim.api.nvim_create_user_command("Browse", function(opts) | |||
518 | Job:new({ | 518 | Job:new({ |
519 | command = 'xdg-open', | 519 | command = 'xdg-open', |
520 | args = { opts.args }, | 520 | args = { opts.args }, |
521 | on_exit = function(j, return_val) | ||
522 | print(return_val) | ||
523 | print(j:result()) | ||
524 | end | ||
525 | }):start() | 521 | }):start() |
526 | end, { nargs = 1 }) | 522 | end, { nargs = 1 }) |
527 | 523 | ||