Skip to content

Commit 2e555e3

Browse files
committed
change default of from 1 to 0
1 parent 5674cad commit 2e555e3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.org

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Add export as LaTeX beamer slides (merges PR #206)
1919
- Keybinding to create plainlist item directly. (closes issue #190)
2020
*** Changed
21+
- Changed default value for =g:org_indent= from =1= to =0=. (issue #243)
2122
- Revamped TODO keyword cycling rules. (PR #237)
2223
- In [[syntax/org.vim][syntax/org.vim]], changed `\@<=' with computational faster `\zs'
2324
- Using =<localleader>c[n/N]= to create new plainlist item following

indent/org.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Delete the next line to avoid the special indention of items
22
if !exists("g:org_indent")
3-
let g:org_indent = 1
3+
let g:org_indent = 0
44
endif
55

66
setlocal foldtext=GetOrgFoldtext()

0 commit comments

Comments
 (0)