xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit f6288b4a26934b92fa93ff2872f687347159681f

Mark MakeBuffer function with `abort` keyword
Author: xaizek
Author date (UTC): 2020-01-10 20:24
Committer name: xaizek
Committer date (UTC): 2020-01-10 20:24
Parent(s): eb0c4d2da1157549ee6883deced84a3977a4d0a2
Signing key: 99DC5E4DB05F6BE2
Tree: 4b3af62b621a71e1d7f261665fe0a72b6bc98962
File Lines added Lines deleted
data/vim/plugin/uncov.vim 1 1
File data/vim/plugin/uncov.vim changed (mode: 100644) (index 2905540..e8744ba)
... ... function! s:ShowCoverage(reload, ...) abort
43 43 call s:MakeBuffer(l:repo, l:relFilePath, l:buildid, a:reload) call s:MakeBuffer(l:repo, l:relFilePath, l:buildid, a:reload)
44 44 endfunction endfunction
45 45
46 function! s:MakeBuffer(repo, relFilePath, buildid, reload)
46 function! s:MakeBuffer(repo, relFilePath, buildid, reload) abort
47 47 let l:coverageInfo = systemlist('uncov '.a:repo.dir().' get '.a:buildid.' /' let l:coverageInfo = systemlist('uncov '.a:repo.dir().' get '.a:buildid.' /'
48 48 \.shellescape(a:relFilePath)) \.shellescape(a:relFilePath))
49 49 if v:shell_error != 0 if v:shell_error != 0
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master