Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lassik/emacs-whois
Extends the whois functionality of Emacs
https://github.com/lassik/emacs-whois
Last synced: 11 days ago
JSON representation
Extends the whois functionality of Emacs
- Host: GitHub
- URL: https://github.com/lassik/emacs-whois
- Owner: lassik
- License: gpl-2.0
- Created: 2019-04-29T14:13:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-15T19:30:04.000Z (9 months ago)
- Last Synced: 2024-11-22T21:46:08.108Z (about 1 month ago)
- Language: Emacs Lisp
- Homepage: https://melpa.org/#/whois
- Size: 43 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Improved whois support for GNU Emacs
This package complements (does not replace) the standard whois
functionality of GNU Emacs. It provides:* A `whois-mode` with font-lock highlighting to make whois responses
easier to read.* A `whois-shell` command to make a whois query using the system whois
program instead of Emacs' own (often not up to date) whois client.* A `whois-expand` command to repeat the last whois query using the
domain registrar's own whois server.To replace Emacs' own `whois` command with the one from this package:
```
(when (require 'whois nil t) (defalias 'whois 'whois-shell))
```