summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRaphael <glepnir@gopherhub.org>2020-11-02 00:08:54 +0800
committerGitHub <noreply@github.com>2020-11-01 11:08:54 -0500
commit54ef9d90d5a032906bfb007113930dac0f665f72 (patch)
tree296f1143ef0739eba322ad5e994aae6df8165bb0 /README.md
parent37c4f1b355d843e95ba41f2a73d83de58fb74dae (diff)
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
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 45a505d..3a77aa0 100644
--- a/README.md
+++ b/README.md
@@ -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