helm-perldoc

https://github.com/syohex/emacs-helm-perldoc.git

git clone 'git://github.com/syohex/emacs-helm-perldoc.git'
6

helm-perldoc.el travis badge melpa badge melpa stable badge

helm-perldoc

Introduction

helm-perldoc.el is perldoc, Perl documentation command, with helm interface.

Requirements

Installation

You can install helm-perldoc from MELPA with package.el.

Basic Usage

helm-perldoc

Search module and do action.

helm-perldoc:setup

Update module list for viewing documenations.

helm-perldoc:carton-setup

Update module list based Carton. Local library path is decided on helm-perldoc:default-carton-path.

helm-perldoc:history

Search modules which is already searched

Customize

helm-perldoc:perl5lib

PERL5LIB envirnoment variable which is set when perl and perldoc commands are executed.

helm-perldoc:default-carton-path(Default local/lib/perl5)

Default carton library path.

Actions

Setup

;; helm-perldoc:setup takes long time on low power platform
(eval-after-load "cperl-mode"
  '(progn
    (helm-perldoc:setup)))

;; auto carton setup
(add-hook 'cperl-mode-hook 'helm-perldoc:carton-setup)