diff options
author | Vasilij Schneidermann <mail@vasilij.de> | 2019-08-21 21:19:44 +0200 |
---|---|---|
committer | Vasilij Schneidermann <mail@vasilij.de> | 2019-08-21 21:20:33 +0200 |
commit | ecbdecc927a3b3f7e0927d225e6e6464c244c2ae (patch) | |
tree | c29474f70de61117938999069602a81e6b7ee94d /README.rst | |
parent | 5184fbb1f3b3540be58a28f6dd469ff212ccc9bd (diff) |
Support not filling text at all
Closes #57
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -82,13 +82,13 @@ By default text is filled by the window width. You can customize (setq nov-text-width 80) -It's also possible to set it to a huge number to inhibit text filling, -this can be used in combination with ``visual-line-mode`` and packages -such as ``visual-fill-column`` to implement more flexible filling: +It's also possible to set it to ``t`` to inhibit text filling, this +can be used in combination with ``visual-line-mode`` and packages such +as ``visual-fill-column`` to implement more flexible filling: .. code:: elisp - (setq nov-text-width most-positive-fixnum) + (setq nov-text-width t) (setq visual-fill-column-center-text t) (add-hook 'nov-mode-hook 'visual-line-mode) (add-hook 'nov-mode-hook 'visual-fill-column-mode) @@ -109,7 +109,7 @@ Here's an advanced example of text justification with the `justify-kp .. code:: elisp (require 'justify-kp) - (setq nov-text-width most-positive-fixnum) + (setq nov-text-width t) (defun my-nov-window-configuration-change-hook () (my-nov-post-html-render-hook) |