From 5496d7c94581c4c9ad7430357449bb57fc59f501 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Fri, 27 Jun 2025 19:04:13 -0400 Subject: [PATCH] Always return a list from rhubarb#Complete() Resolves: https://github.com/tpope/vim-rhubarb/issues/84 --- autoload/rhubarb.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/rhubarb.vim b/autoload/rhubarb.vim index 6bfa9f5..ba2958a 100644 --- a/autoload/rhubarb.vim +++ b/autoload/rhubarb.vim @@ -274,6 +274,7 @@ function! rhubarb#Complete(findstart, base) abort catch /^\%(fugitive\|rhubarb\):/ echoerr v:exception endtry + return [] endfunction " Section: Fugitive :GBrowse support