]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(doc): use mkdir -p to save a command
authorUghur Alakbarov <58857108+ugur-a@users.noreply.github.com>
Sat, 31 Aug 2024 14:12:39 +0000 (16:12 +0200)
committerChristian Brabandt <cb@256bit.org>
Sat, 31 Aug 2024 14:12:39 +0000 (16:12 +0200)
closes: #15599

Signed-off-by: Christian Brabandt <cb@256bit.org>
Signed-off-by: Ughur Alakbarov <58857108+ugur-a@users.noreply.github.com>
runtime/doc/syntax.txt

index 5d67ba62290fec3a136ca591c33bef731f134733..910aee5a19fac93825c033e59ec6ee716a05df30 100644 (file)
@@ -1,4 +1,4 @@
-*syntax.txt*   For Vim version 9.1.  Last change: 2024 Aug 26
+*syntax.txt*   For Vim version 9.1.  Last change: 2024 Aug 31
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -179,8 +179,7 @@ add a few items or change the highlighting, follow these steps:
 1. Create your user directory from 'runtimepath', see above.
 
 2. Create a directory in there called "after/syntax".  For Unix: >
-       mkdir ~/.vim/after
-       mkdir ~/.vim/after/syntax
+       mkdir -p ~/.vim/after/syntax
 
 3. Write a Vim script that contains the commands you want to use.  For
    example, to change the colors for the C syntax: >