docs: add space before + and }

I am sorry, my OCD can't stand this :DDD
This commit is contained in:
elianiva
2021-02-28 22:12:19 +07:00
parent ed2764a1bd
commit b1711389b6

View File

@@ -164,7 +164,7 @@ require('telescope').setup{
results_height = 1, results_height = 1,
results_width = 0.8, results_width = 0.8,
border = {}, border = {},
borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰'}, borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰' },
color_devicons = true, color_devicons = true,
use_less = true, use_less = true,
set_env = { ['COLORTERM'] = 'truecolor' }, -- default = nil, set_env = { ['COLORTERM'] = 'truecolor' }, -- default = nil,
@@ -232,7 +232,7 @@ EOF
| `generic_sorter` | The sorter for everything else. | [Sorters](#sorters) | | `generic_sorter` | The sorter for everything else. | [Sorters](#sorters) |
| `vimgrep_arguments` | The command line argument for grep search ... TODO. | dict | | `vimgrep_arguments` | The command line argument for grep search ... TODO. | dict |
| `selection_strategy` | What happens to the selection if the list changes. | follow/reset/row | | `selection_strategy` | What happens to the selection if the list changes. | follow/reset/row |
| `file_ignore_patterns` | Pattern to be ignored `{ "scratch/.*", "%.env"}` | dict | | `file_ignore_patterns` | Pattern to be ignored `{ "scratch/.*", "%.env" }` | dict |
| `shorten_path` | Whether to shorten paths or not. | boolean | | `shorten_path` | Whether to shorten paths or not. | boolean |
## Mappings ## Mappings
@@ -295,7 +295,7 @@ require('telescope').setup{
["<CR>"] = actions.select_default + actions.center, ["<CR>"] = actions.select_default + actions.center,
-- You can perform as many actions in a row as you like -- You can perform as many actions in a row as you like
["<CR>"] = actions.select_default+ actions.center + my_cool_custom_action, ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action,
}, },
n = { n = {
["<esc>"] = actions.close, ["<esc>"] = actions.close,