diff --git a/doc/toggleterm.txt b/doc/toggleterm.txt index 3ff7af9..7811850 100644 --- a/doc/toggleterm.txt +++ b/doc/toggleterm.txt @@ -1,4 +1,4 @@ -*toggleterm.txt* For Neovim >= 0.8.0 Last change: 2024 August 08 +*toggleterm.txt* For Neovim >= 0.8.0 Last change: 2024 November 01 ============================================================================== Table of Contents *toggleterm-table-of-contents* @@ -208,6 +208,12 @@ what options are available. It is not written to be used as is. return term.name end }, + responsiveness = { + -- breakpoint in terms of `vim.o.columns` at which terminals will start to stack on top of each other + -- instead of next to each other + -- default = 0 which means the feature is turned off + horizontal_breakpoint = 135, + } } <