question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Keyboard Commands with Ctrl

See original GitHub issue
  • I am on the latest Hyper.app version
  • I have searched the issues of this repo and believe that this is not a duplicate
  • OS version and name: Windows 10
  • Hyper.app version: 2.0
  • Link of a Gist with the contents of your .hyper.js:
  • Relevant information from devtools (CMD+ALT+I on macOS, CTRL+SHIFT+I elsewhere):
  • The issue is reproducible in vanilla Hyper.app:

Issue

Why do you block the keyboard commands (with “Ctrl”) in the terminal? This is one of the most annoying things about native terminals …

image

You could have at least one option in the settings to allow or not to use.

Issue Analytics

  • State:open
  • Created 5 years ago
  • Reactions:9
  • Comments:25

github_iconTop GitHub Comments

18reactions
hqsiswiliamcommented, Nov 21, 2019

much better in 2.1.0-canary.2 ! but still few caveats.

based on same .hyper.js I porvided earlier :

  keymaps: {
	"tab:new":"Ctrl+T",
	"window:new":"Ctrl+Shift+N",
	"pane:close":"Ctrl+W",
	"editor:undo":"Ctrl+Z",
	"editor:redo":"Ctrl+Y",
	"editor:cut":"Ctrl+X",
	"editor:copy":"Ctrl+C",
	"editor:paste":"Ctrl+V",
	"editor:selectAll":"Ctrl+A"
}
  • ctrl+V/A/W/T works
  • ctrl+C does not copy selected text
  • ctrl+X does copy selected text (to clipboard) but does not remove it
  • ctrl+Z/Y do not undo/redo

I tried your method, and I noticed that you need to convert “Ctrl+A” to “ctrl+a” so it would work. Also, ctrl+c will conflict with break command so I move break to ctrl+d. Here is my keymap:

  keymaps: {
	"tab:new":"ctrl+t",
	"window:new":"ctrl+shift+n",
	"pane:close":"ctrl+w",
	"editor:undo":"ctrl+z",
	"editor:redo":"ctrl+y",
	"editor:copy":"ctrl+c",
	"editor:paste":"ctrl+v",
	"editor:selectAll":"ctrl+a",
	"editor:break":"ctrl+d",
  },
13reactions
xididricommented, Jul 4, 2018

much better in 2.1.0-canary.2 ! but still few caveats.

based on same .hyper.js I porvided earlier :

  keymaps: {
	"tab:new":"Ctrl+T",
	"window:new":"Ctrl+Shift+N",
	"pane:close":"Ctrl+W",
	"editor:undo":"Ctrl+Z",
	"editor:redo":"Ctrl+Y",
	"editor:cut":"Ctrl+X",
	"editor:copy":"Ctrl+C",
	"editor:paste":"Ctrl+V",
	"editor:selectAll":"Ctrl+A"
}
  • ctrl+V/A/W/T works
  • ctrl+C does not copy selected text
  • ctrl+X does copy selected text (to clipboard) but does not remove it
  • ctrl+Z/Y do not undo/redo
Read more comments on GitHub >

github_iconTop Results From Across the Web

Keyboard shortcuts in Windows - Microsoft Support
Copy, paste, and other general keyboard shortcuts ; Ctrl + X · Cut the selected item. ; Ctrl + C (or Ctrl +...
Read more >
What is Ctrl (Control)? - Computer Hope
Ctrl keyboard shortcuts ; Ctrl + Esc, Open the Windows Start menu. ; Ctrl + F · Open find window. ; Ctrl +...
Read more >
Keyboard Shortcuts
Ctrl + Shift + Esc. Open Task Manager. Alt + Tab. Switch between open apps. Alt + Left arrow key. Go back. Alt...
Read more >
Computer shortcut keys everyone should know: Word, Excel ...
Word shortcut keys · Ctrl + A -- Select all contents of the page. · Ctrl + B -- Bold highlighted selection. ·...
Read more >
Common Shortcut Keys for Microsoft Windows Keyboards
Common Shortcut Keys for Microsoft Windows Keyboards ; CTRL+X · Cuts the selected item(s) to the Clipboard. ; CTRL+C or CTRL+INSERT, Copies the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found