Overview
Comment: | Add sbbs-recenter-to-top variable |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0376b0426cbd2a98087a4231120aff4e |
User & Date: | philip@warpmail.net on 2020-03-07 20:52:08 |
Other Links: | branch diff | manifest | tags |
Context
2020-03-17
| ||
11:37 | disabled paragraph filling while composing check-in: 0cea683e16 user: philip@warpmail.net tags: master, trunk | |
2020-03-07
| ||
20:52 | Add sbbs-recenter-to-top variable check-in: 0376b0426c user: philip@warpmail.net tags: master, trunk | |
20:02 | reworked link handling check-in: 9ba1b42fbc user: philip@warpmail.net tags: master, trunk | |
Changes
Modified sbbs.el from [7633d1775c] to [a964287a4e].
︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | + + + + | :type '(repeat (list (string :tag "Board Domain") (repeat (string :tag "Board Name")) (boolean :tag "Use TLS?")))) (defcustom sbbs-jump-to-link t "Jump to first link after narrowing posts." :type 'boolean) (defcustom sbbs-recenter-to-top t "Move point to top of frame when moving through posts." :type 'boolean) (defface sbbs--spoiler-face '((((background light)) :background "black" :foreground "black") (((background dark)) :background "white" :foreground "white")) "Face for spoiler text in threads.") (defface sbbs--code-face |
︙ | |||
476 477 478 479 480 481 482 | 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 | - + + + - + + + | (dotimes (_ arg) (end-of-line) (catch 'found (while (search-forward-regexp "^#" nil t) (when (and (eq 'highlight (get-text-property (point) 'face)) (not (get-text-property (point) 'invisible))) (throw 'found t))))) |
︙ |