mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-16 13:48:41 -09:00
Preventing shell history pollution (#478)
This commit is contained in:
parent
8874feff76
commit
b3dec55f29
1 changed files with 3 additions and 3 deletions
|
|
@ -147,9 +147,9 @@ export function showPreferences () {
|
||||||
rpc.once('session data', () => {
|
rpc.once('session data', () => {
|
||||||
dispatch(sendSessionData(
|
dispatch(sendSessionData(
|
||||||
uid,
|
uid,
|
||||||
['echo Attempting to open ~/.hyperterm.js with your \$EDITOR', // eslint-disable-line no-useless-escape
|
[' echo Attempting to open ~/.hyperterm.js with your \$EDITOR', // eslint-disable-line no-useless-escape
|
||||||
'echo If it fails, open it manually with your favorite editor!',
|
' echo If it fails, open it manually with your favorite editor!',
|
||||||
'bash -c "exec env $EDITOR ~/.hyperterm.js"',
|
' bash -c "exec env $EDITOR ~/.hyperterm.js"',
|
||||||
''
|
''
|
||||||
].join('\n')
|
].join('\n')
|
||||||
));
|
));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue