summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-05-15 12:02:14 -0700
committerGitHub <noreply@github.com>2021-05-15 15:02:14 -0400
commit4da66dab44f37d0de4b88cedf9e114c5b0855c20 (patch)
treeea0179d0d0c8be5e716ce70d6dab14aa4fc4fcac /doc
parentb78d4ef10c72597c322baaa3830c760a26734b21 (diff)
feat: add ivy-style layout strategy (#771)
* feat: add new layout strategy * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
Diffstat (limited to 'doc')
-rw-r--r--doc/telescope.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt
index 56cb6c8..2c5e712 100644
--- a/doc/telescope.txt
+++ b/doc/telescope.txt
@@ -92,6 +92,37 @@ telescope.extensions() *telescope.extensions()*
================================================================================
+ *telescope.themes*
+
+Themes are ways to combine several elements of styling together.
+
+They are helpful for managing the several differnt UI aspects for telescope and
+provide a simple interface for users to get a particular "style" of picker.
+
+themes.get_dropdown() *themes.get_dropdown()*
+ Dropdown style theme.
+
+ Usage:
+
+ `local builtin = require('telescope.builtin')`
+ `local themes = require('telescope.themes')`
+ `builtin.find_files(themes.get_dropdown())`
+
+
+
+themes.get_ivy() *themes.get_ivy()*
+ Ivy style theme.
+
+ Usage:
+
+ `local builtin = require('telescope.builtin')`
+ `local themes = require('telescope.themes')`
+ `builtin.find_files(themes.get_ivy())`
+
+
+
+
+================================================================================
*telescope.actions.set*
Telescope action sets are used to provide an interface for managing actions