@@ -23,19 +23,21 @@ CONTENTS *orgmode-content
2323 1.2.1.12. org_log_done..........................|orgmode-org_log_done|
2424 1.2.1.13. org_log_into_drawer............|orgmode-org_log_into_drawer|
2525 1.2.1.14. org_highlight_latex_and_related.|orgmode-org_highlight_latex_and_related|
26- 1.2.1.15. org_indent_mode....................|orgmode-org_indent_mode|
27- 1.2.1.16. org_src_window_setup..........|orgmode-org_src_window_setup|
28- 1.2.1.17. org_edit_src_content_indentation.|orgmode-org_edit_src_content_indentation|
29- 1.2.1.18. org_custom_exports..............|orgmode-org_custom_exports|
30- 1.2.1.19. org_time_stamp_rounding_minutes.|orgmode-org_time_stamp_rounding_minutes|
31- 1.2.1.20. org_blank_before_new_entry.|orgmode-org_blank_before_new_entry|
32- 1.2.1.21. org_id_uuid_program............|orgmode-org_id_uuid_program|
33- 1.2.1.22. org_id_ts_format..................|orgmode-org_id_ts_format|
34- 1.2.1.23. org_id_method........................|orgmode-org_id_method|
35- 1.2.1.24. org_id_prefix........................|orgmode-org_id_prefix|
36- 1.2.1.25. org_id_link_to_org_use_id.|orgmode-org_id_link_to_org_use_id|
37- 1.2.1.26. calendar_week_start_day....|orgmode-calendar_week_start_day|
38- 1.2.1.27. emacs_config..........................|orgmode-emacs_config|
26+ 1.2.1.15. org_startup_indented..........|orgmode-org_startup_indented|
27+ 1.2.1.16. org_adapt_indentation........|orgmode-org_adapt_indentation|
28+ 1.2.1.17. org_indent_mode_turns_off_org_adapt_indentation.|orgmode-org_indent_mode_turns_off_org_adapt_indentation|
29+ 1.2.1.18. org_src_window_setup..........|orgmode-org_src_window_setup|
30+ 1.2.1.19. org_edit_src_content_indentation.|orgmode-org_edit_src_content_indentation|
31+ 1.2.1.20. org_custom_exports..............|orgmode-org_custom_exports|
32+ 1.2.1.21. org_time_stamp_rounding_minutes.|orgmode-org_time_stamp_rounding_minutes|
33+ 1.2.1.22. org_blank_before_new_entry.|orgmode-org_blank_before_new_entry|
34+ 1.2.1.23. org_id_uuid_program............|orgmode-org_id_uuid_program|
35+ 1.2.1.24. org_id_ts_format..................|orgmode-org_id_ts_format|
36+ 1.2.1.25. org_id_method........................|orgmode-org_id_method|
37+ 1.2.1.26. org_id_prefix........................|orgmode-org_id_prefix|
38+ 1.2.1.27. org_id_link_to_org_use_id.|orgmode-org_id_link_to_org_use_id|
39+ 1.2.1.28. calendar_week_start_day....|orgmode-calendar_week_start_day|
40+ 1.2.1.29. emacs_config..........................|orgmode-emacs_config|
3941 1.2.2. Agenda settings...........................|orgmode-agenda_settings|
4042 1.2.2.1. org_deadline_warning_days.|orgmode-org_deadline_warning_days|
4143 1.2.2.2. org_agenda_span.....................|orgmode-org_agenda_span|
@@ -181,8 +183,9 @@ CONTENTS *orgmode-content
181183 1.12.8. Recalculating totals........|orgmode-recalculating_totals|
182184 1.12.9. Statusline function..........|orgmode-statusline_function|
183185 1.13. Changelog............................................|orgmode-changelog|
184- 1.13.1. 24 October 2021......................|orgmode-24_october_2021|
185- 1.13.2. 10 October 2021......................|orgmode-10_october_2021|
186+ 1.13.1. 21 January 2024......................|orgmode-21_january_2024|
187+ 1.13.2. 24 October 2021......................|orgmode-24_october_2021|
188+ 1.13.3. 10 October 2021......................|orgmode-10_october_2021|
186189
187190================================================================================
188191TABLE OF CONTENT *orgmode-table_of_content*
@@ -466,13 +469,31 @@ Possible values:
466469 * between `\[` and `\]` delimiters - example: `\[ a=-\sqrt{2} \]`
467470 * between `\(` and `\)` delimiters - example: `\( b=2 \)`
468471
469- ORG_INDENT_MODE *orgmode-org_indent_mode *
472+ ORG_STARTUP_INDENTED *orgmode-org_startup_indented *
470473
471- type: `string`
472- default value: `indent`
474+ type: `boolean`
475+ default value: `false`
476+ Possible values:
477+ * `true` - Uses Virtual indents to align content visually. The indents are only visual, they are not saved to the file.
478+ * `false` - Do not add any Virtual indentation.
479+
480+ This feature has no effect when enabled on Neovim versions < 0.10.0
481+
482+ ORG_ADAPT_INDENTATION *orgmode-org_adapt_indentation*
483+
484+ type: `boolean`
485+ default value: `true`
486+ Possible values:
487+ * `true` - Use hard indents for content under headlines. Files will save with indents relative to headlines.
488+ * `false` - Do not add any hard indents. Files will save without indentation relative to headlines.
489+
490+ ORG_INDENT_MODE_TURNS_OFF_ORG_ADAPT_INDENTATION *orgmode-org_indent_mode_turns_off_org_adapt_indentation*
491+
492+ type: `boolean`
493+ default value: `true`
473494Possible values:
474- * `indent ` - Use default indentation that follows headlines/checkboxes/previous line indent
475- * `noindent ` - Disable indentation. All lines start from 1st column
495+ * `true ` - Disable `org_adapt_indentation` (#org_adapt_indentation) by default when `org_startup_indented` (#org_startup_indented) is enabled.
496+ * `false ` - Do not disable `org_adapt_indentation` (#org_adapt_indentation) by default when `org_startup_indented` (#org_startup_indented) is enabled.
476497
477498ORG_SRC_WINDOW_SETUP *orgmode-org_src_window_setup*
478499
@@ -2006,6 +2027,11 @@ CHANGELOG *orgmode-changelo
20062027
20072028To track breaking changes, subscribe to Notice of breaking changes (https://github.com/nvim-orgmode/orgmode/issues/217) issue where those are announced.
20082029
2030+ 21 JANUARY 2024 *orgmode-21_january_2024*
2031+
2032+ * Option `org_indent_mode` was deprecated in favor of org_startup_indented (#org_startup_indented). To remove the
2033+ warning use `org_startup_indented`. This was introduced to support Virtual Indent more in line with Emacs.
2034+
2009203524 OCTOBER 2021 *orgmode-24_october_2021*
20102036
20112037* Help mapping was changed from `?` to `g?` to avoid conflict with built in backward search. See issue #106 (https://github.com/nvim-orgmode/orgmode/issues/106).
0 commit comments