Fix missing `endif`.
1 files changed, 2 insertions(+), 1 deletions(-)

M autoload/lawrencium/hg.vim
M autoload/lawrencium/hg.vim +2 -1
@@ 89,12 89,13 @@ function! lawrencium#hg#CompleteHg(ArgLe
             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