From 9a85b5950e1c57176a4d83821ca76e3bac6303c1 Mon Sep 17 00:00:00 2001 From: timsu92 <33785401+timsu92@users.noreply.github.com> Date: Sun, 28 Aug 2022 16:22:31 +0800 Subject: [PATCH] docs(readme): fix conflict with NERDTree --- README.md | 1 + README_zh.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 19ef974..2bcdd28 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ let g:rainbow_conf = { \ 'parentheses': ['start=/{/ end=/}/ fold contains=@colorableGroup'], "[vim css color](https://github.com/ap/vim-css-color) compatibility \ }, \ 'css': 0, "disable this plugin for css files +\ 'nerdtree': 0, "rainbow is conflicting with NERDTree, creating extra parentheses \ } \} ``` diff --git a/README_zh.md b/README_zh.md index a5c7d86..6bb24ac 100644 --- a/README_zh.md +++ b/README_zh.md @@ -85,6 +85,7 @@ let g:rainbow_active = 1 "0 if you want to enable it later via :RainbowToggle \ 'parentheses': ['start=/\v\<((area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)[ >])@!\z([-_:a-zA-Z0-9]+)(\s+[-_:a-zA-Z0-9]+(\=("[^"]*"|'."'".'[^'."'".']*'."'".'|[^ '."'".'"><=`]*))?)*\>/ end=## fold'], \ }, \ 'css': 0, + \ 'nerdtree': 0, "NERDTree與Rainbow會衝突,產生多餘的括號 \ } \} ```