GNU bug report logs -
#6774
Cut and paste with C-w/mouse-2 not working?
Previous Next
Full log
View this message in rfc822 format
In article <4C68FBF7.1080104 <at> swipnet.se>, Jan Djärv <jan.h.d <at> swipnet.se> writes:
> > We own the primary selection when mark is activated by C-@
> > in transient-mark-mode or C-@ C-@ not in
> > transient-mark-mode, and record somehow that selection is
> > owned that way (i.e. selection contents is a text in the
> > region). At that time the contents is null, but I think
> > it's not the problem. We do nothing special for all point
> > moving commands (except for highlighting the region). When
> > Emacs receives selection request, it returns the text in the
> > region if the selection is still owned as the above way. We
> > disown the selection when mark is deactivated.
> >
> I though we where moving away from special cases? Anyway, empty selection do
> matter. Consider this case:
> I select a lot of code in another application.
> I go to Emacs and set mark, then paste the code with mouse-2 and then M-x
> indent-region.
> With your scheme, mouse-2 would fail to paste, which would be a nasty surprise.
Surely this is not good. But which is a nastier surprise
for new users, your case or my case below:
>>> (1) S-C-n
>>> (2) C-@ C-n
>>> it's very confusing that they behave differently as to
>>> selection.
And, once we get used to that C-@ make Emacs own selection,
we'll do your task in this order: "Set mark in Emacs, select
a lot of code, paste it in Emacs, ...".
Or, we can have something like this single command (don't
take the code itself and the key-binding seriously).
(defun mouse-yank-primary-and-select (click)
(interactive "e")
(mouse-set-point click)
(push-mark)
(mouse-yank-primary click))
(global-set-key [S-C-mouse-2] 'mouse-yank-primary-and-select)
Though, please note that I myself still think it's better to
modify command_loop_1 than chaning C-@ to own selection.
---
Kenichi Handa
handa <at> m17n.org
This bug report was last modified 14 years and 342 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.