Questions tagged [cua]
8 questions
8
votes
3 answers
Rebind C-space in Emacs
I've tried various version to no avail:
(global-set-key (kbd "C-") 'tempo-complete-tag)
(global-set-key [C-space] 'tempo-complete-tag)
I'm using CUA mode and running Emacs on Ubuntu, version: GNU Emacs 23.1.50.1 (x86_64-pc-linux-gnu, GTK+…

Adam Lindberg
- 16,447
- 6
- 65
- 85
5
votes
2 answers
Emacs: Is there a better PgDn/PgUp behaviour with cua-mode?
I'd like the PgUp and PgDn keys to just move the contents of the shown file upwards or downwards, but the cursor (point in Emacs Lingo) should stay where it is (on the screen). Unfortunately the default Emacs behaviour is different. The default…

pesche
- 3,054
- 4
- 34
- 35
3
votes
3 answers
a console code editor with CUA (ctrl-x ctrl-v ...) key bindings (unlike vi)
I'm searching for a console code editor with CUA key bindings (ctrl+x, c, v etc.)
Right now i'm toying mcedit but i don't really like it. My desired features are:
* be fast
* CUA key bindings (ctrl+x, c, v etc.)
* toggle show line numbers
*…

clyfe
- 23,695
- 8
- 85
- 109
1
vote
1 answer
Change Speed Before Ctrl+C with Region Selected activates The Copy Command Instead of Allowing Other Commands On Region
Is there a way to change the speed before the copy command executes when pressing Ctrl+C with CUA bindings set. If you press it fast enough you can execute commands on the region and the copy command is ignored. This setting is quite fast and I…

J Spen
- 2,614
- 4
- 26
- 41
1
vote
2 answers
Activate Command on Region with Cua Bindings set to Ctrl+C for copy in Emacs
I was wondering how to implement a command on a region when highlighted if it starts with Ctrl+C when Cua bindings are on.
For example, I want to highlight like four lines of text in LaTeX mode and run the command Ctrl+C Ctrl+f Ctrl+b which changes…

J Spen
- 2,614
- 4
- 26
- 41
1
vote
2 answers
How can I remove a key binding so that the cua C-x key binding so that I can have the original effects of C-x?
While in cua mode, I want C-x to act as if cua mode was not active. I like cua C-c, C-v and C-z. But, I grew accustomed to eMacs use of C-x, and I want C-x to remain exactly as it was, with or without a selection.
(define-key…

Paul
- 442
- 4
- 9
0
votes
1 answer
Emacs: Calling cua-mode cua-set-rectangle-mark from within custom function
Currently I use cua-mode for its column/rectangle facilities like so (I don't used it for copy/pasting):
M-x cua-mode ; Enable cua-mode
; Call cua-set-rectangle-mark
Then when I'm done with my rectangle:
C-g ; Call…

vab2048
- 1,065
- 8
- 21
0
votes
0 answers
Emacs 24.2 CUA-mode behaviour on Shift-up/down
I've set (cua-mode t) in my ~/.emacs in GNU Emacs 24.2 on Windows XP. However, when (with nothing selected) I type shift-up or shift-down no new selection is started, which is not the CUA behaviour as seen in MS Notepad, Eclipse etc. If I type…

satyagraha
- 623
- 7
- 11