Feat: convert options if it is table type in lua (#220)

* support custom list type commands

* update  command usage
This commit is contained in:
Raphael
2020-11-03 21:04:55 +08:00
committed by GitHub
parent 051aefdb8c
commit 1f3110bf54
2 changed files with 10 additions and 2 deletions

View File

@@ -511,7 +511,9 @@ Also you can use the `Telescope` command with options in vim command line. like
:Telescope find_files
" Command with options
:Telescope find_files prompt_prefix=🔍
" If option is table type in lua code ,you can use `,` connect each command string eg:
" find_command,vimgrep_arguments they are both table type. so config it in commandline like
:Telecope find_files find_command=rg,--ignore,--hidden,--files prompt_prefix=🔍
```