Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/describe-syntax-ppss
Show annotated result of syntax-ppss at point in minibuffer.
https://github.com/karimaziev/describe-syntax-ppss
Last synced: 4 days ago
JSON representation
Show annotated result of syntax-ppss at point in minibuffer.
- Host: GitHub
- URL: https://github.com/karimaziev/describe-syntax-ppss
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2022-05-30T09:12:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-09T12:23:25.000Z (5 days ago)
- Last Synced: 2024-11-09T13:24:33.815Z (5 days ago)
- Language: Emacs Lisp
- Size: 716 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* describe-syntax-ppss
Show annotated result of ~syntax-ppss~ at point in minibuffer.
[[./demo.gif]]
** Installation
*** Manually
Download repository and it to your load path in your init file:
#+begin_src elisp :eval no
(add-to-list 'load-path "/path/to/describe-syntax-ppss/")
(require 'describe-syntax-ppss)
#+end_src
*** With use-package and straight
#+begin_src elisp :eval no
(use-package describe-syntax-ppss
:straight (:repo "KarimAziev/describe-syntax-ppss"
:type git
:host github)
:commands (describe-syntax-ppss-at-point
describe-syntax-ppss-kill-cursor-position))#+end_src
** Commands
+ ~describe-syntax-ppss-at-point~
Show annotated result of ~syntax-ppss~ at point in minibuffer. Perfom action for selected choice defined in ~describe-syntax-ppss-actions~.
+ ~describe-syntax-ppss-kill-cursor-position~
Same as =what-cursor-position= but also copies position.