Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ap/perldoc-complete
A bash completion helper for perldoc
https://github.com/ap/perldoc-complete
Last synced: 2 months ago
JSON representation
A bash completion helper for perldoc
- Host: GitHub
- URL: https://github.com/ap/perldoc-complete
- Owner: ap
- Created: 2010-02-12T22:57:19.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2013-02-17T14:52:17.000Z (almost 12 years ago)
- Last Synced: 2024-10-11T21:15:45.425Z (3 months ago)
- Language: Perl
- Homepage: http://blogs.perl.org/mt/mt-search.fcgi?blog_id=15;tag=perldoc-complete
- Size: 112 KB
- Stars: 47
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.mkd
Awesome Lists containing this project
README
# A bash completion helper for perldoc
Check [the back story][1] if you want the details about this.
Using it as as simple as saving it somewhere in your `$PATH`
and adding the following line to your `.bashrc`:complete -C perldoc-complete -o nospace -o default perldoc
Or do as I do, and add the following *two* lines:
alias pod=perldoc
complete -C perldoc-complete -o nospace -o default podThat’s all; now you can hit the Tab key at some point after
typing `perldoc` or `pod` and get some sensible suggestions.
Or hit the Tab key just to browse your module library.Have fun.
[1]: http://blogs.perl.org/mt/mt-search.fcgi?blog_id=15;tag=perldoc-complete