fix typos in readme (#1009)

This commit is contained in:
Dilan Baron
2021-07-17 02:02:54 -05:00
committed by GitHub
parent 3f841cb3c5
commit 9291922acd

View File

@@ -349,7 +349,7 @@ local action_state = require('telescope.actions.state')
------------------------------ ------------------------------
require('telescope.builtin').fd({ -- or new custom picker's attach_mappings field: require('telescope.builtin').fd({ -- or new custom picker's attach_mappings field:
attach_mappings = function(prompt_bufnr) attach_mappings = function(prompt_bufnr)
-- This will replace select no mather on which key it is mapped by default -- This will replace select no matter on which key it is mapped by default
action_set.select:replace(function(prompt_bufnr, type) action_set.select:replace(function(prompt_bufnr, type)
local entry = action_state.get_selected_entry() local entry = action_state.get_selected_entry()
actions.close(prompt_bufnr) actions.close(prompt_bufnr)
@@ -701,7 +701,7 @@ but only for this instance, we could do something like:
If we wanted to change the width for every time we use the `vertical` If we wanted to change the width for every time we use the `vertical`
layout strategy, we could add the following to our `setup()` call: layout strategy, we could add the following to our `setup()` call:
``` ```lua
require('telescope').setup({ require('telescope').setup({
defaults = { defaults = {
layout_config = { layout_config = {
@@ -754,7 +754,7 @@ and some other functions can be easily changed in custom pickers or built-in fun
-- Disable preview for find_files -- Disable preview for find_files
nnoremap <leader>ff :lua require('telescope.builtin').find_files({previewer = false})<cr> nnoremap <leader>ff :lua require('telescope.builtin').find_files({previewer = false})<cr>
-- Change change prompt prefix for find_files builtin function: -- Change prompt prefix for find_files builtin function:
nnoremap <leader>fg :lua require('telescope.builtin').live_grep({ prompt_prefix=🔍 })<cr> nnoremap <leader>fg :lua require('telescope.builtin').live_grep({ prompt_prefix=🔍 })<cr>
nnoremap <leader>fg :Telescope live_grep prompt_prefix=🔍<cr> nnoremap <leader>fg :Telescope live_grep prompt_prefix=🔍<cr>
``` ```