diff options
author | Teddy Wing | 2018-04-06 01:25:18 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-06 01:25:18 +0200 |
commit | 78a23cd259c7dbca34d0dcf78b8b99aa0a5db1a5 (patch) | |
tree | d5ba2f8a22a79aceec8cdde5577e7e5fe5f5d15f /bundle/github-url/plugin | |
parent | 4d07c3d7e2b87113aa18e3198d7205dbaba290c9 (diff) | |
download | dotvim-78a23cd259c7dbca34d0dcf78b8b99aa0a5db1a5.tar.bz2 |
github-url: Get rid of useless `echo`
I used this for testing purposes but it's no longer relevant.
Diffstat (limited to 'bundle/github-url/plugin')
-rw-r--r-- | bundle/github-url/plugin/github_url.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bundle/github-url/plugin/github_url.vim b/bundle/github-url/plugin/github_url.vim index 7edf836..96483cb 100644 --- a/bundle/github-url/plugin/github_url.vim +++ b/bundle/github-url/plugin/github_url.vim @@ -30,5 +30,4 @@ function! s:FileURL(include_lines, start_line, end_line) return s:BaseRepoURL() . '/blob/' . current_sha . '/' . current_filename . lines endfunction -" echo s:FileURL() command! -range=0 GitHubFileURL :echo <SID>FileURL(<count>, <line1>, <line2>) |