Package Details: vim-manpageview 25w-1

Git Clone URL: https://aur.archlinux.org/vim-manpageview.git (read-only, click to copy)
Package Base: vim-manpageview
Description: Viewer for manpages, gnu info, perldoc, and php (unix/linux/cygwin)
Upstream URL: http://www.drchip.org/astronaut/vim/index.html#MANPAGEVIEW
Licenses: custom:vim
Groups: vim-plugins
Submitter: lpapp
Maintainer: None
Last Packager: dracorp
Votes: 12
Popularity: 0.000000
First Submitted: 2009-07-15 22:23 (UTC)
Last Updated: 2023-02-17 20:47 (UTC)

Latest Comments

1 2 Next › Last »

dracorp commented on 2012-11-09 11:44 (UTC)

Upgraded to 25b

<deleted-account> commented on 2012-11-09 10:42 (UTC)

pageview-25a.vba.gz a546a921543e0db0b77b012bb07fb79e

hav3lock commented on 2012-09-15 06:29 (UTC)

replace the first checksum in the md5checksum array with this: e7b594b659ea321f844f409ce569550d

Taikou commented on 2012-08-12 23:38 (UTC)

hey i think the md5sum of manpageview.vba.gz is wrong

dracorp commented on 2012-07-10 08:25 (UTC)

Fixed depends, replaced vim-cecutil by vim-align.

dracorp commented on 2012-05-14 07:51 (UTC)

Fixed license.

dracorp commented on 2012-02-27 07:40 (UTC)

Fixed.

dlin commented on 2012-02-26 03:11 (UTC)

==> Validating source files with md5sums... manpageview.vba.gz ... FAILED license.txt ... Passed manpageview.vim.diff.gz ... Passed

dracorp commented on 2011-11-17 23:22 (UTC)

I added to autoload/manpageview.vim: let v:errmsg="no manpage exists". Now I can do something like that: function! DisplayManpage() let filename = expand("%") let short_filename = expand("%:r") let filetype = &filetype call manpageview#ManPageView(0,0,filename) if v:errmsg == "no manpage exists" call manpageview#ManPageView(0,0,short_filename) if v:errmsg == "no manpage exists" call manpageview#ManPageView(0,0,filetype) endif endif endf nmap <silent> <F1> <Esc>:call DisplayManpage()<CR> At the beginning looking for man page for file being edited. If not found then looking for filename without extension. If not found looking for fileype.