Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4e687447
Commit
4e687447
authored
Sep 12, 2004
by
Kim F. Storm
Browse files
(cua--rectangle-operation): Let bind
inhibit-field-text-motion to t so rectangles work in comint buffers.
parent
f4961c00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/emulation/cua-rect.el
lisp/emulation/cua-rect.el
+2
-1
No files found.
lisp/emulation/cua-rect.el
View file @
4e687447
...
...
@@ -559,7 +559,8 @@ If command is repeated at same position, delete the rectangle."
;; Rectangle is padded if PAD = t or numeric and (cua--rectangle-virtual-edges)
;; Perform auto-tabify after operation if TABIFY is non-nil.
;; Mark is kept if keep-clear is 'keep and cleared if keep-clear is 'clear.
(
let*
((
start
(
cua--rectangle-top
))
(
let*
((
inhibit-field-text-motion
t
)
(
start
(
cua--rectangle-top
))
(
end
(
cua--rectangle-bot
))
(
l
(
cua--rectangle-left
))
(
r
(
1+
(
cua--rectangle-right
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment