changed xtermjs to use the unicode 11 rules

This commit is contained in:
2025-12-17 22:52:52 +09:00
parent 2ea3f52fd1
commit 80ebd23858
8 changed files with 50 additions and 5 deletions

View File

@@ -257,6 +257,9 @@ func (pty *client_pty_xterm_file) ServeHTTP(w http.ResponseWriter, req *http.Req
case "xterm-addon-fit.js":
status_code = WriteJsRespHeader(w, http.StatusOK)
w.Write(xterm_addon_fit_js)
case "xterm-addon-unicode11.js":
status_code = WriteJsRespHeader(w, http.StatusOK)
w.Write(xterm_addon_unicode11_js)
case "xterm.css":
status_code = WriteCssRespHeader(w, http.StatusOK)
w.Write(xterm_css)