emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Should drag and drop adhere to `mouse-yank-at-point'?


From: Jan Djärv
Subject: Re: Should drag and drop adhere to `mouse-yank-at-point'?
Date: Mon, 21 Aug 2006 19:42:57 +0200
User-agent: Thunderbird 1.5.0.5 (Macintosh/20060719)



Kim F. Storm skrev:
Did anyone consider this?



I guess it is OK. A bit unusual that dropped things don't end up at the cursor position, but then again, if you set mouse-yank-at-point you probably know what you are doing. Shall I check it in, or will you?

        Jan D.

Jorgen Schaefer <address@hidden> writes:

Hi there!

Currently, dragging a piece of text into Emacs will insert the
text where the drag button was released, even when
`mouse-yank-at-point' is non-nil. Is this intended behavior?

If so, could a new customize option for this be added?
If not, the fix is trivial:

*** lisp/x-dnd.el.orig  Sat Jun 17 01:51:29 2006
--- lisp/x-dnd.el       Sat Jun 17 01:52:24 2006
***************
*** 319,325 ****
          ;; If dropping in an ordinary window which we could use,
          ;; let dnd-open-file-other-window specify what to do.
          (progn
!           (goto-char (posn-point (event-start event)))
            (funcall handler window action data))
        ;; If we can't display the file here,
        ;; make a new window for it.
--- 319,326 ----
          ;; If dropping in an ordinary window which we could use,
          ;; let dnd-open-file-other-window specify what to do.
          (progn
!             (when (not mouse-yank-at-point)
!               (goto-char (posn-point (event-start event))))
            (funcall handler window action data))
        ;; If we can't display the file here,
        ;; make a new window for it.


Regards,
        -- Jorgen

--
((email . "address@hidden") (www . "http://www.forcix.cx/";)
 (gpg   . "1024D/028AF63C")   (irc . "nick forcer on IRCnet"))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]