Skip to main content

Questions tagged [tooltip]

Filter by
Sorted by
Tagged with
0 votes
1 answer
102 views

When I evaluate (tooltip-show "test"), it is my expectation that the tooltip will appear right next to the current location of point. However, the tooltip instead appears in a seemingly ...
user615536's user avatar
0 votes
0 answers
44 views

Using emacs 30, I have an issue where when an ivy tooltip pops up, pressing ctrl-d causes documentation to show up instead of the expected deleting of a character. I've not been able to determine how ...
Silfheed's user avatar
  • 203
2 votes
2 answers
195 views

I wanted to investigate the difference between magit-branch-and-checkout (b c) and magit-branch-spinoff (b s), so I invoked the Magit output buffer with $. I see the following output: 0 git … ...
Alessandro Bertulli's user avatar
0 votes
2 answers
311 views

I am using Emacs 27.1 (GNU Emacs 27.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0) of 2021-03-28, modified by Debian). When I hover the mouse pointer over the "copy&...
buhtz's user avatar
  • 789
1 vote
2 answers
498 views

I'm using Prelude Emacs. I could've sworn there was a simple option to allow the error tooltip to use multiple lines instead of 1, but I can't find it and my error messages get cut off by the window's ...
ZacharyFontenot's user avatar
4 votes
2 answers
569 views

I would like to get some immediate strong visual feedback for the commands I enter in emacs. For example, I would be happy if any key sequence (beginning with a modifier key) that I type appeared in ...
Communicative Algebra's user avatar
1 vote
1 answer
553 views

Ie, suppose I press M-x org-agenda and ivy says there's 131 matches, of which I recognize maybe 10. It'd be useful to say, after a .2 second delay, display a tooltip for the function at point. Is ...
cryptograthor's user avatar
0 votes
0 answers
172 views

I experience some weird behavior with tooltips: (progn (let* ((start (point)) (end (progn (insert "test") (point))) (ov (make-overlay start end))) (overlay-put ov 'help-echo ...
Andreas Matthias's user avatar
4 votes
1 answer
2k views

In org mode when I hover over a link, I get a tooltip that shows the target of the link. But I'd like to see the target when I just move point onto a link, either as a tooltip or in the echo area. For ...
Dan Drake's user avatar
  • 809
4 votes
1 answer
541 views

I'm using Spacemacs on MS Windows (msys2 build) and when a tooltip pops up Emacs seems to move my mouse pointer out of the way. How can I prevent this automatic movement?
Daniel Hill's user avatar
2 votes
0 answers
149 views

Is there any way to display multiple tooltips, or something similar to them? Overlays wont work because i need to display them using xy coordinates.
gimb125's user avatar
  • 19
3 votes
2 answers
896 views

I want to make the tooltip background somewhat transparent, say, change it alpha value to 0.5. I find these code in tooltip.el.gz (defface tooltip '((((class color)) :background "lightyellow" ...
cmal's user avatar
  • 795
2 votes
2 answers
728 views

When I use mouse-over on an Link (thanks to Tobias) it shows an Image and text. When I used display-local-help the image disappeared (perhaps due to lack of space in the message area). I want to ...
user19931's user avatar
5 votes
1 answer
2k views

Can I disable this kind of a popup? I couldn't find anything besides (setq x-gtk-use-system-tooltips nil), but it didin't help me unfortunately.
valignatev's user avatar
4 votes
0 answers
361 views

I want to enlarge the text in tooltips displayed via https://www.emacswiki.org/emacs/PosTip . What can I do?
HappyFace's user avatar
  • 930
0 votes
1 answer
662 views

So, after adding fallowing line in to my .emacs file I see no result, whether I'm running emacs in the X window or an terminal. (custom-set-variables ;;; CUSTOM-SET-VARIABLES INSTANCE ;; Init file ...
siery's user avatar
  • 241
2 votes
1 answer
98 views

Org-ref provides excellent bibliographic tools for authoring within org documents. However, one issue I've had is the mouseover timer for citation links appears to be set to zero seconds. That is, ...
Snelephant's user avatar
1 vote
1 answer
399 views

Is there a way to show a tooltip that contains the full buffer name when I hover over the buffer name part of the mode line? I'd like to quickly check the full buffer name when I have a narrow frame ...
stacko's user avatar
  • 1,617
0 votes
1 answer
132 views

Consider the following content of a file called image-tooltips.el which I source into my .emacs file via load-file. Displaying the image tooltip works if I put a ;\includegraphics{myfile.jpg} into ...
student's user avatar
  • 1,199
0 votes
1 answer
122 views

I'd like to get a tooltip that says "meow", whenever my mouse is on the word "Cat" in Emacs. I tried this snippet I put together, but didn't work. What's wrong with it? (defun my-hi-lock () (...
stacko's user avatar
  • 1,617
2 votes
1 answer
764 views

I am trying to make graphical tooltips appear over some words in Emacs. Here is the code I have developed: (defun image-tooltip (window object position) (save-excursion (goto-char position) ...
John Kitchin's user avatar
  • 12.2k
2 votes
0 answers
345 views

I'm using Spacemacs with Solarized dark theme on Arch linux using i3wm, and I'm having some issues with tooltips. If I open Emacs so it only covers part of the screen, the tooltips shows up with the ...
simendsjo's user avatar
  • 111
4 votes
2 answers
177 views

I have multiple overlays with 'help-echo strings covering the same region. Can I make Emacs show all these strings in the mouseover tooltip? By default it only shows the one coming from the highest ...
Clément's user avatar
  • 4,055
1 vote
0 answers
316 views

When I'm editing a file, if the completion list shows up, the text in the current window will always jump (sometime it will jump a few lines but mostly it will jump to the top of the window), after ...
CodyChan's user avatar
  • 2,719
12 votes
1 answer
4k views

I don't like the default M-n and M-p keys for company-select-next and company-select-previous so I was wondering if it's possible to remap those to C-n and C-p without affecting the mappings when ...
caisah's user avatar
  • 4,146
7 votes
2 answers
740 views

I'd like to know exactly what my modeline is telling me and how it's derived. Right now, if I'm working with a graphical terminal I can hover over each modeline entry in turn, and if I'm lucky, a ...
Saint Aardvark the Carpeted's user avatar