diff --git a/README.md b/README.md index 4a3304b..05d5f45 100644 --- a/README.md +++ b/README.md @@ -81,13 +81,13 @@ require('telescope').setup{ ### Examples ```vim -nnoremap p :lua require'telescope.builtin'.git_files{} +nnoremap p lua require'telescope.builtin'.git_files{} ``` Searches over files in a git folder. Note: This does not work outside a git repo folder. ```vim -nnoremap p :lua require'telescope.builtin'.find_files{} +nnoremap p lua require'telescope.builtin'.find_files{} ``` Search over files in your `cwd` current working directory. @@ -141,7 +141,7 @@ Mappings are fully customizable. Many familiar mapping patterns are setup as def go to file selection as a vertical split go to a file in a new tab -j k next/previous (in normal mode) +j k next | previous (in normal mode) ``` Attaching your own mappings is possible and additional information will come soon.