|
|
|
|
|
by nailer
2603 days ago
|
|
I've been using Hyper 3 Canary for a while, if you're on Windows it's a MASSIVE difference from previous versions - all the normal stuff you expect to work (select to copy, right click paste, rendering, readline shortcuts etc) works (with a little tweaking, see below). It's definitely usable as a daily driver. I've been using Windows Terminal in the last 24 hours and it still has some major bugs. While I'd say Fluent Terminal is the best in terms of being lightweight and feature filled, and Alacritty for raw power if you have big shell workloads, Hyper 3 is pretty damn good and worth a try. Sane defaults: Use pwsh (not cmd, that's the Windows equivalent of launching 70's Bourne shell on a *nix box): shell: "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
shellArgs: [],
Normal new tab, close window keys, make readline keys work: keymaps: {
"tab:new": "ctrl+t",
// Also known as 'close tab'
"pane:close": "ctrl+w",
// Bug workaround for https://github.com/zeit/hyper/issues/2873
"editor:movePreviousWord": "",
"editor:moveNextWord": ""
},
|
|