Mercurial > vim-lawrencium
changeset 153:b5ce60d1e6b4
Fix missing `endif`.
| author | Ludovic Chabant <ludovic@chabant.com> |
|---|---|
| date | Thu, 11 Nov 2021 12:38:09 -0800 |
| parents | 62e054a2c4f0 |
| children | 40181bd0ffcd |
| files | autoload/lawrencium/hg.vim |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autoload/lawrencium/hg.vim Mon Nov 08 10:37:27 2021 -0800 +++ b/autoload/lawrencium/hg.vim Thu Nov 11 12:38:09 2021 -0800 @@ -89,12 +89,13 @@ return l:copts + l:gopts endif endif - + " Just auto-complete with filenames unless it's an option. if l:arglead[0] ==# '-' return [] else return lawrencium#list_repo_files(a:ArgLead, a:CmdLine, a:CursorPos) + endif endfunction function! s:GetHgCommandName(args) abort
