mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Fix character escaping in the open preferences message
This commit is contained in:
parent
da4858a76e
commit
271a221979
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ export function showPreferences() {
|
|||
const command = process.platform === 'win32' ? ' start notepad "%userprofile%\\.hyper.js"' : ' bash -c \'exec env ${EDITOR:=nano} ~/.hyper.js\'';
|
||||
const message = process.platform === 'win32' ?
|
||||
' echo Attempting to open ^%userprofile^%\\.hyper.js with notepad' :
|
||||
' echo Attempting to open ~/.hyper.js with your \$EDITOR'; // eslint-disable-line no-useless-escape
|
||||
' echo Attempting to open ~/.hyper.js with your \\$EDITOR';
|
||||
|
||||
return dispatch => {
|
||||
dispatch({
|
||||
|
|
|
|||
Loading…
Reference in a new issue