mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-15 13:18:40 -09:00
session: suffix UTF-8 to locale
cc @ekmartin @heathervv
This commit is contained in:
parent
05b491f62c
commit
27b2cd718e
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ module.exports = class Session extends EventEmitter {
|
||||||
constructor ({ rows, cols: columns, cwd, shell }) {
|
constructor ({ rows, cols: columns, cwd, shell }) {
|
||||||
super();
|
super();
|
||||||
const baseEnv = Object.assign({}, process.env, {
|
const baseEnv = Object.assign({}, process.env, {
|
||||||
LANG: app.getLocale().replace('-', '_'),
|
LANG: app.getLocale().replace('-', '_') + '.UTF-8',
|
||||||
TERM: 'xterm-256color',
|
TERM: 'xterm-256color',
|
||||||
TERM_PROGRAM: productName,
|
TERM_PROGRAM: productName,
|
||||||
TERM_PROGRAM_VERSION: version
|
TERM_PROGRAM_VERSION: version
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue