forked from ruifm/gitlinker.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(git): use 'uv.spawn' for command line IO (ruifm#70)
* refactor(gitlinker): optimize code logic * revert * fix: only set key mappings when options.mappings is lua table * perf(git): add 'uv.spawn' * perf(git): add 'uv.spawn' * perf(git): migrate from jobstart to uv.spawn * refactor(git): rewrite JobReslt * fix * chore * test * chore
- Loading branch information
1 parent
9799b79
commit 35aebb7
Showing
6 changed files
with
559 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
modules = { | ||
["gitlinker"] = "lua/gitlinker.lua", | ||
["gitlinker.*"] = "lua", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
threshold: 90% | ||
patch: | ||
default: | ||
threshold: 90% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.