LoginSignup
3
3

More than 5 years have passed since last update.

perldoc-vim

Posted at

Vim の中から perldoc を引けるプラグイン。モジュール名(e.g. Getopt::Long)にカーソルをフォーカスした後 Shift + k すると、ウィンドウがもうひとつ開いて POD が表示される。

#!/usr/bin/perl
use strict;
use warnings;

use Getopt::Long; # <= ここで Shift + k を押す 

さらに POD を表示させた状態で s をタイプすると、モジュールのソースが表示される。モジュールのソースを簡単に確認できて非常に便利。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3