Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarcasm/posn-on-screen
Get the position on the screen for an Emacs point.
https://github.com/sarcasm/posn-on-screen
Last synced: about 2 months ago
JSON representation
Get the position on the screen for an Emacs point.
- Host: GitHub
- URL: https://github.com/sarcasm/posn-on-screen
- Owner: Sarcasm
- Created: 2011-11-03T21:34:15.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-11-03T21:36:39.000Z (about 13 years ago)
- Last Synced: 2023-03-11T08:56:02.925Z (almost 2 years ago)
- Language: Emacs Lisp
- Homepage:
- Size: 88.9 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Find cursor position on the screen
==================================This package aimed to provide one or more functions to get
informations about the position on the screen of a visible point. With
this information someone can create a frame near the point and provide
a completion UI for example.Why make a package for such a small thing ?
-------------------------------------------Because I saw more than one Emacs package doing that thing and I
needed it too.I prefer to do that in a separate file because:
* it can be used by one or more package
* it can be enhanced to handle different window systems more
accuratelyNote
----At the moment of this writing the code is shamelessly stolen from the
[esense](http://esense.sourceforge.net) package.Here is a list of packages that implements similar routines inside
their code.* [esense](http://esense.sourceforge.net)
* [Pos Tip](http://www.emacswiki.org/PosTip)
* [tooltip-help.el](http://www.emacswiki.org/emacs/tooltip-help.el)
* [csense.el](http://code.google.com/p/csense/source/browse/trunk/csense.el)
* `dframe-reposition-frame-emacs` in dframe.el (shipped with Emacs)