summaryrefslogtreecommitdiff
path: root/runtime/doc/usr_25.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-29 23:12:46 +0200
committerBram Moolenaar <Bram@vim.org>2016-03-29 23:12:46 +0200
commit7db8f6f4f85e5d0526d23107b2a5e2334dc23354 (patch)
tree13adf1686ec5472781d3f858c9f7c64f3b1a8d1d /runtime/doc/usr_25.txt
parent7fed5c18f8577b75404b80d8b9a9907b1bbd27e4 (diff)
downloadvim-git-7db8f6f4f85e5d0526d23107b2a5e2334dc23354.tar.gz
Updated runtime files.
Diffstat (limited to 'runtime/doc/usr_25.txt')
-rw-r--r--runtime/doc/usr_25.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/runtime/doc/usr_25.txt b/runtime/doc/usr_25.txt
index 23d76a8b0..24420353d 100644
--- a/runtime/doc/usr_25.txt
+++ b/runtime/doc/usr_25.txt
@@ -1,4 +1,4 @@
-*usr_25.txt* For Vim version 7.4. Last change: 2014 Oct 29
+*usr_25.txt* For Vim version 7.4. Last change: 2016 Mar 28
VIM USER MANUAL - by Bram Moolenaar
@@ -196,12 +196,16 @@ Vim has no built-in way of justifying text. However, there is a neat macro
package that does the job. To use this package, execute the following
command: >
- :runtime macros/justify.vim
+ :packadd justify
+
+Or put this line in your |vimrc|: >
+
+ packadd! justify
This Vim script file defines a new visual command "_j". To justify a block of
text, highlight the text in Visual mode and then execute "_j".
Look in the file for more explanations. To go there, do "gf" on this name:
-$VIMRUNTIME/macros/justify.vim.
+$VIMRUNTIME/pack/dist/opt/justify/plugin/justify.vim.
An alternative is to filter the text through an external program. Example: >