Emacs xterm-mouse-mode double click to highlight a word

I need to use xterm-mouse-mode to support the mouse when using emacs over ssh, but I found that it won't highlight the whole word when I double click on the word character. Instead, it only selects the character under the mouse. How can I fix this?

+3


source to share


2 answers


C-h f xterm-mouse-mode

is talking:

... works for simple mouse use. Basically, only unmodified
single clicks are supported. When it's on, the normal xterm ...



So, I'm afraid that double clicks are not known to work (they are seen by Emacs as 2 normal clicks).

EDIT 2014-Aug-29: This limitation has recently been lifted in the Emacs backbone (i.e. not in the upcoming 24.4, but in the next version).

+2


source


Highlighting does not work in the non-windowed version of emacs (emacs runs in a terminal window). It's hard to tell if things are highlighted, so I recommend using C-space (Mark-set) to highlight things instead, as it gives you a little more control rather than allowing xterm-mouse mode as sometimes you can't double-click mouse correctly.



0


source







All Articles