1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 06:34:17 +03:00

docs: fix condition in default_wsl_domains example

This commit is contained in:
Wouter Beeftink 2022-03-03 11:48:10 +01:00 committed by Wez Furlong
parent 9ba7ca1981
commit 45a4dff955

View File

@ -39,7 +39,7 @@ local wezterm = require 'wezterm'
local wsl_domains = wezterm.default_wsl_domains()
for idx, dom in ipairs(wsl_domains) do
if dom.name == "Ubuntu-18.04" then
if dom.name == "WSL:Ubuntu-18.04" then
dom.default_prog = {"fish"}
end
end