From 336d629b363594f8c67f2e43ce3b6c1f16c5ffdb Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Sun, 6 Dec 2020 21:32:33 +0900 Subject: [PATCH] Remove unnecessary complte --- ftplugin/python/pydocstring.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/python/pydocstring.vim b/ftplugin/python/pydocstring.vim index a11fae3..fa355b9 100644 --- a/ftplugin/python/pydocstring.vim +++ b/ftplugin/python/pydocstring.vim @@ -14,7 +14,7 @@ if !has('nvim') && (!has('channel') || !has('job')) finish endif -command! -buffer -nargs=0 -range=0 -complete=customlist,pydocstring#insert Pydocstring call pydocstring#insert(, , , ) +command! -buffer -nargs=0 -range=0 Pydocstring call pydocstring#insert(, , , ) command! -buffer -nargs=0 -complete=customlist,pydocstring#format PydocstringFormat call pydocstring#format() nnoremap (pydocstring) :call pydocstring#insert()