From 2429e6256283c0d1b437dcbaf61bd0b39921dff0 Mon Sep 17 00:00:00 2001 From: rockerBOO Date: Sat, 12 Sep 2020 16:35:58 -0400 Subject: [PATCH] Example cleanup --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.