patch 8.0.1743: terminal window options are named inconsistently
Problem: Terminal window options are named inconsistently.
Solution: prefix terminal window options with "termwin". Keep the old names
for now as an alias.
diff --git a/src/option.h b/src/option.h
index 45f1a36..8f492c3 100644
--- a/src/option.h
+++ b/src/option.h
@@ -1114,6 +1114,9 @@
, BV_UDF
, BV_UL
, BV_WM
+#ifdef FEAT_TERMINAL
+ , BV_TWSL
+#endif
, BV_COUNT /* must be the last one */
};
@@ -1133,8 +1136,8 @@
, WV_COLE
#endif
#ifdef FEAT_TERMINAL
- , WV_TK
- , WV_TMS
+ , WV_TWK
+ , WV_TWS
#endif
, WV_CRBIND
#ifdef FEAT_LINEBREAK