From d54fa3889b4b9d7e48334e9fdd71b13889653187 Mon Sep 17 00:00:00 2001 From: Matheus Fernandes Date: Sun, 15 Jan 2017 21:01:28 -0200 Subject: [PATCH] Add notes about full paths for the `shell` config and about PowerShell Closes #1020 --- app/config-default.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config-default.js b/app/config-default.js index d7669e7d..bda83745 100644 --- a/app/config-default.js +++ b/app/config-default.js @@ -63,6 +63,9 @@ module.exports = { // the shell to run when spawning a new session (i.e. /usr/local/bin/fish) // if left empty, your system's login shell will be used by default + // make sure to use a full path if the binary name doesn't work + // (e.g `C:\\Windows\\System32\\bash.exe` instad of just `bash.exe`) + // if you're using powershell, make sure to remove the `--login` below shell: '', // for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])