We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In emacs, I've got things like
C-f move cursor forward C-b move cursor backward C-h delete backward
Also I've got
(global-set-key "\C-h" 'backward-delete-char-untabify) ;;C-h to Backspace. (global-set-key (kbd "C-w") 'backward-kill-word) ;;replaces kill-region (global-set-key (kbd "C-q") 'kill-region)
..and things like
C-c [ space space C-c ] to select all text
Any way to have things like this in Chrome?;)
The text was updated successfully, but these errors were encountered:
Probably possible but I haven't maintained this project for several years.
On Wed, Jun 29, 2016, 4:28 PM madorian [email protected] wrote:
In emacs, I've got things like C-f move cursor forward C-b move cursor backward C-h delete backward Also I've got (global-set-key "\C-h" 'backward-delete-char-untabify) ;;C-h to Backspace. (global-set-key (kbd "C-w") 'backward-kill-word) ;;replaces kill-region (global-set-key (kbd "C-q") 'kill-region) ..and things like C-c [ space space C-c ] to select all text Any way to have things like this in Chrome?;) — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #12, or mute the thread https://github.com/notifications/unsubscribe/AAnJme6YUFGIperW_uvHaeX7_XfBsrO1ks5qQtWGgaJpZM4JBiHa .
(global-set-key "\C-h" 'backward-delete-char-untabify) ;;C-h to Backspace.
(global-set-key (kbd "C-w") 'backward-kill-word) ;;replaces kill-region
(global-set-key (kbd "C-q") 'kill-region)
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub #12, or mute the thread https://github.com/notifications/unsubscribe/AAnJme6YUFGIperW_uvHaeX7_XfBsrO1ks5qQtWGgaJpZM4JBiHa .
Sorry, something went wrong.
No branches or pull requests
In emacs, I've got things like
C-f move cursor forward
C-b move cursor backward
C-h delete backward
Also I've got
(global-set-key "\C-h" 'backward-delete-char-untabify) ;;C-h to Backspace.
(global-set-key (kbd "C-w") 'backward-kill-word) ;;replaces kill-region
(global-set-key (kbd "C-q") 'kill-region)
..and things like
C-c [ space space C-c ] to select all text
Any way to have things like this in Chrome?;)
The text was updated successfully, but these errors were encountered: