summaryrefslogtreecommitdiffstatshomepage
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 3ab60f0af9..9192a1ee51 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -9777,12 +9777,20 @@ local options = {
{
abbreviation = 'tf',
defaults = true,
+ desc = [=[
+ Assume that the underlying terminal can respond quickly to queries
+ required by features such as 'background' detection.
+
+ Nvim issues terminal queries before reading the user's |config| file,
+ so disabling this option there will not work. Set $NVIM_NOTTYFAST
+ before starting Nvim to disable terminal queries.
+ ]=],
full_name = 'ttyfast',
no_mkrc = true,
scope = { 'global' },
- short_desc = N_('Deprecated'),
+ short_desc = N_('assume terminal responds quickly, enabling more features'),
type = 'boolean',
- immutable = true,
+ varname = 'p_tf',
},
{
abbreviation = 'udir',