summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorfdschmidt93 <39233597+fdschmidt93@users.noreply.github.com>2021-09-01 20:36:24 +0200
committerGitHub <noreply@github.com>2021-09-01 20:36:24 +0200
commit8842f5dde298a7e6e74f61194ab114239f744181 (patch)
tree58c5770137f6a6043a000f692798d49fb47c6e25 /README.md
parentfbe004142f69962d92eb6ede13a6721f7fdb4d50 (diff)
chore: add `action.which_key` to README (#1192)
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 15 insertions, 14 deletions
diff --git a/README.md b/README.md
index a1df186..9ba93e3 100644
--- a/README.md
+++ b/README.md
@@ -269,20 +269,21 @@ require("telescope").setup {
Mappings are fully customizable.
Many familiar mapping patterns are setup as defaults.
-| Mappings | Action |
-|----------------|--------------------------------------------|
-| `<C-n>/<Down>` | Next item |
-| `<C-p>/<Up>` | Previous item |
-| `j/k` | Next/previous (in normal mode) |
-| `<cr>` | Confirm selection |
-| `<C-q>` | Confirm selection and open quickfix window |
-| `<C-x>` | go to file selection as a split |
-| `<C-v>` | go to file selection as a vsplit |
-| `<C-t>` | go to a file in a new tab |
-| `<C-u>` | scroll up in preview window |
-| `<C-d>` | scroll down in preview window |
-| `<C-c>` | close telescope |
-| `<Esc>` | close telescope (in normal mode) |
+| Mappings | Action |
+|----------------|--------------------------------------------------------------|
+| `<C-n>/<Down>` | Next item |
+| `<C-p>/<Up>` | Previous item |
+| `j/k` | Next/previous (in normal mode) |
+| `<cr>` | Confirm selection |
+| `<C-q>` | Confirm selection and open quickfix window |
+| `<C-x>` | Go to file selection as a split |
+| `<C-v>` | Go to file selection as a vsplit |
+| `<C-t>` | Go to a file in a new tab |
+| `<C-u>` | Scroll up in preview window |
+| `<C-d>` | Scroll down in preview window |
+| `<C-/>/?` | Show picker mappings (in insert & normal mode, respectively) |
+| `<C-c>` | Close telescope |
+| `<Esc>` | Close telescope (in normal mode) |
To see the full list of mappings, check out `lua/telescope/mappings.lua` and
the `default_mappings` table.