Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emacs-helm/helm-describe-modes
Major and minor mode info with Helm
https://github.com/emacs-helm/helm-describe-modes
emacs helm mode
Last synced: 3 months ago
JSON representation
Major and minor mode info with Helm
- Host: GitHub
- URL: https://github.com/emacs-helm/helm-describe-modes
- Owner: emacs-helm
- Created: 2016-02-08T03:27:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T05:50:14.000Z (almost 8 years ago)
- Last Synced: 2024-05-01T11:38:41.794Z (7 months ago)
- Topics: emacs, helm, mode
- Language: Emacs Lisp
- Homepage:
- Size: 166 KB
- Stars: 27
- Watchers: 11
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
[[https://melpa.org/#/helm-describe-modes][file:https://melpa.org/packages/helm-describe-modes-badge.svg]]
[[http://www.gnu.org/licenses/gpl-3.0.txt][file:https://img.shields.io/badge/license-GPLv3-blue.svg]]* Helm Describe Modes
** Introduction
=helm-describe-modes= provides a Helm interface to Emacs's =describe-mode=. It
lists the major mode, active minor modes, and inactive minor modes using Helm,
and provides actions for each mode.[[./doc/modes.png]]
** Usage
Add the following to your init file (e.g. =~/.emacs.d/init.el=) to remap
=describe-mode= to =helm-describe-modes=:#+BEGIN_SRC emacs-lisp
(require 'helm-describe-modes)
(global-set-key [remap describe-mode] #'helm-describe-modes)
#+END_SRCFor information about the Helm framework, see the [[https://github.com/emacs-helm/helm][Helm project]].
** Other
This package is heavily inspired by the [[https://github.com/emacs-helm/helm-descbinds][helm-descbinds]] package by Taiki
Sugawara.