diff options
| author | Gustavo Sampaio <gbritosampaio@gmail.com> | 2022-08-01 09:13:46 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-01 05:13:46 -0700 |
| commit | ece0850b7393114cac651cf9f43fc2c5e1b1cf50 (patch) | |
| tree | ca4a17a3ea56d9696b41f85c6af53da82650dac1 /src/nvim/options.lua | |
| parent | bcb4186cf67b22dab238248a809f6c3f09a5424d (diff) | |
| download | rneovim-ece0850b7393114cac651cf9f43fc2c5e1b1cf50.tar.gz rneovim-ece0850b7393114cac651cf9f43fc2c5e1b1cf50.tar.bz2 rneovim-ece0850b7393114cac651cf9f43fc2c5e1b1cf50.zip | |
fix(session): respect sessionoptions=terminal #19497
fixes #13078
Co-authored-by: Yuta Katayama <8683947+yutkat@users.noreply.github.com>
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 9e4a6a084c..2f941f5d0c 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2063,7 +2063,7 @@ return { type='string', list='onecomma', scope={'global'}, deny_duplicates=true, varname='p_ssop', - defaults={if_true="blank,buffers,curdir,folds,help,tabpages,winsize"} + defaults={if_true="blank,buffers,curdir,folds,help,tabpages,winsize,terminal"} }, { full_name='shada', abbreviation='sd', |