branch: externals/valign
commit 5c5a7a7b81cce4ebe2ab8e90859b2b544baa999a
Author: Will B Chang <[email protected]>
Commit: Yuan Fu <[email protected]>
* README.org: Fix typo.
---
README.org | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.org b/README.org
index e443389..2d391a3 100644
--- a/README.org
+++ b/README.org
@@ -2,6 +2,7 @@
This package provides visual alignment for Org and Markdown tables on GUI
Emacs. It can properly align tables containing variable-pitch font, CJK
characters and images. Meanwhile, the text-based alignment generated by Org
mode (or Markdown mode) is left untouched.
+
To use this package, load it and add ~valign-mode~ to ~org-mode-hook~ or
~markdown-mode-hook~:
#+begin_src emacs-lisp
(add-hook ’org-mode-hook #’valign-mode)
@@ -11,7 +12,7 @@ To use this package, load it and add ~valign-mode~ to
~org-mode-hook~ or ~markdo
Know problems:
- Customizing ~org-table~ face seems to mess up the separator (it will
disappear).
-- ~org-ident~ breaks the alignment. It uses line-prefix, and we don’t support
it right now.
+- ~org-indent~ breaks the alignment. It uses line-prefix, and we don’t support
it right now.
- Hidden links in markdown still occupy the full length of the link, because
it uses character composition, which we don’t support now.
- Editing large tables (≥100 lines) is a bit laggy.
@@ -25,4 +26,4 @@ Set ~valign-separator-row-style~ to ~single-column~:
[[./single-column.png]]
* If function advice makes you itch
-~valign-mode~ adds advices and don’t remove them even if you close
~valign-mode~ because function advice is global and ~valign-mode~ is local. If
you want to remove the advices, use ~valign-remove-advice~. If you run this
while some buffer still has ~valign-mode~ on, they break. So there is no point
running it, really. Just accept it.
+~valign-mode~ adds advice and doesn’t remove them even if you close
~valign-mode~ because function advice is global and ~valign-mode~ is local. If
you want to remove the advice, use ~valign-remove-advice~. If you run this
while some buffer still has ~valign-mode~ on, they break. So there is no point
running it, really. Just accept it.