commit - 578d0782c49366a9f5d0429fa49e978edc1170bf
commit + dbd9052ea97c36c0f687275fbeb870809be68cc4
blob - 2f5aa1239ba4d7a0a6bb811d72f8cf073190d756
blob + 9c59739b3c0843df0788bb339f594f672d4af0b5
--- README.md
+++ README.md
Quickly display your quick side notes in quick side window.
Side notes live in a plain text file, called `notes.txt` by default, in
-the current directory or any higher directory in the current hierarchy.
-i.e. When locating notes, we first look for a `notes.txt` file in the
-current directory, then one directory up, then two directories up, and
-so forth.
+the current directory or any parent directory (i.e. when locating notes,
+we first look in the current directory, then one directory up, then two
+directories up, and so forth.)
Side notes are displayed in a side window with the command
`side-notes-toggle-notes`.
display a separate notes file in a lower side window when the command
`side-notes-toggle-notes` is prefixed with an argument (`C-u`).
-By default, having a notes file in any parent directory will locate that
+By default a notes file found in any parent directory will open that
file rather than visit a non-existing file in the current directory, but
you can override this by prefixing `side-notes-toggle-notes` with...
-- `C-u C-u` to force visiting `side-notes-file` within the current
+ - `C-u C-u` to force visiting `side-notes-file` within the current
directory.
-- `C-u C-u C-u` to force visiting `side-notes-secondary-file` within
+ - `C-u C-u C-u` to force visiting `side-notes-secondary-file` within
the current directory.
-Of course, you can use Markdown or Org Mode formatting by changing the
+Of course, you can use Markdown or Org Mode or whatever by changing the
file extensions of `side-notes-file` and/or `side-notes-secondary-file`.
For more information on how to change the way the side window is
-displayed, see `(info "(elisp) Side Windows")`
+displayed, see `(info "(elisp) Side Windows")`.
Installation
(define-key (current-global-map) (kbd "M-s n") #'side-notes-toggle-notes)
+
+Bugs and Feature Requests
+-------------------------
+
+Send me an email (address in the package header). For bugs, please
+ensure you can reproduce with:
+
+ $ emacs -Q -l side-notes.el
+
+Known issues are tracked with `FIXME` comments in the source.
+
+
[1]: https://stable.melpa.org/#/side-notes
[2]: https://melpa.org/#/side-notes
blob - b5533e50a3e7b2a33f28fb2dce95a88d996bc851
blob + f07b624fd150ba38d40bf0949e597eead0089928
--- side-notes.el
+++ side-notes.el
;; Quickly display your quick side notes in quick side window.
;; Side notes live in a plain text file, called notes.txt by default, in
-;; the current directory or any higher directory in the current hierarchy.
-;; i.e. When locating notes, we first look for a notes.txt file in the
-;; current directory, then one directory up, then two directories up, and
-;; so forth.
+;; the current directory or any parent directory (i.e. when locating notes,
+;; we first look in the current directory, then one directory up, then two
+;; directories up, and so forth.)
;; Side notes are displayed in a side window with the command
;; side-notes-toggle-notes.
;; display a separate notes file in a lower side window when the command
;; side-notes-toggle-notes is prefixed with an argument (C-u).
-;; By default, having a notes file in any parent directory will locate that
+;; By default a notes file found in any parent directory will open that
;; file rather than visit a non-existing file in the current directory, but
;; you can override this by prefixing side-notes-toggle-notes with...
-;; - C-u C-u to force visiting side-notes-file within the current
+;; - C-u C-u to force visiting side-notes-file within the current
;; directory.
-;; - C-u C-u C-u to force visiting side-notes-secondary-file within
+;; - C-u C-u C-u to force visiting side-notes-secondary-file within
;; the current directory.
-;; Of course, you can use Markdown or Org Mode formatting by changing the
+;; Of course, you can use Markdown or Org Mode or whatever by changing the
;; file extensions of side-notes-file and/or side-notes-secondary-file.
;; For more information on how to change the way the side window is
-;; displayed, see (info "(elisp) Side Windows")
+;; displayed, see (info "(elisp) Side Windows").
;; Installation
;; (define-key (current-global-map) (kbd "M-s n") #'side-notes-toggle-notes)
+
+;; Bugs and Feature Requests
+;; -------------------------
+
+;; Send me an email (address in the package header). For bugs, please
+;; ensure you can reproduce with:
+
+;; $ emacs -Q -l side-notes.el
+
+;; Known issues are tracked with FIXME comments in the source.
+
+
;; [1]: https://stable.melpa.org/#/side-notes
;; [2]: https://melpa.org/#/side-notes