docs: third-party licenses, TEST_COLORS, system() #15665

This commit is contained in:
Justin M. Keyes
2021-09-14 10:20:33 -07:00
committed by GitHub
parent 0a83017fe9
commit b63b4777ec
9 changed files with 157 additions and 154 deletions

View File

@@ -3,7 +3,7 @@ local global_helpers = require('test.helpers')
-- Colors are disabled by default. #15610
local colors = setmetatable({}, {__index = function() return function(s) return s end end})
if os.getenv "NVIM_COLORS" then
if os.getenv "TEST_COLORS" then
colors = require 'term.colors'
end