Neovim sign gutter, designed to be mostly VCS agnostic
at experimental_diffthis 13 lines 204 B view raw
1local M = {} 2 3local testing = require "vclib.testing" 4 5function M.run() 6 local test_modules = { 7 "vcsigns_tests.hunkops", 8 "vcsigns_tests.sign", 9 } 10 testing.run_tests(test_modules) 11end 12 13return M