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*

View File

@@ -28,10 +28,3 @@ if org#option('org_conceal_links', 1)
setlocal conceallevel=2
setlocal concealcursor=nc
endif
" Make Vim fold's look more like Org mode folds.
if org#option('org_clean_folds', 0)
setlocal foldtext=getline(v:foldstart)
setlocal fillchars-=fold:-
setlocal fillchars+=fold:\
endif

View File

@@ -103,9 +103,6 @@ highlight def link orgHyperlink Underlined
" Tables
syntax match orgTable /^|.*$/ contains=@Spell,orgBold,orgItalic,orgUnderline,orgVerbatim,orgCode
if org#option('org_hightlight_table_background', 1)
highlight def link orgTable ColorColumn
endif
let b:current_syntax = 'org'

View File

@@ -32,4 +32,4 @@ hi def link outlineHeading4 outlineHeading3
hi def link outlineHeading5 outlineHeading4
hi def link outlineHeading6 outlineHeading5
let b:current_syntax = 'org'
let b:current_syntax = 'outline'