-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
41 lines (27 loc) · 1.07 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# INSTALLATION
Using Vundle:
# add this line to .vimrc
Plugin "osfameron/perl-tags-vim"
# then run :PluginInstall
Using other package managers
TODO: confirm that installation works with Pathogen et al
Manual VIM configuration
If you haven't yet switched to a Modern VIM package manager, you can of
course copy the code from `ftplugin/perl.vim` into your Vim configuration
as appropriate!
# USAGE
* open a Perl file
* use Tags as normal: <C-]>, <C-t>, g] etc.
* :call PT_show_tags() # view the generated tags file
# NOTE
This plugin is under development. Comments from more experienced
Vim hackers are welcome, as are bug reports and pull requests.
The fatpacked dependencies have been generated and tested on Perl 5.14.2
(which is the default on the popular Debian Wheezy (stable) and Ubuntu
Precise64 Linux distributions.) Does it work on other platforms? Please
let me know!
# TODO
* consider using a tagger per file-path?
* allow user to use non-fatpacked Perl::Tags or other customizations
* more documentation
* tests