diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-20 00:18:27 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-20 00:18:27 +0900 |
commit | 0e71903b66fdf01d0386ba1b653174dfcec7f21c (patch) | |
tree | ae9f1f38e8b902a5cfe6cd09692025d77d03fce8 /schema.json | |
parent | e55fa57320b284eb38392a5e57b2edee27d966a5 (diff) | |
download | vim-lsp-settings-0e71903b66fdf01d0386ba1b653174dfcec7f21c.tar.gz vim-lsp-settings-0e71903b66fdf01d0386ba1b653174dfcec7f21c.tar.bz2 vim-lsp-settings-0e71903b66fdf01d0386ba1b653174dfcec7f21c.zip |
Fix root_uri_patterns
Diffstat (limited to 'schema.json')
-rw-r--r-- | schema.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/schema.json b/schema.json index ab23b42..fa36bac 100644 --- a/schema.json +++ b/schema.json @@ -32,7 +32,16 @@ }, "type": "array" }, - "vim-plugin": { + "root_uri_patterns": { + "default": [], + "description": "define patterns with file or directory names for finding root_uri", + "items": { + "description": "file or directory name", + "type": "string" + }, + "type": "array" + }, + "vim_plugin": { "additionalProperties": false, "default": {}, "description": "define suggestion for vim-plugin", |