You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is considered a breaking change commit because it adds a new time
grid option to the agenda view, which was not there before.
It is set to `true` by default to align with how Emacs Orgmode works out
of the box.
To disable the time grid, set `org_agenda_use_time_grid = false` in your
orgmode config.
Settings for the time grid visible in agenda. To disable showing the time grid altogether, set [[#org_agenda_use_time_grid][org_agenda_use_time_grid]] to =false=.
806
+
807
+
- =type=: List of options where all have to apply to show the grid
808
+
- =daily= - Show grid in daily agenda (1 day view)
809
+
- =weekly= - Show grid in any agenda type
810
+
- =today= - Show grid only for today
811
+
- =require-timed= - Show grid only if day has any entries with time specification
812
+
- =remove-match= - Hide grid entries that overlap with the existing time slot taken by an agenda item
813
+
- =times=: List of times (in 24h format) to show on the grid. It should be integer value, example =1030= represents =10:30=
814
+
- =time_separator=: Value that is showed after the grid time as a separator
815
+
- =time_label=: Value that is showed after the =time_separator= to fill in the place that is usually for the agenda item title
816
+
817
+
To customize the label for the current time, check [[#org_agenda_current_time_string][org_agenda_current_time_string]]
818
+
819
+
*** org_agenda_use_time_grid
820
+
:PROPERTIES:
821
+
:CUSTOM_ID: org_agenda_use_time_grid
822
+
:END:
823
+
- Type: =boolean=
824
+
- Default: =true=
825
+
Show time grid in agenda. See [[#org_agenda_time_grid][org_agenda_time_grid]] for configuration options.
826
+
827
+
*** org_agenda_current_time_string
828
+
:PROPERTIES:
829
+
:CUSTOM_ID: org_agenda_current_time_string
830
+
:END:
831
+
- Type: =string=
832
+
- Default: =<- now -----------------------------------------------=
833
+
Label value for the current time in the agenda time grid.
834
+
See [[#org_agenda_time_grid][org_agenda_time_grid]] for time grid configuration or [[#org_agenda_use_time_grid][org_agenda_use_time_grid]] to disable the grid.
835
+
836
+
790
837
*** org_capture_templates
791
838
:PROPERTIES:
792
839
:CUSTOM_ID: org_capture_templates
@@ -2872,6 +2919,7 @@ The following highlight groups are used:
2872
2919
- [email protected]=: A item deadline in the agenda view - Parsed from =Error= (see note below)
2873
2920
- [email protected]=: A scheduled item in the agenda view - Parsed from =DiffAdd= (see note below)
2874
2921
- [email protected]_past=: A item past its scheduled date in the agenda view - Parsed from =WarningMsg= (see note below)
2922
+
- [email protected]_grid=: Time grid line - Parsed from =WarningMsg= (see note below)
2875
2923
- [email protected]=: Highlight for all days in Agenda view - linked to =Statement=
---@fieldorg_agenda_block_separator? string Separator for blocks in the agenda view. Default: '-'
212
218
---@fieldorg_agenda_sorting_strategy? table<'agenda' | 'todo' | 'tags', OrgAgendaSortingStrategy[]> Sorting strategy for the agenda view. See docs for default value
213
219
---@fieldorg_agenda_remove_tags? boolean If true, tags will be removed from the all agenda views. Default: false
220
+
---@fieldorg_agenda_use_time_grid? boolean If true, Render time grid in agenda as set by org_agenda_time_grid. Default: true
---@fieldorg_agenda_current_time_string? string String to indicate current time on the time grid. Default: '<- now -----------------------------------------------'
214
223
---@fieldorg_priority_highest? string | number Highest priority level. Default: 'A'
215
224
---@fieldorg_priority_default? string | number Default priority level. Default: 'B'
216
225
---@fieldorg_priority_lowest? string | number Lowest priority level. Default: 'C'
0 commit comments