@@ -59,36 +59,36 @@ module.load = function()
59
59
end
60
60
61
61
module .config .public = {
62
- -- close the Table of Contents after an entry in the table is picked
62
+ -- Close the Table of Contents after an entry in the table is picked
63
63
close_after_use = false ,
64
64
65
- -- width of the Table of Contents window will automatically fit its longest line, up to
65
+ -- Width of the Table of Contents window will automatically fit its longest line, up to
66
66
-- `max_width`
67
67
fit_width = true ,
68
68
69
- -- max width of the ToC window when `fit_width = true` (in columns)
69
+ -- Max width of the ToC window when `fit_width = true` (in columns)
70
70
max_width = 30 ,
71
71
72
- -- when set, the ToC window will always be this many cols wide.
72
+ -- When set, the ToC window will always be this many cols wide.
73
73
-- will override `fit_width` and ignore `max_width`
74
74
fixed_width = nil ,
75
75
76
- -- enable `cursorline` in the ToC window, and sync the cursor position between ToC and content
76
+ -- Enable `cursorline` in the ToC window, and sync the cursor position between ToC and content
77
77
-- window
78
78
sync_cursorline = true ,
79
79
80
80
-- Enter a ToC window opened manually (any ToC window not opened by auto_toc)
81
81
enter = true ,
82
82
83
- -- options for automatically opening/entering the ToC window
83
+ -- Options for automatically opening/entering the ToC window
84
84
auto_toc = {
85
- -- automatically open a ToC window when entering any `norg` buffer
85
+ -- Automatically open a ToC window when entering any `norg` buffer
86
86
open = false ,
87
- -- enter an automatically opened ToC window
87
+ -- Enter an automatically opened ToC window
88
88
enter = false ,
89
- -- automatically close the ToC window when there is no longer an open norg buffer
89
+ -- Automatically close the ToC window when there is no longer an open norg buffer
90
90
close = true ,
91
- -- will exit nvim if the ToC is the last buffer on the screen, similar to help windows
91
+ -- Will exit nvim if the ToC is the last buffer on the screen, similar to help windows
92
92
exit_nvim = true ,
93
93
},
94
94
}
0 commit comments