Back to Wezterm

wezterm.utf16_to_utf8

docs/config/lua/wezterm/utf16_to_utf8.md

latest454 B
Original Source

wezterm.utf16_to_utf8(str)

{{since('20200503-171512-b13ef15f')}}

This function is overly specific and exists primarily to workaround this wsl.exe issue.

It takes as input a string and attempts to convert it from utf16 to utf8.

lua
local wezterm = require 'wezterm'

local success, wsl_list, wsl_err =
  wezterm.run_child_process { 'wsl.exe', '-l' }
wsl_list = wezterm.utf16_to_utf8(wsl_list)