Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add org-indent-mode-turns-on-hiding-stars equivalent #659

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,14 @@ Possible values:
* `true` - Disable [`org_adapt_indentation`](#org_adapt_indentation) by default when [`org_startup_indented`](#org_startup_indented) is enabled.
* `false` - Do not disable [`org_adapt_indentation`](#org_adapt_indentation) by default when [`org_startup_indented`](#org_startup_indented) is enabled.

#### **org_indent_mode_turns_on_hiding_stars**

*type*: `boolean`<br />
*default value*: `true`<br />
Possible values:
* `true` - Enable [`org_hide_leading_stars`](#org_hide_leading_stars) by default when [`org_indent_mode`](#org_startup_indented) is enabled for buffer (`vim.b.org_indent_mode = true`).
* `false` - Do not modify the value in [`org_hide_leading_stars`](#org_hide_leading_stars) by default when [`.org_indent_mode`](#org_startup_indented) is enabled for buffer (`vim.b.org_indent_mode = true`).

#### **org_src_window_setup**
*type*: `string|function`<br />
*default value*: "top 16new"<br />
Expand Down
14 changes: 13 additions & 1 deletion lua/orgmode/colors/highlighter/stars.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,20 @@ function OrgStars:new(opts)
return data
end

function OrgStars:_is_enabled(bufnr)
if config.org_hide_leading_stars then
return true
end

if vim.b[bufnr].org_indent_mode and config.org_indent_mode_turns_on_hiding_stars then
return true
end

return false
end

function OrgStars:on_line(bufnr, line)
if not config.org_hide_leading_stars then
if not self:_is_enabled(bufnr) then
return
end

Expand Down
10 changes: 4 additions & 6 deletions lua/orgmode/colors/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,11 @@ function M.define_org_headline_colors(faces)
for _, face in pairs(faces) do
table.insert(contains, face)
end
if config.org_hide_leading_stars then
if not ts_highlights_enabled then
vim.cmd([[syn match OrgHideLeadingStars /^\*\{2,\}/me=e-1 contained]])
end
vim.cmd([[hi default OrgHideLeadingStars ctermfg=0 guifg=bg]])
table.insert(contains, 'OrgHideLeadingStars')
if not ts_highlights_enabled then
vim.cmd([[syn match OrgHideLeadingStars /^\*\{2,\}/me=e-1 contained]])
end
vim.cmd([[hi default OrgHideLeadingStars ctermfg=0 guifg=bg]])
table.insert(contains, 'OrgHideLeadingStars')
for i, color in ipairs(headline_colors) do
local j = i
while j < 40 do
Expand Down
1 change: 1 addition & 0 deletions lua/orgmode/config/defaults.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ local DefaultConfig = {
org_adapt_indentation = true,
org_startup_indented = false,
org_indent_mode_turns_off_org_adapt_indentation = true,
org_indent_mode_turns_on_hiding_stars = true,
org_time_stamp_rounding_minutes = 5,
org_blank_before_new_entry = {
heading = true,
Expand Down