emacs-auto-programming
emacs-auto-programming copied to clipboard
The Auto Programming Solution
auto-programming.el
The Auto Programming Solution
How To Use
Write some code and execute auto-programming
.
You will get candidates of next line of your program.
For example, you type use stri
, the code you want to get is use strict;
, and the next line is use warnings
.
How It Works
For example, when you write use stri
and execute auto-programming
,
- git grep
use stri
- Collect the result of git grep
- Show the result in editor
- Replace the current line with the selected result
Requirements
- Git
- Perl