rewrite command of telescope (#197)

* rewrite command of telescope

* add complete support

* add comment

* rewrite get builtin list

* Update README.md

* use vim.tbl_keys function

* rewrite complete-list
This commit is contained in:
Raphael
2020-11-02 00:08:54 +08:00
committed by GitHub
parent 37c4f1b355
commit 54ef9d90d5
2 changed files with 33 additions and 21 deletions

View File

@@ -485,6 +485,18 @@ Picker:new{
As an example, you could pipe your inputs into fzf, and then it can sort them for you.
### Command
Also you can use the `Telescope` command with options in vim command line. like
```vim
" Press Tab to get completion list
:Telescope find_files
" Command with options
:Telescope find_files prompt_prefix=🔍
```
## Other Examples