Common library code for other vc*.nvim projects.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Apply autoformatting.

+3 -3
+1 -1
lazy.lua
··· 1 1 return { 2 - { 'algmyr/vclib.nvim', lazy = true }, 2 + { "algmyr/vclib.nvim", lazy = true }, 3 3 }
+1 -1
lua/vclib/logging.lua
··· 21 21 return verbose 22 22 end 23 23 24 - M.vclib_verbose = M.verbose_logger("vclib") 24 + M.vclib_verbose = M.verbose_logger "vclib" 25 25 26 26 return M
+1 -1
lua/vclib/run.lua
··· 1 1 local M = {} 2 2 3 - local logging = require("vclib.logging") 3 + local logging = require "vclib.logging" 4 4 5 5 function M.run_with_timeout(cmd, opts, callback) 6 6 logging.vclib_verbose("Running command: " .. table.concat(cmd, " "))