From 42315ab08c741bcb46e9054afe5104c7cd75a569 Mon Sep 17 00:00:00 2001 From: Alex Vear Date: Tue, 25 Aug 2020 22:45:43 +0100 Subject: [PATCH] Remove pointless (and inaccurate) paragraph on folding in help doc --- doc/org.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/doc/org.txt b/doc/org.txt index 19a98d8..fe37877 100644 --- a/doc/org.txt +++ b/doc/org.txt @@ -45,15 +45,10 @@ enable it manually. To control how Org.vim handles folding, just use the standard Vim |folding| options and commands. -For example if you want to enable or disable folding, use 'foldenable'. +For example if you want to enable or disable folding, just set 'foldenable'. > autocmd FileType org,outline setlocal nofoldenable < -Or if you want folding enabled and all folds opened by default, use -'foldlevelstart'. -> - autocmd FileType org,outline setlocal foldenable foldlevelstart=99 -< For more information on folding in Vim, refer to |fold.txt|. ------------------------------------------------------------------------------