From 3631ccd64de2af6c44e5bbb4601b96510b10b407 Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Thu, 5 Apr 2018 00:47:18 +0100 Subject: [PATCH] fix typo --- autoload/go/rename.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/go/rename.vim b/autoload/go/rename.vim index 244599749f..b529d3bf41 100644 --- a/autoload/go/rename.vim +++ b/autoload/go/rename.vim @@ -31,7 +31,7 @@ function! go#rename#Rename(bang, ...) abort let offset = go#util#has_job() ? offset : shellescape(offset) let to_identifier = go#util#has_job() ? to_identifier : shellescape(to_identifier) - let cmd = [bin_path, "-offset", offset, "-to", to_identifier, -tags', go#config#BuildTags()] + let cmd = [bin_path, "-offset", offset, "-to", to_identifier, '-tags', go#config#BuildTags()] if go#util#has_job() call go#util#EchoProgress(printf("renaming to '%s' ...", to_identifier))