Guest User

Untitled

a guest
Jan 19th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. * create a `.bat` file
  2. ```
  3. @echo off
  4. REM ### Below on CMDER_ROOT, substitute 'C:\Cmder' with the path to your CMDER root (the one that contains Cmder.exe) ###
  5. SET CMDER_ROOT=C:\Cmder
  6. "%CMDER_ROOT%\vendor\init.bat"
  7. ```
  8.  
  9. * open hyper's config, and on `shellArgs`, fill with an array, with the first value being: `"/K"`, and the second being the path to the file you created above
  10. ```js
  11. shellArgs: [
  12. "/K",
  13. "C:\\Users\\gduarte\\Documents\\Cmder\\initInExternalTerminal.bat"
  14. ],
  15. ```
  16.  
  17. * save and do a full reload on hyper (or close and open it again)
Add Comment
Please, Sign In to add comment