Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anmonteiro/snoopy-mode
Minor mode for number row unshifted character insertion in Emacs
https://github.com/anmonteiro/snoopy-mode
emacs emacs-lisp
Last synced: 4 months ago
JSON representation
Minor mode for number row unshifted character insertion in Emacs
- Host: GitHub
- URL: https://github.com/anmonteiro/snoopy-mode
- Owner: anmonteiro
- License: gpl-3.0
- Created: 2017-07-29T20:13:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-08T20:04:39.000Z (over 7 years ago)
- Last Synced: 2024-05-22T21:26:09.094Z (9 months ago)
- Topics: emacs, emacs-lisp
- Language: Emacs Lisp
- Homepage:
- Size: 36.1 KB
- Stars: 10
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Snoopy Mode
[![MELPA](http://melpa.org/packages/snoopy-badge.svg)](http://melpa.org/#/snoopy)
[![MELPA Stable](http://melpa-stable.milkbox.net/packages/snoopy-badge.svg)](http://stable.melpa.org/#/snoopy)
[![Build Status](https://travis-ci.org/anmonteiro/snoopy-mode.svg?branch=master)](https://travis-ci.org/anmonteiro/snoopy-mode)
[![Coverage Status](https://coveralls.io/repos/github/anmonteiro/snoopy-mode/badge.svg?branch=master)](https://coveralls.io/github/anmonteiro/snoopy-mode?branch=master)Snoopy Mode is a minor mode for number row unshifted character insertion in
Emacs.It can insert characters such as `!` and `@` without pressing the shift key.
## Getting Started
You can install Snoopy Mode from [MELPA](http://melpa.org/).
M-x package-install [RET] snoopy [RET]
## Usage
Inside Emacs, `M-x snoopy-mode RET` will enable Snoopy Mode.
If you want to enable `snoopy-mode`, e.g. in `prog-mode`, place the following
lines in your Emacs config:```emacs-lisp
(require 'snoopy)(add-hook 'prog-mode-hook 'snoopy-mode)
```## Customization
Default layout is based on the *qwerty* layout, you can change this two way:- pick an existing layout with `snoopy-select-keyboard-layout`
- define your custom one with `snoopy-set-custom-keyboard-layout`
## Inspiration
* [This](https://stackoverflow.com/questions/6277813/unshifted-symbols-in-emacs)
StackOverflow question.## Copyright & License
Copyright © 2017 António Nuno Monteiro, Russell McQueeney
Distributed under the GNU General Public License either version 3, or (at
your option) any later version (see [LICENSE](./LICENSE)).