From ebbfc350b8622955163b5580bec1b6c92ee7a12a Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Sun, 3 Jan 2016 13:27:13 -0700 Subject: [PATCH] Disable legacy commands by default, as per schedule --- plugin/pencil.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/pencil.vim b/plugin/pencil.vim index 8f01cf2..c86e945 100644 --- a/plugin/pencil.vim +++ b/plugin/pencil.vim @@ -181,9 +181,9 @@ com -nargs=0 PFormat call pencil#setAutoFormat(1) com -nargs=0 PFormatOff call pencil#setAutoFormat(0) com -nargs=0 PFormatToggle call pencil#setAutoFormat(-1) -" NOTE: legacy commands will be disabled by default on 31-Dec-15 +" NOTE: legacy commands have been disabled by default as of 31-Dec-15 if !exists('g:pencil#legacyCommands') - let g:pencil#legacyCommands = 1 + let g:pencil#legacyCommands = 0 en if g:pencil#legacyCommands com -nargs=0 DropPencil call pencil#init({'wrap': 'off' })