diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-14 18:14:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-14 18:14:06 +0200 |
commit | 8c041b6b95f49f7383cf00e2036cf009b326fa8d (patch) | |
tree | cea34047b3462e2bcaa580f616f054dfa20b1473 /src/option.h | |
parent | a42d363bac8a581afe769c370db70cf833767c41 (diff) | |
download | vim-git-8c041b6b95f49f7383cf00e2036cf009b326fa8d.tar.gz |
patch 8.0.1712: terminal scrollback is not limitedv8.0.1712
Problem: Terminal scrollback is not limited.
Solution: Add the 'terminalscroll' option.
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index d2ee54534..45f1a36bc 100644 --- a/src/option.h +++ b/src/option.h @@ -849,6 +849,9 @@ EXTERN char_u *p_tcldll; /* 'tcldll' */ #ifdef FEAT_ARABIC EXTERN int p_tbidi; /* 'termbidi' */ #endif +#ifdef FEAT_TERMINAL +EXTERN long p_tlsl; /* 'terminalscroll' */ +#endif #ifdef FEAT_MBYTE EXTERN char_u *p_tenc; /* 'termencoding' */ #endif |