Remove org_clean_folds' and org_highlight_table_background' options

Both of these options were pointless and
`org_highlight_table_background' had visual issues.
This commit is contained in:
Alex Vear
2019-09-22 22:58:54 +01:00
parent 9e067addad
commit f7e1410f09
4 changed files with 1 additions and 45 deletions

View File

@@ -79,24 +79,6 @@ an |autocmd| like so.
>
autocmd FileType org setlocal conceallevel=2 concealcursor=nc
<
------------------------------------------------------------------------------
*'b:org_clean_folds'* *'g:org_clean_folds'*
Value: numeric~
Default: 0~
By default folds in Vim look extremely ugly in comparison to folds in Emacs'
Org and Outline mode. When this option is enabled, it will make folds (in Org
or Outline mode buffers) look similar to those in Emacs.
To enable these nicer looking folds for all Org and Outline mode files. place
the following line in your vimrc:
>
let g:org_clean_folds = 1
<
To enable them only for a specific files, you can use this instead:
>
let b:org_clean_folds = 1
<
------------------------------------------------------------------------------
*'b:org_use_italics'* *'g:org_use_italics'*
Value: numeric~
@@ -117,22 +99,6 @@ To enable italics only in a single buffer, use this instead:
>
let b:org_use_italics = 1
<
------------------------------------------------------------------------------
*'b:org_highlight_table_background'* *'g:org_highlight_table_background'*
Value: numeric~
Default: 1~
This option allows you to disable the highlighting of table backgrounds, as
the default may not look great with your chosen |colorscheme|.
To disable this feature place the following line in your vimrc:
>
let g:org_highlight_table_background = 0
<
To disable for a single buffer use this instead:
>
let b:org_highlight_table_background = 0
<
==============================================================================
5. LEGAL *org-legal*