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
|
;;; -*- lexical-binding: nil; -*-
;;; howm-misc.el --- Wiki-like note-taking tool
;;; Copyright (C) 2002, 2003, 2004, 2005-2026
;;; HIRAOKA Kazuyuki <kakkokakko@gmail.com>
;;;
;;; 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 1, 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.
;;;
;;; The GNU General Public License is available by anonymouse ftp from
;;; prep.ai.mit.edu in pub/gnu/COPYING. Alternately, you can write to
;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
;;; USA.
;;;--------------------------------------------------------------------
(provide 'howm-misc)
(require 'howm)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Misc.
(defun howm-version ()
(interactive)
(message "howm-%s" howm-version))
(defun howm-keyword-file ()
;; create .howm-keys
(when (not (file-exists-p howm-keyword-file))
(save-excursion
(find-file howm-keyword-file)
(when howm-menu-top
(goto-char (point-min))
(insert howm-menu-top "\n"))
(set-buffer-modified-p t)
(save-buffer)
(kill-buffer nil)
(message "Generating %s ..." howm-keyword-file)
(howm-keyword-add-items (howm-all-items))
(message "Done.")))
howm-keyword-file)
(add-hook 'howm-view-open-hook 'howm-set-mode)
(defun howm-set-mode ()
(when (howm-set-mode-p)
(howm-set-configuration-for-major-mode major-mode)
(howm-mode 1)))
(defun howm-set-mode-p (&optional buf)
(with-current-buffer (or buf (current-buffer))
(let ((hdir (car (howm-search-path))))
(and (buffer-file-name)
(howm-folder-territory-p hdir (buffer-file-name))))))
(defvar howm-configuration-for-major-mode nil)
;; ;; sample
;; (setq howm-configuration-for-major-mode
;; '(
;; ;; fix me
;; (emacs-lisp-mode
;; . (
;; (howm-keyword-format . "(def[a-z*]+ +%s[ \t\r\n]")
;; (howm-keyword-regexp-format . "%s")
;; (howm-keyword-regexp . "(\\(def[a-z]+\\) +'?\\([-+=*/_~!@$%^&:<>{}?a-zA-Z0-9]+\\)") ;; ' for (defalias 'xxx ...)
;; (howm-keyword-regexp-hilit-pos . 1)
;; (howm-keyword-regexp-pos . 2)
;; (howm-view-title-regexp . "^(.*$")
;; ;; (howm-view-title-regexp . "^[^; \t\r\n].*$")
;; (howm-view-title-regexp-pos . 0)
;; (howm-view-title-regexp-grep . "^[^; \t\r\n].*$")
;; (howm-mode-title-face . nil)
;; (howm-keyword-list-alias-sep . nil)
;; (howm-view-preview-narrow . nil)
;; ))
;; (scheme-mode
;; . (
;; (howm-keyword-format . "(def[a-z]+ +[(]?%s[) \t\r\n]")
;; (howm-keyword-regexp-format . "%s")
;; (howm-keyword-regexp . "(\\(def[a-z]+\\) +[(]?\\([-+=*/_~!@$%^&:<>{}?a-zA-Z0-9]+\\)")
;; (howm-keyword-regexp-hilit-pos . 1)
;; (howm-keyword-regexp-pos . 2)
;; (howm-view-title-regexp . "^[^; \t\r\n].*$")
;; (howm-view-title-regexp-pos . 0)
;; (howm-view-title-regexp-grep . "^[^; \t\r\n].*$")
;; (howm-mode-title-face . nil)
;; (howm-keyword-list-alias-sep . nil)
;; (howm-view-preview-narrow . nil)
;; ))
;; (ruby-mode
;; . (
;; (howm-keyword-format . "\\(def\\|class\\) +%s\\b")
;; (howm-keyword-regexp-format . "%s")
;; (howm-keyword-regexp . "\\(def\\|class\\) +\\([-+=*/_~!@$%^&:<>{}?a-zA-Z0-9]+\\)")
;; (howm-keyword-regexp-hilit-pos . 1)
;; (howm-keyword-regexp-pos . 2)
;; (howm-view-title-regexp . "^[^# \t\r\n].*$")
;; (howm-view-title-regexp-pos . 0)
;; (howm-view-title-regexp-grep . "^[^# \t\r\n].*$")
;; (howm-mode-title-face . nil)
;; (howm-keyword-list-alias-sep . nil)
;; (howm-view-preview-narrow . nil)
;; ))
;; (yatex-mode
;; . (
;; (howm-keyword-format . "\\\\label%s")
;; (howm-keyword-regexp-format . "%s")
;; (howm-keyword-regexp . "\\(\\\\label\\)\\({[^}\r\n]+}\\)")
;; (howm-keyword-regexp-hilit-pos . 1)
;; (howm-keyword-regexp-pos . 2)
;; (howm-view-title-regexp . "\\\\\\(\\(sub\\)*section\\|chapter\\|part\\|begin\\)")
;; (howm-view-title-regexp-pos . 0)
;; (howm-view-title-regexp-grep . "\\\\((sub)*section|chapter|part|begin)")
;; (howm-mode-title-face . nil)
;; (howm-keyword-list-alias-sep . nil)
;; (howm-view-preview-narrow . nil)
;; ))
;; ))
(defun howm-set-configuration-for-file-name (f)
(let ((mode (howm-auto-mode f)))
(howm-set-configuration-for-major-mode mode)))
(defun howm-set-configuration-for-major-mode (mode)
(let ((a (cdr (assoc mode howm-configuration-for-major-mode))))
(when a ;; I know this is redundant.
(mapc (lambda (sv)
(let ((symbol (car sv))
(value (cdr sv)))
(set (make-local-variable symbol) value)))
a))))
(defmacro howm-if-unbound (var &rest alt-body)
`(if (boundp ',var) ,var ,@alt-body))
;; copied and modified from set-auto-mode in /usr/share/emacs/21.2/lisp/files.el
;; (I don't want to set the mode actually. Sigh...)
(howm-dont-warn-free-variable auto-mode-interpreter-regexp)
(defvar howm-auto-mode-interpreter-regexp
(howm-if-unbound auto-mode-interpreter-regexp
;; xemacs doesn't have it.
"#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
(defun howm-auto-mode (&optional file-name)
"Major mode appropriate for current buffer.
This checks for a -*- mode tag in the buffer's text,
compares the filename against the entries in `auto-mode-alist',
or checks the interpreter that runs this file against
`interpreter-mode-alist'.
It does not check for the `mode:' local variable in the
Local Variables section of the file; for that, use `hack-local-variables'.
If `enable-local-variables' is nil, this function does not check for a
-*- mode tag.
This function merely returns the mode; it does not set the mode.
"
;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
(let (beg end done modes ans)
(save-excursion
(goto-char (point-min))
(skip-chars-forward " \t\n")
(and enable-local-variables
;; Don't look for -*- if this file name matches any
;; of the regexps in inhibit-first-line-modes-regexps.
(let ((temp (howm-if-unbound inhibit-first-line-modes-regexps
inhibit-local-variables-regexps))
(name (file-name-sans-versions (or file-name ""))))
(while (let ((sufs (howm-if-unbound inhibit-first-line-modes-suffixes
inhibit-local-variables-suffixes)))
(while (and sufs (not (string-match (car sufs) name)))
(setq sufs (cdr sufs)))
sufs)
(setq name (substring name 0 (match-beginning 0))))
(while (and temp
(not (string-match (car temp) name)))
(setq temp (cdr temp)))
(not temp))
(search-forward "-*-" (save-excursion
;; If the file begins with "#!"
;; (exec interpreter magic), look
;; for mode frobs in the first two
;; lines. You cannot necessarily
;; put them in the first line of
;; such a file without screwing up
;; the interpreter invocation.
(end-of-line (and (looking-at "^#!") 2))
(point)) t)
(progn
(skip-chars-forward " \t")
(setq beg (point))
(search-forward "-*-"
(save-excursion (end-of-line) (point))
t))
(progn
(forward-char -3)
(skip-chars-backward " \t")
(setq end (point))
(goto-char beg)
(if (save-excursion (search-forward ":" end t))
;; Find all specifications for the `mode:' variable
;; and execute them left to right.
(while (let ((case-fold-search t))
(or (and (looking-at "mode:")
(goto-char (match-end 0)))
(re-search-forward "[ \t;]mode:" end t)))
(skip-chars-forward " \t")
(setq beg (point))
(if (search-forward ";" end t)
(forward-char -1)
(goto-char end))
(skip-chars-backward " \t")
(push (intern (concat (downcase (buffer-substring beg (point))) "-mode"))
modes))
;; Simple -*-MODE-*- case.
(push (intern (concat (downcase (buffer-substring beg end))
"-mode"))
modes)))))
;; If we found modes to use, set done.
(dolist (mode (nreverse modes))
(when (functionp mode)
(setq ans mode)
(setq done t)))
;; If we didn't find a mode from a -*- line, try using the file name.
(if (and (not done) file-name)
(let ((name file-name)
(keep-going t))
;; Remove backup-suffixes from file name.
(setq name (file-name-sans-versions name))
(while keep-going
(setq keep-going nil)
(let ((alist auto-mode-alist)
(mode nil))
;; Find first matching alist entry.
(let ((case-fold-search
(memq system-type '(vax-vms windows-nt))))
(while (and (not mode) alist)
(if (string-match (car (car alist)) name)
(if (and (consp (cdr (car alist)))
(nth 2 (car alist)))
(setq mode (car (cdr (car alist)))
name (substring name 0 (match-beginning 0))
keep-going t)
(setq mode (cdr (car alist))
keep-going nil)))
(setq alist (cdr alist))))
(if mode
(setq ans mode)
;; If we can't deduce a mode from the file name,
;; look for an interpreter specified in the first line.
;; As a special case, allow for things like "#!/bin/env perl",
;; which finds the interpreter anywhere in $PATH.
(let ((interpreter
(save-excursion
(goto-char (point-min))
(if (looking-at howm-auto-mode-interpreter-regexp)
(match-string 2)
"")))
elt)
;; Map interpreter name to a mode.
(setq elt (assoc (file-name-nondirectory interpreter)
interpreter-mode-alist))
(if elt
(setq ans (cdr elt)))))))))
ans
))
;; copied from /usr/share/emacs/21.2/lisp/subr.el
;; for emacs20 and xemacs
(when (not (fboundp 'replace-regexp-in-string))
(defun replace-regexp-in-string (regexp rep string &optional
fixedcase literal subexp start)
"Replace all matches for REGEXP with REP in STRING.
Return a new string containing the replacements.
Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
arguments with the same names of function `replace-match'. If START
is non-nil, start replacements at that index in STRING.
REP is either a string used as the NEWTEXT arg of `replace-match' or a
function. If it is a function it is applied to each match to generate
the replacement passed to `replace-match'; the match-data at this
point are such that match 0 is the function's argument.
To replace only the first match (if any), make REGEXP match up to \\'
and replace a sub-expression, e.g.
(replace-regexp-in-string \"\\(foo\\).*\\'\" \"bar\" \" foo foo\" nil nil 1)
=> \" bar foo\"
"
;; To avoid excessive consing from multiple matches in long strings,
;; don't just call `replace-match' continually. Walk down the
;; string looking for matches of REGEXP and building up a (reversed)
;; list MATCHES. This comprises segments of STRING which weren't
;; matched interspersed with replacements for segments that were.
;; [For a `large' number of replacments it's more efficient to
;; operate in a temporary buffer; we can't tell from the function's
;; args whether to choose the buffer-based implementation, though it
;; might be reasonable to do so for long enough STRING.]
(let ((l (length string))
(start (or start 0))
matches str mb me)
(save-match-data
(while (and (< start l) (string-match regexp string start))
(setq mb (match-beginning 0)
me (match-end 0))
;; If we matched the empty string, make sure we advance by one char
(when (= me mb) (setq me (min l (1+ mb))))
;; Generate a replacement for the matched substring.
;; Operate only on the substring to minimize string consing.
;; Set up match data for the substring for replacement;
;; presumably this is likely to be faster than munging the
;; match data directly in Lisp.
(string-match regexp (setq str (substring string mb me)))
(setq matches
(cons (replace-match (if (stringp rep)
rep
(funcall rep (match-string 0 str)))
fixedcase literal str subexp)
(cons (substring string start mb) ; unmatched prefix
matches)))
(setq start me))
;; Reconstruct a string from the pieces.
(setq matches (cons (substring string start l) matches)) ; leftover
(apply #'concat (nreverse matches)))))
)
(howm-defvar-risky howm-kill-all-enable-force nil)
(defun howm-kill-all (&optional force-p)
"Kill all buffers which is howm-mode and unmodified."
(interactive "P")
(let ((anyway (and force-p howm-kill-all-enable-force)))
(when (if anyway
(yes-or-no-p "Discard all unsaved changes on howm-mode buffers? ")
(y-or-n-p "Kill all howm-mode buffers? "))
(when (eq major-mode 'howm-view-summary-mode)
(howm-view-restore-window-configuration))
(mapc (lambda (b)
(when (howm-buffer-p b)
(when anyway
(switch-to-buffer b)
(set-buffer-modified-p nil)) ;; dangerous!
(when (not (buffer-modified-p b))
(kill-buffer b))))
(buffer-list))
(message "Done."))))
(defun howm-toggle-buffer ()
(interactive)
(if (howm-buffer-p)
(howm-switch-to-nonhowm-buffer)
(howm-switch-to-howm-buffer)))
(defun howm-switch-to-howm-buffer ()
(interactive)
(let ((b (howm-find-buffer #'howm-buffer-p)))
(if b
(switch-to-buffer b)
(howm-menu))))
(defun howm-switch-to-nonhowm-buffer ()
(interactive)
(switch-to-buffer (or (howm-find-buffer #'(lambda (b)
(not (howm-buffer-p b))))
(error "No nonhowm buffer"))))
(defun howm-find-buffer (pred)
(catch :found
(mapc (lambda (b)
(cond ((howm-internal-buffer-p b) nil) ;; skip
((funcall pred b) (throw :found b))
(t t)))
(buffer-list))
nil))
(defun howm-internal-buffer-p (buf)
(string= (substring (buffer-name buf) 0 1) " "))
(defun howm-buffer-p (&optional buf)
(let* ((indep-dirs (cons nil *howm-independent-directories*))
(keyword-bufs (mapcar
(lambda (d)
(let ((default-directory (or d default-directory)))
(howm-keyword-buffer)))
indep-dirs)))
(with-current-buffer (or buf (current-buffer))
(or howm-mode
(member major-mode
'(howm-view-summary-mode
howm-view-contents-mode))
(member buf keyword-bufs)))))
(defun howm-mode-add-font-lock ()
(cheat-font-lock-append-keywords (howm-mode-add-font-lock-internal)))
(defun howm-mode-add-font-lock-internal ()
(when howm-use-color
`(,@howm-user-font-lock-keywords
(,howm-view-title-regexp
(0 howm-mode-title-face prepend))
(,howm-keyword-regexp
(,howm-keyword-regexp-hilit-pos howm-mode-keyword-face prepend))
(,howm-ref-regexp
(,howm-ref-regexp-hilit-pos howm-mode-ref-face prepend))
,@(and howm-wiki-regexp
`((,howm-wiki-regexp
(,howm-wiki-regexp-pos howm-mode-wiki-face prepend))))
)))
;;; unofficial. may be removed if no one needs them.
(defun howm-show-buffer-as-howm ()
(interactive)
(let* ((name (buffer-name))
(pos (point))
(s (buffer-substring-no-properties (point-min) (point-max)))
(b (get-buffer-create (format "*howm[%s]*" name))))
(set-buffer b)
(howm-rewrite-read-only-buffer
(insert s)
(howm-mode 1)
(howm-initialize-buffer))
(goto-char pos)
(switch-to-buffer b)))
;;; narrowing
(defun howm-narrow-to-memo ()
"Restrict editing in this buffer to the current memo."
(interactive)
(apply #'narrow-to-region (howm-view-paragraph-region t)))
(defun howm-toggle-narrow ()
"Toggle whether to restrict editing in this buffer to the current memo."
(interactive)
(if (howm-narrow-p)
(widen)
(howm-narrow-to-memo)))
(put 'howm-narrow-to-memo 'disabled t)
(put 'howm-toggle-narrow 'disabled t)
(defun howm-narrow-p ()
(let ((b (point-min))
(e (point-max)))
(save-restriction
(widen)
(not (and (equal b (point-min))
(equal e (point-max)))))))
(defun howm-auto-narrow ()
(when (cond (*howm-view-item-privilege* nil)
((eq howm-auto-narrow t) t)
(t (member (howm-command) howm-auto-narrow)))
(howm-narrow-to-memo)))
;; (when (and (member (howm-command) howm-auto-narrow)
;; (not *howm-view-item-privilege*))
;;; select file for new memo by hand
(defun howm-create-interactively (&optional use-current-directory)
(interactive "P")
(find-file (read-file-name "Memo file: "
(if use-current-directory
nil
howm-directory)))
(goto-char (point-max))
(howm-create-here))
;;; next/previous memo
(defmacro howm-save-narrowing (&rest body)
(declare (indent 0))
`(let ((narrowp (howm-narrow-p)))
(when narrowp
(widen))
(unwind-protect
(progn
,@body)
(when narrowp
(howm-narrow-to-memo)))))
(defun howm-next-memo (n)
(interactive "p")
(howm-save-narrowing
(when (looking-at howm-view-title-regexp)
(setq n (+ n 1)))
(re-search-forward howm-view-title-regexp nil nil n)))
(defun howm-previous-memo (n)
(interactive "p")
(howm-save-narrowing
(when (not (looking-at howm-view-title-regexp))
(setq n (+ n 1)))
(re-search-backward howm-view-title-regexp nil nil n)))
(defun howm-first-memo ()
(interactive)
(howm-save-narrowing
(goto-char (point-min))))
(defun howm-last-memo ()
(interactive)
(howm-save-narrowing
(goto-char (point-max)))
(re-search-backward howm-view-title-regexp))
;;; random walk
(defvar howm-random-walk-buf nil "for internal use")
(defvar howm-random-walk-ro t "for internal use")
(defun howm-random-walk ()
(interactive)
(let ((orig-bufs (buffer-list))
(howm-history-file nil))
(while (let ((v (frame-visible-p (selected-frame))))
(and v (not (eq v 'icon))
(not (input-pending-p))))
(unwind-protect
(cond ((eq major-mode 'howm-view-summary-mode)
(howm-random-walk-summary))
(howm-mode
(howm-random-walk-text))
(t
(howm-list-all)
(howm-random-walk-summary)))
(mapc (lambda (b)
(when (and (not (member b orig-bufs))
(null (get-buffer-window b)))
(kill-buffer b)))
(buffer-list)))
(sit-for howm-random-walk-wait))))
(defun howm-random-walk-summary ()
(let ((n (length (riffle-item-list))))
(goto-char (point-min))
(forward-line (random n))
(howm-view-summary-check)
(sit-for howm-random-walk-wait)
(howm-view-summary-open)))
(defun howm-random-walk-text ()
(let* ((ks (howm-keyword-for-goto))
(k (nth (random (length ks)) ks))
(d (- (point-max) (point-min))))
(goto-char (+ (point-min) (random d)))
(if (search-forward k nil t)
(goto-char (match-beginning 0))
(search-backward k nil t))
(sit-for howm-random-walk-wait)
(howm-keyword-search k)))
;; named note
(defun howm-open-named-file ()
"Ask a file name and open it as howm note if it is under howm directory."
(interactive)
(let* ((item-dir (lambda (item) (file-name-directory (howm-item-name item))))
(dir (cond ((eq major-mode 'howm-view-summary-mode)
(funcall item-dir (howm-view-summary-current-item)))
((eq major-mode 'howm-view-contents-mode)
(funcall item-dir (howm-view-contents-current-item)))
(t
howm-directory)))
(fname (read-file-name "Howm file name: " dir)))
(find-file fname)
(if (file-exists-p fname)
(howm-set-mode)
(progn
(howm-insert-template "")
(howm-create-finish)))))
;; imitation of remember.el
;; http://www.emacswiki.org/cgi-bin/emacs-en/RememberMode
;; shamelessly copied from http://newartisans.com/johnw/Emacs/remember.el
;; (I cannot browse http://sacha.free.net.ph/notebook/emacs/dev today.)
(defvar howm-remember-wconf nil
"for internal use")
(defvar howm-remember-buffer-name "*howm-remember*")
(defvar howm-remember-mode-hook nil)
(let ((m (make-sparse-keymap)))
(define-key m "\C-c\C-c" 'howm-remember-submit)
(define-key m "\C-c\C-k" 'howm-remember-discard)
(howm-defvar-risky howm-remember-mode-map m))
(defun howm-remember ()
"Add text to new note in howm."
(interactive)
(setq howm-remember-wconf (current-window-configuration))
(switch-to-buffer-other-window (get-buffer-create howm-remember-buffer-name))
(howm-remember-mode)
(apply #'message
`("Remember (%s) or discard (%s)."
,@(mapcar (lambda (f)
(key-description
(where-is-internal f howm-remember-mode-map t)))
'(howm-remember-submit howm-remember-discard)))))
(defun howm-remember-mode ()
"Major mode for `howm-remember'.
\\{howm-remember-mode-map}"
(interactive)
(kill-all-local-variables)
(text-mode)
(use-local-map howm-remember-mode-map)
(setq major-mode 'howm-remember-mode
mode-name "HowmRemember")
(run-hooks 'howm-remember-mode-hook))
(defun howm-remember-submit ()
(interactive)
(save-excursion
(let* ((title (howm-remember-get-title)) ;; has side effect
(s (buffer-substring-no-properties (point-min) (point-max))))
(set-window-configuration howm-remember-wconf)
(howm-create-file-with-title title)
(insert (format howm-remember-insertion-format s))
(save-buffer)
(kill-buffer (current-buffer))))
(howm-remember-discard))
(defun howm-remember-get-title ()
(if (not howm-remember-first-line-to-title)
""
(progn
(goto-char (point-min))
(prog1
(buffer-substring-no-properties (point-min)
(line-end-position))
(forward-line 1)
(delete-region (point-min) (point))))))
(defun howm-remember-discard ()
(interactive)
(kill-buffer (current-buffer))
(set-window-configuration howm-remember-wconf))
;; Rename buffer
;;
;; You can rename howm buffers based on their titles.
;; Only buffer names in emacs are changed; file names are kept unchanged.
;;
;; Add the next lines to your .emacs if you like this feature.
;; (add-hook 'howm-mode-hook 'howm-mode-set-buffer-name)
;; (add-hook 'after-save-hook 'howm-mode-set-buffer-name)
;;
;; The original idea and code are given by Mielke-san (peter at exegenix.com).
;; http://lists.sourceforge.jp/mailman/archives/howm-eng/2006/000020.html
;; thx!
(defvar howm-buffer-name-limit 20)
(defvar howm-buffer-name-total-limit howm-buffer-name-limit)
(defvar howm-buffer-name-format "%s"
"Buffer name format for `howm-mode-set-buffer-name'.
For example, buffer name is _ABC_ if title is ABC and the value of
this variable is \"_%s_\".")
(defun howm-truncate-string (string limit &optional dots-str)
"Truncate STRING if it is longer than LIMIT.
For example, \"1234567...\" is returned if string is \"123456789012\"
and limit is 10.
When DOTS-STR is non-nil, it is used instead of \"...\"."
(let ((dots (or dots-str "...")))
(when (> (length dots) limit)
(setq dots (substring dots 0 limit)))
(if (> (length string) limit)
(concat (substring string 0 (- limit (length dots)))
dots)
string)))
(defun howm-set-buffer-name-from-title (checker title-regexp title-regexp-pos)
"Set the buffer name to the title(s) of the file."
(when (funcall checker)
(save-excursion
(goto-char 0)
(let ((titles nil))
(while (re-search-forward title-regexp nil t)
(setq titles
(cons (match-string-no-properties title-regexp-pos)
titles)))
(let ((name0 (mapconcat
(lambda (s)
(howm-truncate-string s howm-buffer-name-limit))
(reverse (cl-remove-if (lambda (s) (string= s ""))
titles))
"/")))
(when (not (string= name0 "")) ;; exclude "no title" case
(let ((name (format howm-buffer-name-format
(howm-truncate-string
name0
howm-buffer-name-total-limit))))
(rename-buffer name t))))))))
(defun howm-mode-set-buffer-name ()
(howm-set-buffer-name-from-title (lambda ()
(and howm-mode (buffer-file-name)))
howm-view-title-regexp
howm-view-title-regexp-pos))
;; Automatic theming
;; https://github.com/kaorahi/howm/issues/34
(defun howm-auto-theme (&rest _)
;; copied from https://github.com/kaorahi/howm/issues/34#issue-2815035530
"Adjust to the current theme by borrowing the Org-mode colors."
(when custom-enabled-themes
(custom-set-faces
'(action-lock-face ((t :inherit button)))
'(howm-mode-keyword-face ((t :inherit org-link)))
'(howm-mode-ref-face ((t :inherit org-link)))
'(howm-mode-title-face ((t :inherit org-level-1)))
'(howm-mode-wiki-face ((t :inherit org-link)))
'(howm-reminder-deadline-face ((t :inherit org-scheduled-today)))
'(howm-reminder-late-deadline-face ((t :inherit bold :inherit org-imminent-deadline)))
'(howm-reminder-defer-face ((t :inherit org-scheduled)))
'(howm-reminder-scheduled-face ((t :inherit org-scheduled)))
'(howm-reminder-done-face ((t :inherit org-done)))
'(howm-reminder-todo-face ((t :inherit org-todo)))
'(howm-reminder-normal-face ((t :inherit org-default)))
'(howm-reminder-today-face ((t :inherit bold :inherit org-scheduled-today)))
'(howm-reminder-tomorrow-face ((t :inherit bold :inherit org-scheduled)))
'(howm-simulate-todo-mode-line-face ((t :inherit bold)))
'(howm-view-empty-face ((t :inherit shadow)))
'(howm-view-hilit-face ((t :inherit isearch)))
'(howm-view-name-face ((t :inherit org-document-info))))
(apply #'custom-set-faces howm-auto-theme-custom-entries)))
(when howm-follow-theme
(add-hook 'enable-theme-functions #'howm-auto-theme)
(howm-auto-theme))
;; memoize: used in howm-bayesian-set
(defun howm-memoize-put (fname value)
(put fname 'howm-memoize value))
(defun howm-memoize-get (fname)
(get fname 'howm-memoize))
(defun howm-memoize-call (fname func args)
(let* ((p (assoc args (howm-memoize-get fname))))
(if p
(progn
;; (message "hit %s" p)
(cdr p))
(let ((r (apply func args)))
;; We need to get it again because func can change memory.
(howm-memoize-put fname `((,args . ,r) ,@(howm-memoize-get fname)))
r))))
(defun howm-memoize-reset (fname)
(howm-memoize-put fname nil))
(defmacro howm-defun-memoize (fname args &rest body)
(declare (indent 2))
`(progn
(howm-memoize-reset ',fname)
(defun ,fname ,args
"Function generated by `howm-defun-memoize'"
(howm-memoize-call ',fname (lambda ,args ,@body) (list ,@args)))))
;; ;; test
;; (howm-memoize-reset 'fib)
;; (howm-defun-memoize fib (n) (if (<= n 1) 1 (+ (fib (- n 1)) (fib (- n 2)))))
;; (fib 5)
;; (howm-memoize-get 'fib)
;; Bayesian set
;;
;; "M-x howm-bayesian-set RET lisp scheme haskell RET" to estimate
;; related keywords with lisp, scheme, and haskell.
;; If you are lucky, you may find ruby, elisp, gauche, etc.
;; in estimated candidates.
;;
;; (ref.)
;; Zoubin Ghahramani and Katherine Heller: "Bayesian Sets",
;; Advances in Neural Information Processing Systems,
;; Vol. 18, pp. 435-442, MIT Press, 2006.
;; http://books.nips.cc/nips18.html
;; http://books.nips.cc/papers/files/nips18/NIPS2005_0712.pdf
(defun howm-bset-nodup (f &rest args)
(cl-remove-duplicates (apply f args) :test #'equal))
(defun howm-bset-mapcar (func lis)
(howm-bset-nodup #'mapcar func lis))
(defun howm-bset-mapcan (func lis)
(howm-bset-nodup (lambda (f z) (apply #'append (mapcar f z)))
func lis))
(defun howm-bset-message (&rest args)
(let (message-log-max) ;; prevent it from being logged
(apply #'message args)))
(defun howm-bset-matched-files (query)
;; (howm-bset-message "Finding files for query (%s)..." query)
(howm-bset-mapcar #'howm-item-name
(howm-view-search-folder-items query (howm-folder)
nil t)))
(howm-defun-memoize howm-bset-keywords-in-file* (file keyword-list)
;; (howm-bset-message "Finding keywords in file (%s)..." file)
(with-temp-buffer
(insert-file-contents file)
(howm-keyword-for-goto keyword-list)))
(defun howm-bset-keywords-in-file (file)
(howm-bset-keywords-in-file* file nil))
(defun howm-bset-candidate-keywords (query-list)
;; (howm-bset-message "Collecting keywords...")
(let ((files (howm-bset-mapcan #'howm-bset-matched-files
query-list)))
(howm-bset-mapcan (lambda (f)
(howm-bset-message "Collecting keywords in file (%s)..."
f)
(howm-bset-keywords-in-file f))
files)))
(howm-defun-memoize howm-bset-file-score (file query-list
coef number-of-all-keywords)
;; (howm-bset-message "Scoring file (%s)..." file)
(let* ((m (/ (length (howm-bset-keywords-in-file file))
(float number-of-all-keywords)))
(a (* coef m))
(b (* coef (- 1 m)))
(s (length (howm-bset-keywords-in-file* file query-list)))
(a2 (+ a s))
(b2 (+ b (- (length query-list) s))))
;; log{(a2/a) * (b/b2)}
(- (- (log a2) (log a)) (- (log b2) (log b)))))
(howm-defun-memoize howm-bset-keyword-score (keyword query-list
coef
number-of-all-keywords)
(howm-bset-message "Scoring keyword (%s)..." keyword)
(apply #'+
(mapcar (lambda (file)
(howm-bset-file-score file query-list coef
number-of-all-keywords))
(howm-bset-matched-files keyword))))
(defun howm-bset-reset ()
(mapc #'howm-memoize-reset '(howm-bset-file-score
howm-bset-keyword-score
howm-bset-keywords-in-file*)))
(defun howm-bset (query-list)
(howm-bset-reset)
(unwind-protect
(let ((n (length (howm-keyword-list)))
(c 2.0)) ;; heuristic value
(sort (copy-sequence (howm-bset-candidate-keywords query-list))
(lambda (k1 k2)
(apply #'>
(mapcar (lambda (k)
(howm-bset-keyword-score k query-list c n))
(list k1 k2))))))
(howm-bset-reset)))
(defun howm-bayesian-set (query-str)
(interactive "sQueries: ")
(switch-to-buffer (get-buffer-create "*howm-bayesian-set*"))
(howm-rewrite-read-only-buffer
(insert (mapconcat #'identity
(howm-bset (split-string query-str))
"\n"))
(howm-mode 1))
(goto-char (point-min))
(howm-bset-message "Done."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Fellowship
;; xemacs: add-to-list doesn't have APPEND
;; (add-to-list 'auto-mode-alist '("\\.howm$" . text-mode) t)
(setq auto-mode-alist (append auto-mode-alist
(list '("\\.howm\\'" . text-mode))))
;; xyzzy doesn't have eval-after-load.
;; It will be useless anyway.
(when (not (fboundp 'eval-after-load))
(defun eval-after-load (file form)
nil))
;; xemacs canna doesn't use minor-mode. [2004-01-30]
(defvar action-lock-mode-before-canna nil)
(make-variable-buffer-local 'action-lock-mode-before-canna)
(define-advice canna:enter-canna-mode (:around (orig-fun &rest args) action-lock-fix)
(setq action-lock-mode-before-canna action-lock-mode)
(setq action-lock-mode nil)
(apply orig-fun args))
(define-advice canna:quit-canna-mode (:around (orig-fun &rest args) action-lock-fix)
(setq action-lock-mode action-lock-mode-before-canna)
(apply orig-fun args))
;; for mcomplete.el [2003-12-17]
;; http://homepage1.nifty.com/bmonkey/emacs/elisp/mcomplete.el
;; error when this-command is (lambda () (interactive) ...)
(define-advice mcomplete-p (:around (orig-fun &rest args) symbol-check)
(and (symbolp this-command)
(apply orig-fun args)))
;; for auto-save-buffers.el [2004-01-10]
;; http://www.namazu.org/~satoru/auto-save/
;; http://homepage3.nifty.com/oatu/emacs/misc.html
;; http://www.bookshelf.jp/cgi-bin/goto.cgi?file=meadow&node=auto%20save
(defvar howm-auto-save-buffers-disposed nil)
(howm-dont-warn-free-variable auto-save-buffers-regexp)
(howm-dont-warn-free-variable auto-save-reject-buffers-regexp)
(defun howm-auto-save-buffers-p ()
(let ((f (howm-file-name)))
(and (if (boundp 'auto-save-buffers-regexp)
(string-match auto-save-buffers-regexp f)
nil)
(if (boundp 'auto-save-reject-buffers-regexp)
(not (string-match auto-save-reject-buffers-regexp f))
t))))
(defun howm-auto-save-buffers-dispose ()
(setq howm-menu-refresh-after-save nil)
(setq howm-refresh-after-save nil)
(setq howm-auto-save-buffers-disposed t)
(message "howm: Automatic refresh is disabled when auto-save-buffers is called."))
(define-advice auto-save-buffers (:around (orig-fun &rest args) howm-dispose)
(if (or howm-auto-save-buffers-disposed
(not (howm-auto-save-buffers-p)))
(apply orig-fun args)
(howm-auto-save-buffers-dispose)))
;; howm on ChangeLog Memo
(defun howm-setup-change-log ()
(setq howm-keyword-format "\t* %s")
(setq howm-keyword-regexp "^\t\\(\\*\\)[ \t]+\\([^:\r\n]+\\)")
(setq howm-keyword-regexp-hilit-pos 1) ;; for "related keywords"
(setq howm-keyword-regexp-pos 2)
(setq howm-view-title-regexp "^$")
(setq howm-view-title-regexp-pos 0)
(setq howm-view-title-regexp-grep 'sorry-not-yet)
(setq howm-use-color nil)
(setq howm-menu-top nil)
(define-advice howm-exclude-p (:around (orig-fun filename) change-log)
(not (cl-find-if (lambda (dir)
(string= (howm-file-name)
(file-relative-name filename dir)))
(howm-search-path))))
(define-advice howm-create-file-with-title (:around (orig-fun title) change-log)
(howm-create-file)
(when (string-match howm-keyword-regexp title)
(setq title (match-string-no-properties howm-keyword-regexp-pos
title)))
(insert title))
(define-advice howm-create-file
(:around (orig-fun title &optional keep-cursor-p) change-log)
(let* ((default (howm-file-name))
(file (expand-file-name default howm-directory))
(dir (file-name-directory file))
(buffer-file-name file)) ;; don't insert file name
(make-directory dir t)
(add-change-log-entry nil file)))
(add-hook 'change-log-mode-hook 'howm-mode)
)
;; howm with ChangeLog Memo
(defvar howm-change-log-file-name "ChangeLog")
(defun howm-to-change-log ()
(interactive)
(let* ((title (howm-title-at-current-point))
(file (expand-file-name howm-change-log-file-name howm-directory))
;; cheat add-change-log-entry
(buffer-file-name title)
(default-directory howm-directory))
(add-change-log-entry nil file)))
(defun howm-from-change-log ()
(interactive)
(let* ((title-regexp "^\t[*][ \t]*\\(.*\\)$")
(title-regexp-pos 1)
(title (howm-title-at-current-point nil
title-regexp title-regexp-pos)))
(howm-create-file-with-title title)))
(define-minor-mode howm-org-font-lock-minor-mode
;; copied from https://github.com/kaorahi/howm/issues/29#issuecomment-2625076294
;; (fixed version of https://github.com/kaorahi/howm/issues/29#issuecomment-2571306675)
"Minor mode to apply org-mode font locking to a buffer."
:lighter " orgFL"
(if howm-org-font-lock-minor-mode
(progn
;; [2025-05-25]
;; Workaround for the error "void-variable org-element-citation-prefix-re".
;; Actually, just (require 'org-element) is enough,
;; but for future robustness, we initialize org-mode entirely for now.
;; https://github.com/kaorahi/howm/issues/65
(with-temp-buffer (org-mode)) ;; workaround (#65)
(require 'org)
(org-set-font-lock-defaults)
(setq-local font-lock-keywords nil)
;; restore howm's font-lock (#65)
(cond ((eq major-mode 'howm-view-summary-mode)
(howm-view-summary-mode-body))
((eq major-mode 'howm-view-contents-mode)
(howm-view-contents-mode-body)))
(font-lock-add-keywords nil org-font-lock-keywords))
(font-lock-remove-keywords nil org-font-lock-keywords))
(font-lock-flush)
(font-lock-ensure))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Bug Report
;; Japanese is assumed at now.
(defun howm-test ()
"Show bug report template for howm."
(howm-set-lang)
(howm-bug-report))
(defun howm-set-lang ()
(set-language-environment "Japanese")
(set-default-coding-systems 'utf-8)
(set-buffer-file-coding-system 'utf-8-unix)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
)
(defun howm-compiled-p ()
(byte-code-function-p (symbol-function 'howm-compiled-p)))
(defun howm-make-file-p ()
(eval-when-compile
(getenv "HOWM_MAKE")))
(defun howm-test-p ()
(getenv "HOWM_TEST"))
(defun howm-bug-report (&optional show-sym)
(interactive "P")
(let ((report-buf (format-time-string "howm-bug-report-%Y%m%d-%H%M%S"))
(template (expand-file-name "sample/bug-report.txt" howm-directory)))
(switch-to-buffer report-buf)
(when (not (howm-buffer-empty-p))
(error "Buffer %s exists (and not empty)." report-buf))
(if (file-exists-p template)
(insert-file-contents template)
(insert "Please copy the following text to your bug report.\n\n"))
(goto-char (point-max))
(mapc (lambda (sv)
(insert (format "%s: %s\n" (car sv) (cdr sv))))
`(
("howm" . ,(howm-version-long))
,@(honest-report-version-assoc)
))
(when (eq howm-view-use-grep t)
(insert
(format "grep: %s - %s\n"
(cl-mapcan (lambda (d)
(let ((f (expand-file-name
(howm-grep-command) d)))
(and (file-executable-p f)
(list f))))
exec-path)
(car (howm-call-process "grep" '("--version"))))))
(when show-sym
(goto-char (point-max))
(insert "\n(List of variables)\n")
(insert (howm-symbols-desc)))
(goto-char (point-min))))
(defun howm-version-long ()
(format "%s (compile: %s, make: %s, test: %s)"
howm-version
(howm-compiled-p)
(howm-make-file-p)
(howm-test-p)))
(defun howm-symbols-desc (&optional max-desc-len)
(when (null max-desc-len)
(setq max-desc-len 50))
(apply #'concat
(mapcar (lambda (sym)
(when (boundp sym)
(let ((v (format "%S" (symbol-value sym))))
(when (and (numberp max-desc-len)
(< max-desc-len (length v)))
(setq v
(let* ((tl (/ max-desc-len 4))
(hd (- max-desc-len tl)))
(concat (substring v 0 hd)
" ... "
(substring v (- tl))))))
(format "%s: %s\n" (symbol-name sym) v))))
(sort (howm-symbols)
(lambda (x y)
(string< (symbol-name x) (symbol-name y)))))))
(defvar howm-required-features '(
cheat-font-lock
action-lock
riffle
gfunc
illusion
honest-report
)
"List of features which are required for, and distributed with, howm itself.")
(defun howm-prefix-names ()
(mapcar #'symbol-name (cons 'howm howm-required-features)))
(defun howm-symbols ()
(let* ((reg (format "^%s" (regexp-opt (howm-prefix-names) t)))
(a nil))
(mapatoms (lambda (s)
(when (string-match reg (symbol-name s))
(setq a (cons s a)))))
a))
(defun howm-elp ()
(interactive)
(mapcar #'elp-instrument-package
(howm-prefix-names)))
(defvar howm-sample-directory (expand-file-name "sample/")
"for internal use")
(defun howm-bug-shot ()
(interactive)
(let* ((version (concat "[howm] " (howm-version-long)))
(init (and (howm-test-p)
(let ((f (expand-file-name "dot.emacs"
howm-sample-directory)))
(and (file-readable-p f)
(with-temp-buffer
(insert-file-contents f)
(buffer-substring-no-properties (point-min)
(point-max)))))))
(header (if init
(concat version "\n\n[init]\n" init)
version))
(footer "--- your comment ---"))
(honest-report header footer)
(message "Please copy this buffer to your report.")))
;;; howm-misc.el ends here
|