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
<li><ahref="#orgd216bfc">Sort items when opening org file, on edit??</a></li>
23
-
<li><ahref="#orgf087718">CANCELLED do not use org-sort, because it does not allow to combine sorts (i.e. sort by one criteria, if equal - by other)</a></li>
24
-
<li><ahref="#org56a3d4b">allow to define sort criteria like a lisp function in the properties field</a></li>
25
-
<li><ahref="#org68320c2">Do not sort only but filter items in org files/agenda</a></li>
26
-
<li><ahref="#orgbcbaafa">CANCELLED Take care about exact position for <code>C-c C-c</code> (say, we are inside the table - user may not want to sort)</a></li>
27
-
<li><ahref="#org13830c4">Sort only items, matching org search regex</a></li>
28
-
<li><ahref="#orge7d8182">Handle nothing to sort</a></li>
29
-
<li><ahref="#orgb7e3fbb">make interactive versions of sorting functions</a></li>
30
-
<li><ahref="#orgc594c45">autosort - do not sort but show agenda</a></li>
31
-
<li><ahref="#org7fbf2a5">add hooks to to autosort</a></li>
32
-
<li><ahref="#org6b02e76">auto add hooks according to the sort type - should be able to define hooks for every sort type</a></li>
33
-
<li><ahref="#orgff1dff2">get rid of annoying unfolding after <code>org-sort</code></a></li>
34
-
<li><ahref="#org695d22c">put buffer name in error report for wrong element of sorting strategy</a></li>
35
-
<li><ahref="#org573e2d9">should be able to define alias in sorting strategy</a></li>
36
-
<li><ahref="#org5a960e4">NEXT rewrite sorting strategy to use assoc lists</a></li>
37
-
<li><ahref="#org93a6fdc">use local hook in autosort for toggle hooks</a></li>
38
-
<li><ahref="#org9d13fc4">add this functionality? Sorting Org Mode lists using a sequence of regular expressions 13</a></li>
39
-
<li><ahref="#org375ee06">do not raise error but put a message and do not sort on wrong :SORTING: format</a></li>
22
+
<li><ahref="#org25a0fad">Sort items when opening org file, on edit??</a></li>
23
+
<li><ahref="#orged315c3">do not use org-sort, because it does not allow to combine sorts (i.e. sort by one criteria, if equal - by other)</a></li>
24
+
<li><ahref="#orgd8d9485">allow to define sort criteria like a lisp function in the properties field</a></li>
25
+
<li><ahref="#org149b11c">Do not sort only but filter items in org files/agenda</a></li>
26
+
<li><ahref="#org6ee0773">Take care about exact position for <code>C-c C-c</code> (say, we are inside the table - user may not want to sort)</a></li>
27
+
<li><ahref="#org7963246">Sort only items, matching org search regex</a></li>
28
+
<li><ahref="#org4cfe334">Handle nothing to sort</a></li>
29
+
<li><ahref="#org34b8873">make interactive versions of sorting functions</a></li>
30
+
<li><ahref="#org7a7842c">autosort - do not sort but show agenda</a></li>
31
+
<li><ahref="#org739c797">add hooks to to autosort</a></li>
32
+
<li><ahref="#org6c0c82d">auto add hooks according to the sort type - should be able to define hooks for every sort type</a></li>
33
+
<li><ahref="#org511b060">get rid of annoying unfolding after <code>org-sort</code></a></li>
34
+
<li><ahref="#org3963992">put buffer name in error report for wrong element of sorting strategy</a></li>
35
+
<li><ahref="#orga8644e5">should be able to define alias in sorting strategy</a></li>
36
+
<li><ahref="#org47d3284">rewrite sorting strategy to use assoc lists</a></li>
37
+
<li><ahref="#org2afbd84">use local hook in autosort for toggle hooks</a></li>
38
+
<li><ahref="#org4af49fe">add this functionality? Sorting Org Mode lists using a sequence of regular expressions 13</a></li>
39
+
<li><ahref="#orgbb247a6">do not raise error but put a message and do not sort on wrong :SORTING: format</a></li>
40
40
</ul>
41
41
</li>
42
42
</ul>
@@ -46,12 +46,12 @@
46
46
</div>
47
47
48
48
49
-
<aid="orgfde0f2f"></a>
49
+
<aid="orgfa26d24"></a>
50
50
51
-
# NEXT Automatic sorting of items in org mode
51
+
# Automatic sorting of items in org mode
52
52
53
53
54
-
<aid="org9d49615"></a>
54
+
<aid="orgab593c6"></a>
55
55
56
56
## Motivation
57
57
@@ -67,19 +67,19 @@ wish to do one day, or list of ideas). It is not comfortable to scroll
67
67
across such kind of list to look for specific item. Sorting is
68
68
something, that can help here.
69
69
70
-
- Add some example here
70
+
<divclass="inlinetask">
71
+
<b>Add some example here</b><br />
72
+
nil</div>
71
73
72
-
- END
74
+
Of course, you can still use `org-sort` or agenda view with restriction
75
+
to the current subtree, but it may be disrupting if you want to look
76
+
through multiple of such a lists.
73
77
74
-
Of course, you can still use `org-sort` or agenda view with restriction
75
-
to the current subtree, but it may be disrupting if you want to look
76
-
through multiple of such a lists.
77
-
78
-
The solution is to implement automatic sorting of subtrees in org
79
-
files.
78
+
The solution is to implement automatic sorting of subtrees in org
79
+
files.
80
80
81
81
82
-
<aid="org1f183b3"></a>
82
+
<aid="orgb3c9acd"></a>
83
83
84
84
## Overview
85
85
@@ -95,16 +95,16 @@ subtree). Global sorting order can be set via
95
95
`org-autosort-global-sorting-strategy` variable.
96
96
97
97
98
-
<aid="orgf01a38b"></a>
98
+
<aid="org4703e0d"></a>
99
99
100
100
## Configuration
101
101
102
102
Both `:SORT:` property and `org-autosort-global-sorting-strategy`
103
103
are lists, which determine how to sort the entries.
104
104
105
-
<aid="org0d668fc"></a>
105
+
<aid="orga79d54d"></a>
106
106
`org-autosort-global-sorting-strategy` defined how to sort entries by
107
-
default. It is a list of [sorting rules](#org10b3b9d), defining the comparison
107
+
default. It is a list of [sorting rules](#org35fb973), defining the comparison
108
108
between sorted entries. First, the entries are sorted via first rule
109
109
from the list. If the calculated keys are equal, second rule is used,
110
110
and so on.
@@ -123,14 +123,14 @@ The sorting can be done after:
123
123
-`org-autosort-sort-entries-at-point` command
124
124
-`org-autosort-sort-entries-in-file` command
125
125
126
-
(see [sorting triggers](#org31dc7e8) for details)
126
+
(see [sorting triggers](#orga6cfe20) for details)
127
127
128
128
129
-
<aid="orgc1ba713"></a>
129
+
<aid="org76c323b"></a>
130
130
131
131
## Defaults
132
132
133
-
The package provide some predefined sorting rules <aid="org10b3b9d"></a>,
133
+
The package provide some predefined sorting rules <aid="org35fb973"></a>,
@@ -547,97 +547,97 @@ Default [sorting strategy](#org0d668fc) is
547
547
;;; org-autosort.el ends here
548
548
549
549
550
-
<aid="orga9771e5"></a>
550
+
<aid="org53d0108"></a>
551
551
552
-
## NEXT Ideas
552
+
## Ideas
553
553
554
554
555
-
<aid="orgd216bfc"></a>
555
+
<aid="org25a0fad"></a>
556
556
557
557
### Sort items when opening org file, on edit??
558
558
559
559
560
-
<aid="orgf087718"></a>
560
+
<aid="orged315c3"></a>
561
561
562
-
### CANCELLED do not use org-sort, because it does not allow to combine sorts (i.e. sort by one criteria, if equal - by other)
562
+
### do not use org-sort, because it does not allow to combine sorts (i.e. sort by one criteria, if equal - by other)
563
563
564
564
565
-
<aid="org56a3d4b"></a>
565
+
<aid="orgd8d9485"></a>
566
566
567
567
### allow to define sort criteria like a lisp function in the properties field
568
568
569
569
570
-
<aid="org68320c2"></a>
570
+
<aid="org149b11c"></a>
571
571
572
572
### Do not sort only but filter items in org files/agenda
573
573
574
574
575
-
<aid="orgbcbaafa"></a>
575
+
<aid="org6ee0773"></a>
576
576
577
-
### CANCELLED Take care about exact position for `C-c C-c` (say, we are inside the table - user may not want to sort)
577
+
### Take care about exact position for `C-c C-c` (say, we are inside the table - user may not want to sort)
578
578
579
579
580
-
<aid="org13830c4"></a>
580
+
<aid="org7963246"></a>
581
581
582
582
### Sort only items, matching org search regex
583
583
584
584
585
-
<aid="orge7d8182"></a>
585
+
<aid="org4cfe334"></a>
586
586
587
587
### Handle nothing to sort
588
588
589
589
590
-
<aid="orgb7e3fbb"></a>
590
+
<aid="org34b8873"></a>
591
591
592
592
### make interactive versions of sorting functions
593
593
594
594
595
-
<aid="orgc594c45"></a>
595
+
<aid="org7a7842c"></a>
596
596
597
597
### autosort - do not sort but show agenda
598
598
599
599
600
-
<aid="org7fbf2a5"></a>
600
+
<aid="org739c797"></a>
601
601
602
602
### add hooks to to autosort
603
603
604
604
605
-
<aid="org6b02e76"></a>
605
+
<aid="org6c0c82d"></a>
606
606
607
607
### auto add hooks according to the sort type - should be able to define hooks for every sort type
608
608
609
609
610
-
<aid="orgff1dff2"></a>
610
+
<aid="org511b060"></a>
611
611
612
612
### get rid of annoying unfolding after `org-sort`
613
613
614
614
615
-
<aid="org695d22c"></a>
615
+
<aid="org3963992"></a>
616
616
617
617
### put buffer name in error report for wrong element of sorting strategy
618
618
619
619
620
-
<aid="org573e2d9"></a>
620
+
<aid="orga8644e5"></a>
621
621
622
622
### should be able to define alias in sorting strategy
623
623
624
624
625
-
<aid="org5a960e4"></a>
625
+
<aid="org47d3284"></a>
626
626
627
-
### NEXT rewrite sorting strategy to use assoc lists
627
+
### rewrite sorting strategy to use assoc lists
628
628
629
629
630
-
<aid="org93a6fdc"></a>
630
+
<aid="org2afbd84"></a>
631
631
632
632
### use local hook in autosort for toggle hooks
633
633
634
634
635
-
<aid="org9d13fc4"></a>
635
+
<aid="org4af49fe"></a>
636
636
637
637
### add this functionality? [Sorting Org Mode lists using a sequence of regular expressions 13](http://sachachua.com/blog/2017/12/sorting-org-mode-lists-using-a-sequence-of-regular-expressions/)
638
638
639
639
640
-
<aid="org375ee06"></a>
640
+
<aid="orgbb247a6"></a>
641
641
642
642
### do not raise error but put a message and do not sort on wrong :SORTING: format
0 commit comments