neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 5f81c369344108b4bdcc2d1460ef25b49d9b463f
parent ea2998fec90ce4666b9b85b2d1a7458e717e2a5a
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun,  1 Sep 2024 06:28:09 +0800

vim-patch:7c8bbc6: runtime(doc): use mkdir -p to save a command

closes: vim/vim#15599

https://github.com/vim/vim/commit/7c8bbc6d28387e5c73f049663ace0c3829f9e128

Co-authored-by: Ughur Alakbarov <58857108+ugur-a@users.noreply.github.com>

Diffstat:
Mruntime/doc/syntax.txt | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt @@ -152,8 +152,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 ~/.config/nvim/after - mkdir ~/.config/nvim/after/syntax + mkdir -p ~/.config/nvim/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: >