From fc26956a809bed73c8cb7afd909f94786b2eb436 Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Sun, 6 Dec 2020 22:19:59 +0900 Subject: [PATCH] Fix PydocstringFormat also fixed --- 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 2e1c518..9a68c53 100644 --- a/ftplugin/python/pydocstring.vim +++ b/ftplugin/python/pydocstring.vim @@ -15,7 +15,7 @@ if !has('nvim') && (!has('channel') || !has('job')) endif command! -buffer -nargs=0 -range=0 Pydocstring call pydocstring#insert(, , , ) -command! -buffer -nargs=0 -complete=customlist,pydocstring#format PydocstringFormat call pydocstring#format() +command! -buffer -nargs=0 PydocstringFormat call pydocstring#format() nnoremap (pydocstring) :call pydocstring#insert() if get(g:, 'pydocstring_enable_mapping', 1)