You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`mappings`|`table`|| A table of key mappings for different modes. Each mode (`i` for insert mode, `n` for normal mode) is a key in the table and maps to another table, where the key is the key combination (e.g., "<C-r>") and the value is a table with the fields `action` and `exit_on_action`. The `action` field is a function that will be called when the key combination is pressed, and `exit_on_action` is a boolean that determines whether Telescope should be exited after the action is performed. See [Mappings](https://github.com/ryanmsnyder/toggleterm-manager.nvim/blob/readme/README.md#mappings) for more info. |
117
-
|`telescope_titles.preview`|`string`| "Preview" | Title of the preview buffer in Telescope. Any string. |
118
-
|`telescope_titles.prompt`|`string`| " Pick Term" | Title of the prompt buffer in Telescope. Any string. |
119
-
|`telescope_titles.results`|`string`| "Results" | Title of the results buffer in Telescope. Any string. |
117
+
|`titles.preview`|`string`| "Preview" | Title of the preview buffer in Telescope. Any string. |
118
+
|`titles.prompt`|`string`| " Pick Term" | Title of the prompt buffer in Telescope. Any string. |
119
+
|`titles.results`|`string`| "Results" | Title of the results buffer in Telescope. Any string. |
120
120
|`results.separator`|`string`| " " | The character used to separate each field in `results.field`. Any string, though a space character and a pipe character are the most commonly used. |
121
121
|`results.fields`|`{string\|{string, string}}[]`| { "state", "space", "term_icon", "term_name", } | The format and order of the results displayed in the Telescope buffer. This accepts a table where each element is either: an acceptable string a table of tuple-like tables where the first value in the tuple is one of the acceptable strings and the second is a valid NeoVim highlight group that the column should adhere to. The acceptable strings are: `bufname`, `bufnr`, `space`, `state`, `term_name`, `term_icon`. See results for more info. |
122
122
|`results.term_icon`|`string`| "" | The icon used for `term_icon` in `results.fields`. Any string. |
0 commit comments