From b493ad17e552b327c7171584dffe1b9a6e410dbc Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 21 Feb 2019 11:47:23 +0000 Subject: [PATCH] Make minpac commands have consistent format --- plugin/commands.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugin/commands.vim b/plugin/commands.vim index 7198969..fef798e 100644 --- a/plugin/commands.vim +++ b/plugin/commands.vim @@ -1,8 +1,10 @@ " minpac command! PackUpdate packadd minpac | source $MYVIMRC | \ call minpac#update('', {'do': 'call minpac#status()'}) -command! PackStatus packadd minpac | source $MYVIMRC | call minpac#status() -command! PackClean packadd minpac | source $MYVIMRC | call minpac#clean() +command! PackStatus packadd minpac | source $MYVIMRC | + \ call minpac#status() +command! PackClean packadd minpac | source $MYVIMRC | + \ call minpac#clean() " Sort Python Imports command! ISort call do#isort()