aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichiel van den Heuvel <michielvdnheuvel@gmail.com>2024-01-23 10:50:44 +0100
committerMichiel van den Heuvel <michielvdnheuvel@gmail.com>2024-01-23 10:56:58 +0100
commit38f7f52b00867312024e12ecef3ef2467767ec4e (patch)
tree5d57c9fb37cf688defb2e945c4636fa19661495c
parent8ff0bea5ca3976bc3d326f5825abcd1223fed1ec (diff)
downloadvis-38f7f52b00867312024e12ecef3ef2467767ec4e.tar.gz
vis-38f7f52b00867312024e12ecef3ef2467767ec4e.tar.xz
lua: fix deprecated name for change-256colors
-rw-r--r--lua/vis-std.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/vis-std.lua b/lua/vis-std.lua
index 2a2f91b..971d247 100644
--- a/lua/vis-std.lua
+++ b/lua/vis-std.lua
@@ -2,7 +2,7 @@
vis.events.subscribe(vis.events.INIT, function()
if os.getenv("TERM_PROGRAM") == "Apple_Terminal" then
- vis:command("set change-256colors false");
+ vis:command("set change256colors false");
end
vis:command("set theme ".. (vis.ui.colors <= 16 and "default-16" or "default-256"))
end)