Skip to content

Commit

Permalink
Fix issue #3 updating incorrect documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
“jvgrootveld” committed Jun 6, 2021
1 parent 3b66ebf commit c3f497b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
An extension for [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) that allows you operate [zoxide](https://github.com/ajeetdsouza/zoxide) within Neovim.

## Requirements
[zoxide](https://github.com/ajeetdsouza/zoxide) is required for using this plugin.
[zoxide](https://github.com/ajeetdsouza/zoxide) is required to use this plugin.

## Installation

Expand All @@ -29,7 +29,7 @@ require'telescope'.load_extension('zoxide')
With Telescope command

```vim
:Telescope zoxide select
:Telescope zoxide list
```

In Lua
Expand All @@ -53,7 +53,7 @@ vim.api.nvim_set_keymap(
| Action | Description | Command executed |
|--------------|---------------------------------------|------------------|
| `<CR>` | Change current directory to selection | `cd <path>` |
| `<C-s>` | Open selection in a split. | `split <path>` |
| `<C-v>` | Open selection in a vertical split. | `vsplit <path>` |
| `<C-e>` | Open selection in current window. | `edit <path>` |
| `<C-s>` | Open selection in a split | `split <path>` |
| `<C-v>` | Open selection in a vertical split | `vsplit <path>` |
| `<C-e>` | Open selection in current window | `edit <path>` |

0 comments on commit c3f497b

Please sign in to comment.