Skip to content

Commit 53e0404

Browse files
Refactor (#665)
* refactor!: Rewrite file management to use tree-sitter * feat!: Deprecate org_mappings.handle_return in favor of org_mappings.meta_return If you did not use this mapping directly everything is ok. This is just for users that mapped it directly * feat: Add org_return_uses_meta_return option * fix: Allow modifications of plan date range end date * fix: Properly show plan date ranges in agenda * feat(api): Add get_closest_headline and refile to api * fix: Update minimal init to work with Windows * tests: Add tests for file and fix edge case with set text * fix(cron): Instantiate orgmode before running cron * refactor: Stars highlighter * refactor: Todo faces highlighter * refactor: Markup highlighter * fix: Do not rely on node:has_changes() * feat: make VirtualIndent dynamically attach/detach based on `vim.b.org_indent_mode` (#658) * feat: make VirtualIndent react to changes in `vim.b.org_indent_mode` * test: add test to validate VirtualIndent dynamic attach functionality * docs: update docs to reflect dynamic virtual indent attach * refactor: make VirtualIndent `start_watch_org_indent` idempotent This ensures we can call `start_watch_org_indent` as much as we want without starting a bunch of timers in the background. This enforces the use of `start_watch_org_indent` and `stop_watch_org_indent` for managing the timer. * feat: add dict_watcher utility * refactor: use `dict_watcher` to monitor `vim.b.org_indent_mode` * ci: Run tests when creating PR to nightly * chore: Reformat files * refactor: remove sync call to set indent for virtual indents (#663) On the current version of nightly (at the time of writing this is NVIM v0.10.0-dev-2361+ga376d979b) the synchronous call doesn't seem to have any value. Using only a scheduled call is seemingly smooth now -- perhaps when I made the original commit I had something wrong with my configuration or perhaps upstream Neovim fixed whatever was causing some choppiness? Another note is that `on_lines` in `nvim_buf_attach` can have `textlock` restrictions and more applied, thus we really should just use `vim.schedule` only anyhow. * feat: add `org-indent-mode-turns-on-hiding-stars` equivalent (#659) * feat: add equivalent of `org-indent-mode-turns-on-hiding-stars` * docs: add documentation for `org_indent_mode_turns_on_hiding_stars` * docs: add reference to `org_indent_mode` for hiding stars Co-authored-by: Kristijan Husak <[email protected]> * fix: ensure hl group for hiding stars is applied See #659 (review) Co-authored-by: Kristijan Husak <[email protected]> --------- Co-authored-by: Kristijan Husak <[email protected]> * fix: Hide leading stars on foldtext * ci: Run tests only on nightly * fix: run Org init as part of setup (#664) This ensures that notifications do not error on startup. Prior to this commit the `OrgFiles` object wasn't loaded in time for notifications to work. * fix: Statusline function for clock * ci: Remove nightly branch from CI triggers --------- Co-authored-by: Price Hiller <[email protected]>
1 parent ab045e3 commit 53e0404

File tree

127 files changed

+6036
-5568
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+6036
-5568
lines changed

.github/workflows/tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
version:
30-
- v0.9.2
31-
- v0.9.4
32-
- v0.9.5
3330
- nightly
3431
runs-on: ubuntu-latest
3532
steps:

DOCS.md

+46-3
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,15 @@ Ensure your `:h conceallevel` is set properly in order for this to function.
237237
*type*: `string`<br />
238238
*default value*: `...`<br />
239239
Marker used to indicate a folded headline.
240+
Not applicable with new empty `foldtext` options in Neovim
240241

241242
#### **org_log_done**
242-
*type*: `string|nil`<br />
243+
*type*: `string|false`<br />
243244
*default value*: `time`<br />
244245
Possible values:
245246
* `time` - adds `CLOSED` date when marking headline as done
246247
* `note` - adds `CLOSED` date as above, and prompts for closing note via capture window. Confirm note with `org_note_finalize` (Default `<C-c>`), or ignore providing note via `org_note_kill` (Default `<Leader>ok`)
247-
* `nil|false` - Disable any logging
248+
* `false` - Disable any logging
248249

249250
#### **org_log_into_drawer**
250251
*type*: `string|nil`<br />
@@ -273,6 +274,10 @@ Possible values:
273274
* `true` - Uses *Virtual* indents to align content visually. The indents are only visual, they are not saved to the file.
274275
* `false` - Do not add any *Virtual* indentation.
275276

277+
You can toggle Virtual indents on the fly by setting `vim.b.org_indent_mode` to either `true` or `false` when in a org
278+
buffer. For example, if virtual indents were enabled in the current buffer then you could disable them immediately by
279+
setting `vim.b.org_indent_mode = false`.
280+
276281
This feature has no effect when enabled on Neovim versions < 0.10.0
277282

278283
#### **org_adapt_indentation**
@@ -291,6 +296,14 @@ Possible values:
291296
* `true` - Disable [`org_adapt_indentation`](#org_adapt_indentation) by default when [`org_startup_indented`](#org_startup_indented) is enabled.
292297
* `false` - Do not disable [`org_adapt_indentation`](#org_adapt_indentation) by default when [`org_startup_indented`](#org_startup_indented) is enabled.
293298

299+
#### **org_indent_mode_turns_on_hiding_stars**
300+
301+
*type*: `boolean`<br />
302+
*default value*: `true`<br />
303+
Possible values:
304+
* `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`).
305+
* `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`).
306+
294307
#### **org_src_window_setup**
295308
*type*: `string|function`<br />
296309
*default value*: "top 16new"<br />
@@ -668,7 +681,37 @@ require('orgmode').setup({
668681

669682
You can find the configuration file that holds all default mappings [here](./lua/orgmode/config/mappings/init.lua)
670683

671-
**NOTE**: All mappings are normal mode mappings (`nnoremap`)
684+
**NOTE**: All mappings are normal mode mappings (`nnoremap`) with exception of `org_return`
685+
686+
### Use Enter in insert mode to add list items/checkboxes/todos
687+
By default, adding list items/checkboxes/todos is done with [org_meta_return](#org_meta_return) which is a normal mode mapping.
688+
If you want to have an insert mode mapping there are two options:
689+
690+
1. If your terminal supports it, map a key like `Shift + Enter` to the meta return mapping (Recommended):
691+
```lua
692+
vim.api.nvim_create_autocmd('FileType', {
693+
pattern = 'org',
694+
callback = function()
695+
vim.keymap.set('i', '<S-CR>', '<cmd>lua require("orgmode").action("org_mappings.meta_return")<CR>', {
696+
silent = true,
697+
buffer = true,
698+
})
699+
end,
700+
})
701+
```
702+
2. If you want to use only enter, enable `org_return_uses_meta_return` option:
703+
```lua
704+
require('orgmode').setup({
705+
org_agenda_files = {'~/Dropbox/org/*', '~/my-orgs/**/*'},
706+
org_default_notes_file = '~/Dropbox/org/refile.org',
707+
mappings = {
708+
org_return_uses_meta_return = true
709+
}
710+
})
711+
```
712+
This will trigger `org_meta_return` if there is no content after the cursor position (either at the end of line or has just trailing spaces).
713+
Just note that this option always tries to use `meta_return`, which also adds new headlines
714+
automatically if you are on the headline line, which can give undesired results.
672715

673716
### Global mappings
674717

ftplugin/org.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ config:setup_foldlevel()
1313
if config.org_startup_indented then
1414
vim.b.org_indent_mode = true
1515
end
16-
require("orgmode.org.indent").setup()
16+
require('orgmode.org.indent').setup()
1717

18+
vim.b.org_bufnr = vim.api.nvim_get_current_buf()
1819
vim.bo.modeline = false
1920
vim.opt_local.fillchars:append('fold: ')
2021
vim.opt_local.foldmethod = 'expr'

lua/orgmode/agenda/agenda_item.lua

+23-13
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ local function add_padding(datetime)
99
return datetime .. string.rep('.', 11 - datetime:len()) .. ' '
1010
end
1111

12-
---@class AgendaItem
13-
---@field date Date
14-
---@field headline_date Date
15-
---@field real_date Date
16-
---@field headline Section
12+
---@class OrgAgendaItem
13+
---@field date OrgDate
14+
---@field headline_date OrgDate
15+
---@field real_date OrgDate
16+
---@field headline OrgHeadline
1717
---@field is_valid boolean
1818
---@field is_today boolean
1919
---@field is_same_day boolean
@@ -23,10 +23,10 @@ end
2323
---@field highlights table[]
2424
local AgendaItem = {}
2525

26-
---@param headline_date Date single date in a headline
27-
---@param headline Section
28-
---@param date Date date for which item should be rendered
29-
---@param index number
26+
---@param headline_date OrgDate single date in a headline
27+
---@param headline OrgHeadline
28+
---@param date OrgDate date for which item should be rendered
29+
---@param index? number
3030
function AgendaItem:new(headline_date, headline, date, index)
3131
local opts = {}
3232
opts.headline_date = headline_date
@@ -97,6 +97,9 @@ function AgendaItem:_is_valid_for_today()
9797
if self.headline:is_done() and config.org_agenda_skip_deadline_if_done then
9898
return false
9999
end
100+
if self.headline_date.is_date_range_end then
101+
return false
102+
end
100103
if self.is_same_day then
101104
return true
102105
end
@@ -142,6 +145,12 @@ function AgendaItem:_is_valid_for_date()
142145
end
143146
end
144147

148+
if
149+
(self.headline_date:is_deadline() or self.headline_date:is_scheduled()) and self.headline_date.is_date_range_end
150+
then
151+
return false
152+
end
153+
145154
if not self.headline_date:is_scheduled() or not self.headline_date:get_negative_adjustment() then
146155
return self.is_same_day or self.is_in_date_range
147156
end
@@ -188,7 +197,7 @@ function AgendaItem:_generate_label()
188197
end
189198

190199
---@private
191-
---@param date Date
200+
---@param date OrgDate
192201
function AgendaItem:_format_time(date)
193202
local formatted_time = date:format_time()
194203

@@ -238,14 +247,15 @@ function AgendaItem:_generate_highlight()
238247
end
239248

240249
function AgendaItem:_add_keyword_highlight()
241-
if self.headline.todo_keyword.value == '' then
250+
local todo_keyword, _, type = self.headline:get_todo()
251+
if not todo_keyword then
242252
return
243253
end
244-
local hlgroup = hl_map[self.headline.todo_keyword.value] or hl_map[self.headline.todo_keyword.type]
254+
local hlgroup = hl_map[todo_keyword] or hl_map[type]
245255
if hlgroup then
246256
table.insert(self.highlights, {
247257
hlgroup = hlgroup,
248-
todo_keyword = self.headline.todo_keyword.value,
258+
todo_keyword = todo_keyword,
249259
})
250260
end
251261
end

lua/orgmode/agenda/filter.lua

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local utils = require('orgmode.utils')
2-
---@class AgendaFilter
2+
---@class OrgAgendaFilter
33
---@field value string
44
---@field available_tags table<string, boolean>
55
---@field available_categories table<string, boolean>
@@ -33,7 +33,7 @@ function AgendaFilter:should_filter()
3333
return vim.trim(self.value) ~= ''
3434
end
3535

36-
---@param headline Section
36+
---@param headline OrgHeadline
3737
---@return boolean
3838
function AgendaFilter:matches(headline)
3939
if not self:should_filter() then
@@ -44,7 +44,7 @@ function AgendaFilter:matches(headline)
4444

4545
if not term_match then
4646
local rgx = vim.regex(self.term)
47-
term_match = rgx:match_str(headline.title)
47+
term_match = rgx:match_str(headline:get_title())
4848
end
4949

5050
if tag_cat_match_empty then
@@ -62,7 +62,7 @@ function AgendaFilter:matches(headline)
6262
return tag_cat_match and term_match
6363
end
6464

65-
---@param headline Section
65+
---@param headline OrgHeadline
6666
---@private
6767
function AgendaFilter:_matches_exclude(headline)
6868
for _, tag in ipairs(self.tags) do
@@ -80,7 +80,7 @@ function AgendaFilter:_matches_exclude(headline)
8080
return true
8181
end
8282

83-
---@param headline Section
83+
---@param headline OrgHeadline
8484
---@private
8585
function AgendaFilter:_matches_include(headline)
8686
local tags_to_check = {}
@@ -175,8 +175,8 @@ function AgendaFilter:parse_tags_and_categories(content)
175175
local categories = {}
176176
for _, item in ipairs(content) do
177177
if item.jumpable and item.headline then
178-
categories[item.headline.category:lower()] = true
179-
for _, tag in ipairs(item.headline.tags) do
178+
categories[item.headline:get_category():lower()] = true
179+
for _, tag in ipairs(item.headline:get_tags()) do
180180
tags[tag:lower()] = true
181181
end
182182
end

0 commit comments

Comments
 (0)