File plugin/qthelp.vim changed (mode: 100644) (index c3299fb..541cd67) |
1 |
1 |
" Name: qthelp |
" Name: qthelp |
2 |
2 |
" Author: xaizek (xaizek@gmail.com) |
" Author: xaizek (xaizek@gmail.com) |
3 |
|
" Version: 1.0.0 |
|
|
3 |
|
" Version: 1.0.1 |
4 |
4 |
" |
" |
5 |
5 |
" Description: This plugin would allow you to open Qt help pages in browser |
" Description: This plugin would allow you to open Qt help pages in browser |
6 |
6 |
" from your C++ source code. Currently it can show help if the word |
" from your C++ source code. Currently it can show help if the word |
|
52 |
52 |
" - Use Vim documentation format. |
" - Use Vim documentation format. |
53 |
53 |
" |
" |
54 |
54 |
" ChangeLog: v1.0.0 (2010-12-07) - Initial version |
" ChangeLog: v1.0.0 (2010-12-07) - Initial version |
|
55 |
|
" v1.0.1 (2013-03-09) - Fixed multiple load guard |
55 |
56 |
|
|
56 |
57 |
if exists("g:loaded_qthelp") |
if exists("g:loaded_qthelp") |
57 |
58 |
finish |
finish |
58 |
59 |
endif |
endif |
59 |
60 |
|
|
60 |
|
let g:loaded_gthelp = 1 |
|
|
61 |
|
let g:loaded_qthelp = 1 |
61 |
62 |
|
|
62 |
63 |
if !exists('g:qthelp_browser') |
if !exists('g:qthelp_browser') |
63 |
64 |
let g:qthelp_browser = '' |
let g:qthelp_browser = '' |