sbbs.el

Check-in [e70b45d979]
Login
Overview
Comment:Disable recenter-to-top by default
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: e70b45d979b7a0d323f2c05394cf597c1cfa3fa6b257198989a1866d289c1770
User & Date: zge on 2021-05-29 12:45:26
Other Links: branch diff | manifest | tags
Context
2021-05-29
12:45
Disable open-at-last-post by default check-in: 918ba0640d user: zge tags: master, trunk
12:45
Disable recenter-to-top by default check-in: e70b45d979 user: zge tags: master, trunk
12:45
Don't kill random buffer after parsing response check-in: ba466181bd user: zge tags: master, trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Modified sbbs.el from [d697b54718] to [bf592c7f3b].

51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
                 (cons (string :tag "Board Domain")
                       (string :tag "Board Name"))))

(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)

(defcustom sbbs-open-at-last-post t
  "Jump to last post in a thread when opening a thread."
  :type 'boolean)








|







51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
                 (cons (string :tag "Board Domain")
                       (string :tag "Board Name"))))

(defcustom sbbs-jump-to-link t
  "Jump to first link after narrowing posts."
  :type 'boolean)

(defcustom sbbs-recenter-to-top nil
  "Move point to top of frame when moving through posts."
  :type 'boolean)

(defcustom sbbs-open-at-last-post t
  "Jump to last post in a thread when opening a thread."
  :type 'boolean)