1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
|
;;; orgalist.el --- Manage Org-like lists in non-Org buffers -*- lexical-binding: t; -*-
;; Copyright (C) 2017-2020 Free Software Foundation, Inc.
;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
;; Maintainer: Nicolas Goaziou <mail@nicolasgoaziou.fr>
;; Keywords: convenience
;; Package-Requires: ((emacs "24.4"))
;; Version: 1.12
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This library provides Org mode's plain lists in non-Org buffers, as
;; a minor mode.
;; More specifically, it supports syntax for numbered, unnumbered,
;; description items, checkboxes, and counter cookies. Examples of
;; such constructs include:
;; - item 1
;; - item 2
;; - [ ] checbox sub-item
;; or
;; 1. item 1
;; 2. item 2
;; 1. sub-item 1
;; 8. [@8] sub-item 8
;; and
;; - term :: definition
;; - term 2 :: definition 2
;; To start a list, type "- <SPC>" or "1 . <SPC>", then write the
;; contents of the item. To create a new item, use M-<RET>. If it
;; should be a child of the previous item, use <TAB> (this is
;; a shortcut for M-<RIGHT> and M-<LEFT> only on empty items), or
;; M-<RIGHT>.
;; For example, "- <SPC> i t e m M-<RET> <TAB> c h i l d" produces:
;; - item
;; - child
;; See (info "(org) Plain Lists") and (info "(org) Checkboxes") for
;; more details about the syntax of such constructs.
;; The following features are supported:
;; - Item insertion (M-<RET>)
;; - Navigation (M-<UP>, M-<DOWN>)
;; - Indentation (M-<LEFT>, M-<RIGHT>, M-S-<LEFT>, M-S-<RIGHT>, <TAB>)
;; - Re-ordering (M-S-<UP>, M-S-<DOWN>)
;; - Toggling checkboxes (C-c C-c)
;; - Cycling bullets (C-c -)
;; - Sorting items (C-c ^)
;; The minor mode also supports filling and auto filling, when Auto
;; Fill mode is enabled.
;; Note that the bindings above are only available when point is in an
;; item (for M-<RET>, M-<UP>, M-<DOWN>) or exactly at an item.
;; The library also implements radio lists:
;; Call the `orgalist-insert-radio-list' function to insert a radio list
;; template in HTML, LaTeX, and Texinfo mode documents. Sending and
;; receiving radio lists works is the same as for radio tables (see
;; Org manual for details) except for these differences:
;; - Orgalist minor mode must be active;
;; - Use the "ORGLST" keyword instead of "ORGTBL";
;; - `M-x orgalist-send-list' works only on the first list item.
;; Built-in translator functions are: `org-list-to-latex',
;; `org-list-to-html' and `org-list-to-texinfo'. They use the
;; `org-list-to-generic' translator function. See its documentation for
;; parameters for accurate customizations of lists. Here is a LaTeX
;; example:
;; % BEGIN RECEIVE ORGLST to-buy
;; % END RECEIVE ORGLST to-buy
;; \begin{comment}
;;
;; #+ORGLST: SEND to-buy org-list-to-latex
;; - a new house
;; - a new computer
;; + a new keyboard
;; + a new mouse
;; - a new life
;; \end{comment}
;; `M-x orgalist-send-list' on "a new house" inserts the translated
;; LaTeX list in-between the "BEGIN RECEIVE" and "END RECEIVE" marker
;; lines.
;;; Code:
(require 'easymenu)
(require 'nadvice)
(require 'org)
(require 'org-macs)
(require 'org-list)
(defvar mail-header-separator)
(defvar message-signature-separator)
(defvar orgalist-mode)
;;; Configuration variables
(defgroup orgalist nil
"Manage plain lists in non-Org buffers."
:tag "Orgalist"
:group 'org)
(defcustom orgalist-context-function
'((message-mode . orgalist-message-mode-context))
"Alist between major modes and list context functions.
A list context function determines the boundaries of the buffer
that can contain an Org list. When no major mode is found, or the
context function returns nil, consider the whole buffer."
:group 'orgalist
:type '(repeat
(list (symbol :tag "Major mode")
(function :tag "Function"))))
(defcustom orgalist-ordered-checkboxes nil
"When non-nil, only tick checkboxes in order.
In this case, a checkbox can only be checked when every checkbox
before it is checked too."
:group 'orgalist
:type 'boolean
:safe #'booleanp)
(defcustom orgalist-separated-items 'auto
"When non-nil, insert an empty line before every new item.
When set to `auto', guess if an empty line is necessary according
to the other items in the list, or default to none if there is
not enough information."
:group 'orgalist
:type '(choice (cons :tag "None" nil)
(cons :tag "Always" t)
(cons :tag "Auto" auto))
:safe #'symbolp)
(defcustom orgalist-radio-list-templates
'((latex-mode "% BEGIN RECEIVE ORGLST %n
% END RECEIVE ORGLST %n
\\begin{comment}
#+ORGLST: SEND %n org-list-to-latex
-
\\end{comment}\n")
(texinfo-mode "@c BEGIN RECEIVE ORGLST %n
@c END RECEIVE ORGLST %n
@ignore
#+ORGLST: SEND %n org-list-to-texinfo
-
@end ignore\n")
(html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
<!-- END RECEIVE ORGLST %n -->
<!--
#+ORGLST: SEND %n org-list-to-html
-
-->\n"))
"Templates for radio lists in different major modes.
All occurrences of %n in a template will be replaced with the name of the
list, obtained by prompting the user."
:group 'orgalist
:type '(repeat
(list (symbol :tag "Major mode")
(string :tag "Format"))))
;;; Mode specific context functions
(defun orgalist-message-mode-context ()
"Return boundaries of message body if point is in body.
Otherwise, return nil."
(save-excursion
(cond ((re-search-backward message-signature-separator nil t)
;; After signature.
(cons (line-beginning-position 2) (point-max)))
((re-search-backward
(concat "^" (regexp-quote mail-header-separator) "\n") nil t)
(goto-char (match-end 0))
(cons (point)
(if (re-search-forward message-signature-separator nil t)
(match-beginning 0)
(point-max))))
((re-search-forward
(concat "^" (regexp-quote mail-header-separator) "\n") nil t)
;; In header.
nil)
(t nil))))
;;; Internal variables
(defvar orgalist--menu nil
"The Orgalist menu.")
(defconst orgalist--bullet-re
"\\(?:[-+]\\|\\(?:[0-9]+\\|[A-Za-z]\\)\\.\\)\\(?:[ \t]+\\|$\\)"
"Match an item bullet.")
(defconst orgalist--item-re
(concat (format "^[ \t]*\\(%s\\)" orgalist--bullet-re)
"\\(?:\\[@\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
"\\(?:\\(\\[[- xX]\\]\\)\\(?:[ \t]+\\|$\\)\\)?"
"\\(?:\\(.*\\)[ \t]+::\\(?:[ \t]+\\|$\\)\\)?")
"Match a list item and put everything into groups:
group 1: bullet
group 2: counter
group 3: checkbox
group 4: description tag")
(defvar-local orgalist--cycling-state nil
"Current cycling state when cycling indentation.")
;;; Internal functions
(defun orgalist--call-in-item (fun pos &rest arguments)
"Call function FUN with buffer narrowed to item starting at POS.
Call function with ARGUMENTS. Return the value FUN returns."
(let* ((struct (save-excursion (goto-char pos) (orgalist--struct)))
(next (org-list-get-item-end pos struct))
(fill-prefix
(make-string (+ (length (org-list-get-bullet pos struct))
(org-list-get-ind pos struct))
?\s)))
(save-restriction
(narrow-to-region pos next)
(apply fun arguments))))
(defun orgalist--boundaries ()
"Return buffer boundaries, as a cons cell, where lists are acceptable.
Return nil if Orgalist mode is not active."
(and orgalist-mode
(let ((f (cdr (assq major-mode orgalist-context-function))))
(or (and (functionp f) (funcall f))
(cons (point-min) (point-max))))))
(defun orgalist--at-item-p ()
"Non-nil if point is at an item."
(pcase (orgalist--boundaries)
(`(,min . ,max)
(and (<= min (point))
(>= max (point))
(org-match-line (concat "[ \t]*" orgalist--bullet-re))))))
(defun orgalist--in-item-p ()
"Return item beginning position when in a plain list, nil otherwise."
(let ((boundaries (orgalist--boundaries)))
(when boundaries
(save-excursion
(beginning-of-line)
(let ((lim-up (car (orgalist--boundaries)))
;; Indentation isn't meaningful when point starts at an
;; empty line .
(ind-ref (if (looking-at-p "^[ \t]*$") 10000
(current-indentation))))
(if (looking-at orgalist--item-re) (point)
;; Detect if cursor in the middle of blank lines after a list.
(let ((end-bounds nil))
(when (and (setq end-bounds (org-in-regexp "^[ \t]*\n[ \t]*\n" 2))
(>= (point) (car end-bounds))
(< (point) (cdr end-bounds)))
(goto-char (car end-bounds))
(forward-line -1)))
;; Look for an item, less indented that reference line.
(catch 'exit
(while t
(let ((ind (current-indentation)))
(cond
;; This is exactly what we want.
((and (looking-at orgalist--item-re) (< ind ind-ref))
(throw 'exit (point)))
;; At upper bound of search or looking at the end
;; of a previous list: search is over.
((<= (point) lim-up) (throw 'exit nil))
((looking-at "^[ \t]*\n[ \t]*\n") (throw 'exit nil))
;; Skip blank lines.
((looking-at "^[ \t]*$") (forward-line -1))
;; Text at column 0 cannot belong to a list: stop.
((= 0 ind) (throw 'exit nil))
;; Normal text less indented than reference line,
;; take it as new reference.
((< ind ind-ref)
(setq ind-ref ind)
(forward-line -1))
(t (forward-line -1))))))))))))
(defun orgalist--struct ()
"Return structure of list at point.
A list structure is an alist where key is point at item, and
values are:
1. indentation,
2. bullet with trailing white space,
3. bullet counter, if any,
4. checkbox, if any,
5. description tag, if any,
6. position at item end.
Thus the following list, where numbers in parens are
line beginning positions:
- [X] first item (1)
1. sub-item 1 (18)
5. [@5] sub-item 2 (34)
some other text belonging to first item (55)
- last item (97)
+ tag :: description (109)
(131)
gets the following structure:
((1 0 \"- \" nil \"[X]\" nil 97)
(18 2 \"1. \" nil nil nil 34)
(34 2 \"5. \" \"5\" nil nil 55)
(97 0 \"- \" nil nil nil 131)
(109 2 \"+ \" nil nil \"tag\" 131))
Assume point is at an item."
(save-excursion
(beginning-of-line)
(pcase-let* ((`(,lim-up . ,lim-down) (orgalist--boundaries))
(text-min-ind 10000)
(beg-cell (cons (point) (current-indentation)))
(itm-lst nil)
(itm-lst-2 nil)
(end-lst nil)
(end-lst-2 nil)
(struct nil)
(assoc-at-point
;; Return association at point.
(lambda (ind)
(looking-at orgalist--item-re)
(let ((bullet (match-string-no-properties 1)))
(list (point)
ind
bullet
(match-string-no-properties 2) ;counter
(match-string-no-properties 3) ;checkbox
;; Description tag.
(and (string-match-p "[-+*]" bullet)
(match-string-no-properties 4))))))
(end-before-blank
(lambda ()
;; Ensure list ends at the first blank line.
(skip-chars-backward " \r\t\n")
(min (line-beginning-position 2) lim-down))))
;; Read list from starting item to its beginning, and save top
;; item position and indentation in BEG-CELL. Also store ending
;; position of items in END-LST.
(save-excursion
(catch 'exit
(while t
(let ((ind (current-indentation)))
(cond
((<= (point) lim-up)
;; At upward limit: if we ended at an item, store it,
;; else dismiss useless data recorded above BEG-CELL.
;; Jump to part 2.
(throw 'exit
(setq itm-lst
(if (not (looking-at orgalist--item-re))
(memq (assq (car beg-cell) itm-lst) itm-lst)
(setq beg-cell (cons (point) ind))
(cons (funcall assoc-at-point ind) itm-lst)))))
;; Looking at a list ending regexp. Dismiss useless
;; data recorded above BEG-CELL. Jump to part 2.
((looking-at "^[ \t]*\n[ \t]*\n")
(throw 'exit
(setq itm-lst (memq (assq (car beg-cell) itm-lst)
itm-lst))))
;; Point is at an item. Add data to ITM-LST. It may
;; also end a previous item: save it in END-LST. If ind
;; is less or equal than BEG-CELL and there is no end
;; at this ind or lesser, this item becomes the new
;; BEG-CELL.
((looking-at orgalist--item-re)
(push (funcall assoc-at-point ind) itm-lst)
(push (cons ind (point)) end-lst)
(when (< ind text-min-ind) (setq beg-cell (cons (point) ind)))
(forward-line -1))
;; Skip blank lines.
((looking-at "^[ \t]*$")
(forward-line -1))
;; From there, point is not at an item. Interpret
;; line's indentation:
;; - text at column 0 is necessarily out of any list.
;; Dismiss data recorded above BEG-CELL. Jump to
;; part 2.
;; - any other case may be an ending position for an
;; hypothetical item above. Store it and proceed.
((= ind 0)
(throw 'exit
(setq itm-lst
(memq (assq (car beg-cell) itm-lst) itm-lst))))
(t
(when (< ind text-min-ind) (setq text-min-ind ind))
(push (cons ind (point)) end-lst)
(forward-line -1)))))))
;; Read list from starting point to its end, that is until we
;; get out of context, or that a non-item line is less or
;; equally indented than BEG-CELL's cdr. Also, store ending
;; position of items in END-LST-2.
(catch 'exit
(while t
(let ((ind (current-indentation)))
(cond
((>= (point) lim-down)
;; At downward limit: this is de facto the end of the
;; list. Save point as an ending position, and jump to
;; part 3.
(throw 'exit
(push (cons 0 (funcall end-before-blank)) end-lst-2)))
;; Looking at a list ending regexp. Save point as an
;; ending position and jump to part 3.
((looking-at org-list-end-re)
(throw 'exit (push (cons 0 (point)) end-lst-2)))
((looking-at orgalist--item-re)
;; Point is at an item. Add data to ITM-LST-2. It may
;; also end a previous item, so save it in END-LST-2.
(push (funcall assoc-at-point ind) itm-lst-2)
(push (cons ind (point)) end-lst-2)
(forward-line 1))
;; Skip blank lines along the way.
((looking-at "^[ \t]*$")
(forward-line 1))
;; Ind is lesser or equal than BEG-CELL's. The list is
;; over: store point as an ending position and jump to
;; part 3.
((<= ind (cdr beg-cell))
(throw 'exit
(push (cons 0 (funcall end-before-blank)) end-lst-2)))
;; Else, if ind is lesser or equal than previous item's,
;; this is an ending position: store it. In any case,
;; skip block or drawer at point, and move to next line.
(t
(when (<= ind (nth 1 (car itm-lst-2)))
(push (cons ind (point)) end-lst-2))
(forward-line 1))))))
(setq struct (nconc itm-lst (cdr (nreverse itm-lst-2))))
(setq end-lst (nconc end-lst (cdr (nreverse end-lst-2))))
;; Associate each item to its end position.
(dolist (item struct)
(pcase-let ((`(,pos ,ind . ,_) item))
;; Remove end candidates behind current item.
(while (<= (cdar end-lst) pos) (pop end-lst))
;; Add end position to item assoc.
(let ((old-end (nthcdr 6 item))
(new-end (assoc-default ind end-lst '<=)))
(if old-end
(setcar old-end new-end)
(setcdr item (append (cdr item) (list new-end)))))))
;; Return STRUCT.
struct)))
(defun orgalist--goto-following-item (previous?)
"Move point to next item in current list.
When PREVIOUS? is non-nil, move it to the previous item instead.
Throw an error if the move is not possible."
(let* ((struct (orgalist--struct))
(prevs (org-list-prevs-alist struct))
(next (funcall (if previous? #'org-list-get-prev-item
#'org-list-get-next-item)
(line-beginning-position) struct prevs)))
(unless next
(error (if previous? "On first item" "On last item")))
(goto-char next)))
(defun orgalist--move-item (up?)
"Move item at point down.
When UP? is non-nil, move it up instead. Throw an error if the
move is not possible."
(let* ((col (current-column))
(item (line-beginning-position))
(struct (orgalist--struct))
(next-item (funcall (if up? #'org-list-get-prev-item
#'org-list-get-next-item)
item struct (org-list-prevs-alist struct))))
(unless next-item
(user-error (if up? "Cannot move this item further up"
"Cannot move this item further down")))
(setq struct
(org-list-swap-items (if up? next-item item)
(if up? item next-item)
struct))
(unless up?
(let ((prevs (org-list-prevs-alist struct)))
(goto-char (org-list-get-next-item item struct prevs))))
(org-list-write-struct struct (org-list-parents-alist struct))
(move-to-column col)))
(defun orgalist--auto-fill (fill-function)
"Auto fill function.
FILL-FUNCTION is the regular function used to perform auto-fill.
Return nil outside of a list or in a blank line. This function
is meant to be used as a piece of advice on both
`auto-fill-function' and `normal-auto-fill-function'."
(unless (org-match-line "^[ \t]*$")
(let ((fc (current-fill-column)))
(when (and fc (<= fc (current-column)))
(let ((item? (orgalist--in-item-p)))
(if item? (orgalist--call-in-item fill-function item?)
(funcall fill-function)))))))
(defun orgalist--fill-item (fill-function justify)
"Fill item as a paragraph.
FILL-FUNCTION is the regular function used for filling
paragraphs, or nil. If JUSTIFY is non-nil, justify as well.
Return nil outside of a list. This function is meant to be used
as a piece of advice on `fill-paragraph-function'."
(pcase (orgalist--in-item-p)
(`nil
;; When `fill-paragraph-function' is nil in the current major
;; mode (e.g.,in Text mode), the advice makes it look like
;; a function anyway. As a consequence, calling it results in an
;; error. Catch that error and call plain `fill-paragraph'
;; instead.
(condition-case nil
(funcall fill-function justify)
(void-function (fill-paragraph justify))))
(item
(orgalist--call-in-item #'fill-paragraph item justify))))
(defun orgalist--indent-line ()
"Indent current line in an item.
This function is meant to be used as a piece of advice on
`indent-line-function'."
(cond
;; At an item, try to cycle indentation if it is empty or prevent
;; any indentation.
((orgalist--at-item-p) t)
;; Within an item, indent according to the current bullet.
((let ((item? (orgalist--in-item-p)))
(and item?
(let ((column (save-excursion
(goto-char item?)
(looking-at orgalist--item-re)
(goto-char (match-end 1))
(skip-chars-backward " \t")
(1+ (current-column)))))
(if (<= (current-column) (current-indentation))
(indent-line-to column)
(save-excursion (indent-line-to column)))
t))))
;; Right after a list, indent like the first item in the list.
((let ((struct? (save-excursion
(and (= 0 (forward-line -1))
(looking-at-p "[ \t]*$")
(progn
(skip-chars-backward " \r\t\n")
(let ((item? (orgalist--in-item-p)))
(and item?
(goto-char item?)
(orgalist--struct))))))))
(and struct?
(let ((column (save-excursion
(goto-char (org-list-get-top-point struct?))
(current-indentation))))
(if (<= (current-column) (current-indentation))
(indent-line-to column)
(save-excursion (indent-line-to column)))
t))))
(t nil)))
(defun orgalist--fill-forward-wrapper (fill-forward-function &rest args)
"Fill forward paragraph wrapper.
FILL-FORWARD-FUNCTION is the regular function used to move over
paragraphs by the filling code.
This function is meant to be used as a piece of advice on
`fill-forward-paragraph-function'."
(if (save-excursion
(and (re-search-forward orgalist--bullet-re nil t)
(pcase (orgalist--boundaries)
(`(,min . ,max)
(and (<= min (point))
(>= max (point)))))))
(let ((paragraph-start
(concat "[ \t]*" orgalist--bullet-re "\\|" paragraph-start)))
(apply fill-forward-function args))
(apply fill-forward-function args)))
(defun orgalist--cycle-indentation ()
"Cycle levels of indentation of an empty item.
The first run indents the item, if applicable. Subsequent runs
outdent it at meaningful levels in the list.
The function assumes point is at an empty item."
(interactive)
(let* ((struct (orgalist--struct))
(ind (org-list-get-ind (line-beginning-position) struct))
(bullet (org-trim (buffer-substring (line-beginning-position)
(line-end-position)))))
(setq this-command 'orgalist--cycle-indentation)
;; When in the middle of the cycle, try to outdent first. If it
;; fails, and point is still at initial position, indent. Else,
;; re-create it at its original position.
(if (eq last-command 'orgalist--cycle-indentation)
(cond
((ignore-errors (org-list-indent-item-generic -1 t struct)))
((and (= ind (car orgalist--cycling-state))
(ignore-errors (org-list-indent-item-generic 1 t struct))))
(t (delete-region (line-beginning-position) (line-end-position))
(indent-to-column (car orgalist--cycling-state))
(insert (cdr orgalist--cycling-state) " ")
;; Break cycle.
(setq this-command 'identity)))
;; If a cycle is starting, remember indentation and bullet, then
;; try to indent. If it fails, try to outdent.
(setq orgalist--cycling-state (cons ind bullet))
(cond
((ignore-errors (org-list-indent-item-generic 1 t struct)))
((ignore-errors (org-list-indent-item-generic -1 t struct)))
(t (user-error "No other meaningful indentation level"))))))
(defun orgalist--item-nobreak-p ()
"Non-nil when a newline at point would create a new item."
(pcase (orgalist--boundaries)
(`(,min . ,max)
(and (<= min (point))
(> max (point))
(looking-at-p orgalist--bullet-re)))))
(defun orgalist--when-at-item (cmd)
"Return CMD when point is at a list item."
(when (orgalist--at-item-p) cmd))
(defun orgalist--when-at-empty-item (cmd)
"Return CMD when point is at an empty list item."
(when (and (orgalist--at-item-p)
(org-match-line orgalist--item-re)
(let ((start (line-beginning-position))
(reference-ind (current-indentation))
(end (line-beginning-position 4)))
(save-excursion
(goto-char (match-end 0))
(skip-chars-forward " \r\t\n" end)
(or (= end (point))
(and (/= start (line-beginning-position))
(>= reference-ind (current-indentation)))))))
cmd))
(defun orgalist--when-in-item (cmd)
"Return CMD when point is in a list item."
(when (orgalist--in-item-p) cmd))
;;; Bindings and menu
(defconst orgalist--maybe-previous
'(menu-item "" orgalist-previous-item :filter orgalist--when-in-item))
(defconst orgalist--maybe-next
'(menu-item "" orgalist-next-item :filter orgalist--when-in-item))
(defconst orgalist--maybe-insert
'(menu-item "" orgalist-insert-item :filter orgalist--when-in-item))
(defconst orgalist--maybe-move-up
'(menu-item "" orgalist-move-item-up :filter orgalist--when-at-item))
(defconst orgalist--maybe-move-down
'(menu-item "" orgalist-move-item-down :filter orgalist--when-at-item))
(defconst orgalist--maybe-outdent
'(menu-item "" orgalist-outdent-item :filter orgalist--when-at-item))
(defconst orgalist--maybe-indent
'(menu-item "" orgalist-indent-item :filter orgalist--when-at-item))
(defconst orgalist--maybe-outdent-tree
'(menu-item "" orgalist-outdent-item-tree :filter orgalist--when-at-item))
(defconst orgalist--maybe-indent-tree
'(menu-item "" orgalist-indent-item-tree :filter orgalist--when-at-item))
(defconst orgalist--maybe-cycle-bullet
'(menu-item "" orgalist-cycle-bullet :filter orgalist--when-at-item))
(defconst orgalist--maybe-check
'(menu-item "" orgalist-check-item :filter orgalist--when-at-item))
(defconst orgalist--maybe-sort
'(menu-item "" orgalist-sort-items :filter orgalist--when-at-item))
(defconst orgalist--maybe-cycle-indentation
'(menu-item ""
orgalist--cycle-indentation
:filter orgalist--when-at-empty-item))
(defconst orgalist-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "M-<up>") orgalist--maybe-previous)
(define-key map (kbd "M-<down>") orgalist--maybe-next)
(define-key map (kbd "M-RET") orgalist--maybe-insert)
(define-key map (kbd "M-S-<up>") orgalist--maybe-move-up)
(define-key map (kbd "M-S-<down>") orgalist--maybe-move-down)
(define-key map (kbd "M-<left>") orgalist--maybe-outdent)
(define-key map (kbd "M-<right>") orgalist--maybe-indent)
(define-key map (kbd "M-S-<left>") orgalist--maybe-outdent-tree)
(define-key map (kbd "M-S-<right>") orgalist--maybe-indent-tree)
(define-key map (kbd "C-c -") orgalist--maybe-cycle-bullet)
(define-key map (kbd "C-c C-c") orgalist--maybe-check)
(define-key map (kbd "C-c ^") orgalist--maybe-sort)
;; When an item is empty, we really want to hijack <TAB> binding
;; so that the key can be used to cycle item level.
;;
;; Although it contains "indentation", this is not tied to, e.g.,
;; `indent-line-function'. For example, consider
;; `reindent-then-newline-and-indent'. When called on an empty
;; item, it would cycle its indentation even though <RET> was
;; pressed. This is not desirable.
(define-key map (kbd "<tab>") orgalist--maybe-cycle-indentation)
(define-key map (kbd "TAB") orgalist--maybe-cycle-indentation)
map))
(easy-menu-define orgalist--menu
orgalist-mode-map
"Menu used when Orgalist mode is active."
'("Orgalist" :visible orgalist-mode
"----"
["Insert item" orgalist-insert-item :active (orgalist--in-item-p)]
"----"
["Check item" orgalist-check-item :active (orgalist--at-item-p)]
["Cycle bullet" orgalist-cycle-bullet :active (orgalist--at-item-p)]
"----"
["Previous item" orgalist-previous-item :active (orgalist--in-item-p)]
["Next item" orgalist-next-item :active (orgalist--in-item-p)]
["Move item up" orgalist-move-item-up :active (orgalist--at-item-p)]
["Move item down" orgalist-move-item-gdown :active (orgalist--at-item-p)]
"---"
["Indent item" orgalist-indent-item :active (orgalist--at-item-p)]
["Indent tree" orgalist-indent-item-tree :active (orgalist--at-item-p)]
["Outdent item" orgalist-outdent-item :active (orgalist--at-item-p)]
["Outdent tree" orgalist-outdent-item-tree :active (orgalist--at-item-p)]
"---"
["Sort items" orgalist-sort-items :active (orgalist--at-item-p)]))
;;; Minor mode definition
;;;###autoload
(define-minor-mode orgalist-mode
"Toggle Org-like lists and their relative commands.
With a prefix argument ARG, enable Auto Fill mode if ARG is
positive, and disable it otherwise. If called from Lisp, enable
the mode if ARG is omitted or nil.
When Orgalist mode is enabled, any line beginning with \"-\",
\"+\", \"1.\" or \"a.\" followed by a space starts a list. You
can then operate locally on the list, e.g., to insert new items,
move items or sort them. See below for details.
Moreover, you can add check-boxes to items
- [ ] A checkbox, toggled with `C-c C-c'
turn an unordered list into a description list
- term :: description
and control numbering in an ordered list
4. [@4] a forced numbered item
key binding
--- -------
M-<RET> `orgalist-insert-item'
M-<UP> `orgalist-previous-item'
M-<DOWN> `orgalist-next-item'
M-S-<UP> `orgalist-move-item-up'
M-S-<DOWN> `orgalist-move-item-down'
M-<LEFT> `orgalist-outdent-item'
M-<RIGHT> `orgalist-indent-item'
M-S-<LEFT> `orgalist-outdent-item-tree'
M-S-<RIGHT> `orgalist-indent-item-tree'
C-c - `orgalist-cycle-bullet'
C-c ^ `orgalist-sort-items'
C-c C-c `orgalist-check-item'"
:lighter " olst"
(cond
(orgalist-mode
(when (derived-mode-p 'org-mode)
(user-error "Cannot activate Orgalist mode in an Org buffer"))
(setq-local org-blank-before-new-entry
`((plain-list-item . ,orgalist-separated-items)))
(setq-local org-list-allow-alphabetical t)
(setq-local org-list-automatic-rules nil)
(setq-local org-list-demote-modify-bullet nil)
(setq-local org-list-description-max-indent 5)
(setq-local org-list-indent-offset 0)
(setq-local org-list-two-spaces-after-bullet-regexp nil)
(setq-local org-list-use-circular-motion nil)
(setq-local org-plain-list-ordered-item-terminator ?.)
(add-function :around (local 'fill-forward-paragraph-function)
#'orgalist--fill-forward-wrapper)
(add-function :around (local 'fill-paragraph-function)
#'orgalist--fill-item)
;; Unless `indent-line-function' is buffer-local before it is
;; advised with `add-function', the workaround for bug#31361 below
;; will not work, as (advice--cd*r indent-line-function) will not
;; compare `eq' to `indent-relative' in
;; `indent-according-to-mode'.
(make-local-variable 'indent-line-function)
(add-function :before-until
(local 'indent-line-function)
#'orgalist--indent-line)
;; If Auto fill mode is not enabled when we initialize Orgalist
;; mode, `auto-fill-function' is nil and we just advise
;; `normal-auto-fill-function'.
(add-function :around
(local 'normal-auto-fill-function)
#'orgalist--auto-fill)
(when auto-fill-function
(add-function :around (local 'auto-fill-function) #'orgalist--auto-fill))
;; Prevent Auto fill mode from creating new items.
(push 'orgalist--item-nobreak-p fill-nobreak-predicate)
;; FIXME: Workaround bug#31361.
(unless (advice-member-p 'orgalist-fix-bug:31361 'indent-according-to-mode)
(advice-add 'indent-according-to-mode
:around (lambda (old)
"Workaround bug#31361."
(or (orgalist--indent-line)
(let ((indent-line-function
(advice--cd*r indent-line-function)))
(funcall old))))
'((name . orgalist-fix-bug:31361)))))
(t
(remove-function (local 'fill-forward-paragraph-function)
#'orgalist--fill-forward-wrapper)
(remove-function (local 'fill-paragraph-function) #'orgalist--fill-item)
(remove-function (local 'indent-line-function) #'orgalist--indent-line)
(setq fill-nobreak-predicate
(delq 'orgalist--item-nobreak-p fill-nobreak-predicate))
(remove-function (local 'normal-auto-fill-function) #'orgalist--auto-fill)
(when auto-fill-function
(remove-function (local 'auto-fill-function) #'orgalist--auto-fill))
;; FIXME: When there is no Orgalist minor mode active in any
;; buffer, remove workaround for bug#31361.
(unless (cl-some (lambda (b) (with-current-buffer b orgalist-mode))
(buffer-list))
(advice-remove 'indent-according-to-mode 'orgalist-fix-bug:31361)))))
;;; Public functions
(defun orgalist-previous-item ()
"Move to the beginning of the previous item.
Throw an error when at first item."
(interactive)
(let ((item (orgalist--in-item-p)))
(unless item (user-error "Not in a list"))
(goto-char item)
(orgalist--goto-following-item t)))
(defun orgalist-next-item ()
"Move to the beginning of the next item.
Throw an error when at last item."
(interactive)
(let ((item (orgalist--in-item-p)))
(unless item (user-error "Not in a list"))
(goto-char item)
(orgalist--goto-following-item nil)))
(defun orgalist-insert-item (&optional checkbox)
"Insert a new item at the current level.
If cursor is before first character after bullet of the item, the
new item will be created before the current one.
If CHECKBOX is non-nil, add a checkbox next to the bullet."
(interactive "P")
(let ((item? (orgalist--in-item-p)))
(unless item? (user-error "Not in a list"))
(let* ((struct (save-excursion (goto-char item?) (orgalist--struct)))
(prevs (org-list-prevs-alist struct))
;; If we're in a description list, ask for the new term.
(desc
(and (eq 'descriptive (org-list-get-list-type item? struct prevs))
" :: ")))
(setq struct (org-list-insert-item (point) struct prevs checkbox desc))
(org-list-write-struct struct (org-list-parents-alist struct))
(looking-at orgalist--item-re)
(goto-char (if (and (match-beginning 4)
(save-match-data
(string-match "\\." (match-string 1))))
(match-beginning 4)
(match-end 0)))
(when desc (backward-char 1)))))
(defun orgalist-move-item-down ()
"Move the item at point down, i.e. swap with following item.
Sub-items (items with larger indentation) are considered part of
the item, so this really moves item trees."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(orgalist--move-item nil))
(defun orgalist-move-item-up ()
"Move the item at point up, i.e. swap with previous item.
Sub-items (items with larger indentation) are considered part of
the item, so this really moves item trees."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(orgalist--move-item t))
(defun orgalist-cycle-bullet ()
"Cycle through the different itemize/enumerate bullets.
This cycle the entire list level through the sequence:
`-' -> `+' -> `1.' -> `a.'"
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(save-excursion
(beginning-of-line)
(let* ((struct (orgalist--struct))
(parents (org-list-parents-alist struct))
(prevs (org-list-prevs-alist struct))
(list-beg (org-list-get-first-item (point) struct prevs))
(bullet (org-list-get-bullet list-beg struct))
(current (cond ((string-match "[A-Za-z]\\." bullet) "a.")
((string-match "\\." bullet) "1.")
(t (org-trim bullet))))
(bullet-list
(append '("-" "+")
;; Description items cannot be numbered.
(unless (org-at-item-description-p) '("1."))
(unless (org-at-item-description-p) '("a."))))
(new (or (cadr (member current bullet-list))
(car bullet-list))))
;; Use a short variation of `org-list-write-struct' as there's
;; no need to go through all the steps.
(let ((old-struct (copy-tree struct)))
(org-list-set-bullet list-beg struct (org-list-bullet-string new))
(org-list-struct-fix-bul struct prevs)
(org-list-struct-fix-ind struct parents)
(org-list-struct-apply-struct struct old-struct)))))
(defun orgalist-outdent-item ()
"Outdent a local list item, but not its children."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(org-list-indent-item-generic -1 t (orgalist--struct)))
(defun orgalist-indent-item ()
"Indent a local list item, but not its children."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(org-list-indent-item-generic 1 t (orgalist--struct)))
(defun orgalist-outdent-item-tree ()
"Outdent a local list item including its children."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(org-list-indent-item-generic -1 nil (orgalist--struct)))
(defun orgalist-indent-item-tree ()
"Indent a local list item including its children."
(interactive)
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(org-list-indent-item-generic 1 nil (orgalist--struct)))
(defun orgalist-check-item (&optional arg)
"Toggle the checkbox in the current line.
With prefix ARG, add or remove checkboxes. With double prefix,
set checkbox to [-].
In any case, fix indentation, bullets and checkboxes in the list
at point."
(interactive "P")
(unless (orgalist--at-item-p) (user-error "Not in a list"))
(save-excursion
(beginning-of-line)
(catch :repair-only
(let* ((regexp (concat "[ \t]*\\(?:[-+]\\|\\(?:[a-zA-Z]\\|[0-9]+\\)\\.\\)"
"\\(?:[ \t]+\\[@\\(?:[a-zA-Z]\\|[0-9]+\\)\\]\\)?"
"[ \t]+\\(\\[[- xX]\\]\\)"))
(struct (orgalist--struct))
(struct-copy (copy-tree struct))
(parents (org-list-parents-alist struct))
(prevs (org-list-prevs-alist struct))
(current (and (looking-at regexp) (match-string 1)))
(new
(cond
((equal arg '(16)) "[-]")
((equal arg '(4)) (if current nil "[ ]"))
((not current)
(throw :repair-only (org-list-write-struct struct parents)))
((member current '("[X]" "[x]")) "[ ]")
(t "[X]"))))
(org-list-set-checkbox (point) struct new)
(when (org-list-struct-fix-box
struct parents prevs orgalist-ordered-checkboxes)
(org-list-write-struct struct-copy parents)
(error "Checkbox blocked because of unchecked box"))
(org-list-struct-apply-struct struct struct-copy)))))
(defvar org-after-sorting-entries-or-items-hook)
(defun orgalist-sort-items (with-case sorting-type)
"Sort list items.
The cursor may be at any item of the list that should be sorted.
Sublists are not sorted.
Comparing entries ignores case by default. However, with an
optional argument WITH-CASE, the sorting considers case as well.
The command prompts for the SORTING-TYPE, which needs to be
a character among ?n ?N ?a ?A ?x ?X. Here is the detailed meaning
of each character:
n Numerically, by converting the beginning of the item to a number.
a Alphabetically. Only the first line of item is checked.
x By \"checked\" status of a check list.
Capital letters reverse the sort order."
(interactive
(list current-prefix-arg
(progn
(message "Sort plain list: [a/A]lpha [n/N]umeric [x/X]checked:")
(read-char-exclusive))))
(unless (memq sorting-type '(?a ?A ?n ?N ?x ?X))
(user-error "Invalid sorting type"))
(let ((org-after-sorting-entries-or-items-hook nil))
(org-sort-list with-case sorting-type)))
(defun orgalist-insert-radio-list ()
"Insert a radio list template appropriate for current major mode."
(interactive)
(let* ((e (or (cl-assoc-if #'derived-mode-p orgalist-radio-list-templates)
(error "No radio list setup defined for %S" major-mode)))
(name (read-string "List name: "))
(txt (replace-regexp-in-string "%n" name (nth 1 e) t t)))
(unless (bolp) (insert "\n"))
(save-excursion (insert txt))))
(defun orgalist-send-list (&optional maybe)
"Send a transformed version of this list to the receiver position.
With argument MAYBE, fail quietly if no transformation is defined
for this list."
(interactive)
(catch 'exit
(unless (orgalist--at-item-p) (error "Not at a list item"))
(save-excursion
(let ((case-fold-search t))
(re-search-backward "^[ \t]*#\\+ORGLST:" nil t)
(unless (looking-at
"[ \t]*#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\([^ \t\n]+\\)")
(if maybe (throw 'exit nil)
(error "Don't know how to transform this list")))))
(let* ((name (regexp-quote (match-string 1)))
(transform (intern (match-string 2)))
(bottom-point
(save-excursion
(re-search-forward
"\\(\\\\end{comment}\\|@end ignore\\|-->\\)" nil t)
(match-beginning 0)))
(top-point
(progn
(re-search-backward "#\\+ORGLST" nil t)
(re-search-forward (org-item-beginning-re) bottom-point t)
(match-beginning 0)))
(plain-list (save-excursion
(goto-char top-point)
;; FIXME: Compatibility layer. Remove when
;; we require at least Emacs 26.1.
(funcall (if (fboundp 'org-list-to-lisp)
'org-list-to-lisp)
'org-list-parse-list))))
(unless (fboundp transform)
(error "No such transformation function %s" transform))
(let ((txt (funcall transform plain-list)))
;; Find the insertion(s) place(s).
(save-excursion
(goto-char (point-min))
(let ((receiver-count 0)
(begin-re (format "BEGIN +RECEIVE +ORGLST +%s\\([ \t]\\|$\\)"
name))
(end-re (format "END +RECEIVE +ORGLST +%s\\([ \t]\\|$\\)"
name)))
(while (re-search-forward begin-re nil t)
(cl-incf receiver-count)
(let ((beg (line-beginning-position 2)))
(unless (re-search-forward end-re nil t)
(user-error "Cannot find end of receiver location at %d" beg))
(beginning-of-line)
(delete-region beg (point))
(insert txt "\n")))
(cond
((> receiver-count 1)
(message "List converted and installed at receiver locations"))
((= receiver-count 1)
(message "List converted and installed at receiver location"))
(t (user-error "No valid receiver location found")))))))))
;;;; ChangeLog:
;; 2018-09-15 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.9
;;
;; 2018-09-15 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Do not fill paragraph with next item
;;
;; * orgalist.el (orgalist--fill-forward-wrapper): New function.
;; (orgalist-mode): When an item follows a paragraph without any blank line
;; in-between, filling the paragraph no longer fill the item.
;;
;; 2018-09-15 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Remove unnecessary checks
;;
;; * orgalist.el (orgalist--when-at-item):
;; (orgalist--when-at-empty-item):
;; (orgalist--when-in-item): Remove check for `orgalist-mode' since
;; `orgalist--at-item-p' and `orgalist--in-item-p' already take care of it.
;;
;; 2018-09-15 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix lax check
;;
;; * orgalist.el (orgalist--at-item-p): Make sure boundaries are actually
;; checked. Small refactoring.
;;
;; 2018-09-15 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Prevent auto-filling from creating a new item
;;
;; * orgalist.el (orgalist--bullet-re): New variable.
;; (orgalist--item-re): Use new variable.
;; (orgalist--item-nobreak-p): New function.
;; (orgalist-mode): Prevent auto-filling from creating a new item.
;;
;; 2018-06-12 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.8
;;
;; 2018-06-12 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Set some Org variables so behaviour is predictable
;;
;; * orgalist.el (orgalist-mode): Set some variables from "org-list.el"
;; so that Orgalist behavior does not depend on the behavior of plain
;; lists in Org buffers.
;;
;; 2018-06-12 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Control empty lines between items
;;
;; * orgalist.el (orgalist-separated-items): New variable.
;; (orgalist-mode): Use new variable.
;;
;; 2018-05-07 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.7
;;
;; 2018-05-07 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix issue with M-RET with unsupported "1)" type lists
;;
;; * orgalist.el (orgalist-mode): Set
;; `org-plain-list-ordered-item-terminator' to ?. since ?\) is not
;; supported.
;;
;; 2018-05-06 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.6
;;
;; 2018-05-06 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Compatibility with old Org releases
;;
;; * orgalist.el (orgalist-send-list): Add compatibility layer with Org <
;; 9.0 (included in Emacs 26.1).
;;
;; 2018-05-06 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Ensure Org is completely loaded first
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.5
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix workaround bug#31361
;;
;; * orgalist.el (orgalist-mode): Re-apply advice.
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Silence byte-compiler
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.4
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Add workaround for bug#31361
;;
;; * orgalist.el (orgalist-mode): Add workaround for bug#31361.
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Short-circuit filters when Orgalist minor mode is not active
;;
;; * orgalist.el (orgalist--when-at-item):
;; (orgalist--when-at-empty-item):
;; (orgalist--when-in-item): Check `orgalist-mode'.
;;
;; The check is already done by `orgalist--at-item-p', but checking it
;; earlier can avoid two funcalls.
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Rename filters
;;
;; * orgalist.el (orgalist--when-at-item): Renamed from
;; `orgalist--while-at-item'.
;; (orgalist--when-at-empty-item): Renamed from
;; `orgalist--while-at-empty-item'.
;; (orgalist--when-in-item): Renamed from `orgalist--while-at-item'.
;; (orgalist--maybe-previous):
;; (orgalist--maybe-next):
;; (orgalist--maybe-insert):
;; (orgalist--maybe-move-up):
;; (orgalist--maybe-move-down):
;; (orgalist--maybe-outdent):
;; (orgalist--maybe-indent):
;; (orgalist--maybe-outdent-tree):
;; (orgalist--maybe-indent-tree):
;; (orgalist--maybe-cycle-bullet):
;; (orgalist--maybe-check):
;; (orgalist--maybe-sort):
;; (orgalist--maybe-cycle-indentation): Apply renaming.
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix indentation cycling on empty items
;;
;; * orgalist.el (orgalist--indent-line): Do not cycle indentation.
;; (orgalist--cycle-indentation): Change signature. Make it interactive so
;; as to be used in `menu-item'.
;; (orgalist--while-at-empty-item): New function.
;; (orgalist--maybe-cycle-indentation): New variable.
;; (orgalist-mode-map): Hijack <TAB> on empty items.
;;
;; 2018-05-05 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Really prevent any indentation at items
;;
;; * orgalist.el (orgalist--indent-line): Return t instead of `noindent'
;; at a non-empty item.
;;
;; Returning `noindent' still allows `indent-line-function' default value
;; to kick in, according to `indent-according-to-mode'.
;;
;; 2018-05-04 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Do not consider auto filling line before `current-fill-column'
;;
;; * orgalist.el (orgalist--auto-fill): Do not consider auto filling line
;; before `current-fill-column'.
;;
;; The behavior is the same, but we avoid calling `orgalist--in-item-p' in
;; most cases.
;;
;; 2018-05-04 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Also indent line right after the list
;;
;; (orgalist--indent-line): Indent line right after the list.
;;
;; 2018-05-04 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix auto filling
;;
;; * orgalist.el (orgalist-mode): Advise around both
;; `normal-auto-fill-function' and `auto-fill-function' to handle
;; various Auto fill mode status when Orgalist mode starts.
;; (orgalist--auto-fill): Change signature since the advice is located at a
;; different place.
;;
;; 2018-05-04 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Indent line properly
;;
;; * orgalist.el (orgalist--indent-line): New function.
;; (orgalist--cycle-indentation): Focus on indentation cycling instead of
;; trying to indent line.
;; (orgalist-mode): Advise `indent-line-function' with
;; `orgalist--indent-line'.
;;
;; 2018-05-03 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Bump to version 1.3
;;
;; 2018-05-03 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Improve minor mode's docstring
;;
;; * orgalist.el (orgalist-mode):Improve docstring.
;;
;; 2018-05-02 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix mode when Auto fill mode is not active
;;
;; * orgalist.el (orgalist-mode): Advise `normal-auto-fill-function'
;; instead of `auto-fill-function', which may be nil if Auto fill mode
;; is not activated.
;;
;; 2018-05-02 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Fix thinko preventing indentation cycling to work properly
;;
;; * orgalist.el (orgalist--cycle-indentation): Fix test for empty items.
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Fix location of "orgalist.el ends here" cookie
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Improve menu and a docstring
;;
;; * orgalist.el (orgalist--cycle-indentation): Improve docstring.
;; (orgalist--menu): Improve menu.
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Bump to version 1.2
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Add non-nil `sentence-end-double-space' file local variable
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Improve documentation
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Replace `orgalist--indentation' with `current-indentation'
;;
;; * orgalist.el (orgalist--indentation): Remove function.
;; (orgalist--in-item-p):
;; (orgalist--struct): Use `current-indentation'.
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Improve indentation cycling
;;
;; * orgalist.el (orgalist--cycle-indentation): New function.
;; (orgalist--while-at-empty-item): Remove function.
;; (orgalist--maybe-cycle-indentation): Remove variable.
;; (orgalist-mode-map): Remove hard-coded <TAB> binding.
;; (orgalist-mode): Advise `indent-line-function' with
;; `orgalist--cycle-indentation'. Improve docstring.
;; (orgalist-cycle-indentation): Remove function.
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Simplify auto fill
;;
;; * orgalist.el (orgalist--last-advised-function): Remove variable.
;; (orgalist--set-auto-fill): Remove function.
;; (orgalist-mode): Directly advise `auto-fill-function' instead of relying
;; on a post command hook.
;;
;; 2018-05-01 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Fix filling items
;;
;; * orgalist.el (orgalist--call-in-item): Allow arguments. Take into
;; consideration indentation of current item. Improve docstring.
;; (orgalist--auto-fill): Improve docstring. Return a non-nil value when
;; taking care of the auto filling.
;; (orgalist--fill-item): New function.
;; (orgalist--maybe-fill): Remove variable.
;; (orgalist-mode-map): Do not bind "M-q".
;; (orgalist-mode): Advise `fill-paragraph-function'.
;; (orgalist-fill-item): Remove function.
;;
;; 2018-04-30 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Bump to version 1.1
;;
;; 2018-04-30 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Only cycle indentation on empty items
;;
;; * orgalist.el (orgalist--while-at-empty-item): New function.
;; (orgalist--maybe-cycle-indentation): Use new function.
;;
;; Elsewhere, fallback to standard TAB behavior.
;;
;; 2018-04-30 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; orgalist: Silence byte-compiler
;;
;; 2018-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
;;
;; * orgalist.el: Only autoload the minor mode
;;
;; Require Emacsā„24.4 since we use add-function.
;; (org-after-sorting-entries-or-items-hook): Declare.
;;
;; 2018-04-30 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Second version, sent to emacs-devel
;;
;; 2018-04-30 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;
;; Initial version, sent to emacs-orgmode list
;;
(provide 'orgalist)
;; Local Variables:
;; sentence-end-double-space: t
;; End:
;;; orgalist.el ends here
|