Skip to content

Commit

Permalink
bug: fix melpazoid errors
Browse files Browse the repository at this point in the history
  • Loading branch information
seokbeomKim committed Dec 11, 2024
1 parent 3577660 commit 6c887d9
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions org-linenote.el
Original file line number Diff line number Diff line change
Expand Up @@ -87,23 +87,10 @@ Set to nil to disable the fringe."

(defcustom org-linenote-fringe-side 'left-fringe
"Set the fringe position.
Either 'left-fringe or'right-fringe is available."
Either \='left-fringe or \='right-fringe is available."
:type 'symbol
:group 'org-linenote)

(defcustom org-linenote-fringe-bitmap
'("XX......"
"XX......"
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX......"
"XX......")
"Define a fringe bitmap to indicate notes."
:type '(repeat string)
:group 'org-linenote)

(defface org-linenote-highlight-style '((t :background "medium turquoise" :underline nil))
"Highlight style for the notes.")

Expand All @@ -119,6 +106,18 @@ Either 'left-fringe or'right-fringe is available."
(defvar org-linenote--buffers nil
"The target buffer to ensure line tracking.")

;;;###autoload
(defvar org-linenote-fringe-bitmap
'("XX......"
"XX......"
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX......"
"XX......")
"Define a fringe bitmap to indicate notes.")

(defvar-local org-linenote--overlays nil
"Overlays in a local buffer.")

Expand Down

0 comments on commit 6c887d9

Please sign in to comment.