blob: 85c12962866c86a4f533ebe8c16e0b25c204c619 [file] [log] [blame]
Bram Moolenaar343b8c02017-02-17 12:04:56 +01001" Tests for :help
2
3func Test_help_restore_snapshot()
4 help
5 set buftype=
6 help
7 edit x
8 help
9 helpclose
10endfunc
Bram Moolenaar751ba612017-03-16 22:26:44 +010011
12func Test_help_errors()
13 call assert_fails('help doesnotexist', 'E149:')
14 call assert_fails('help!', 'E478:')
Bram Moolenaara4f99f52017-08-26 16:25:32 +020015
16 new
17 set keywordprg=:help
18 call setline(1, " ")
19 call assert_fails('normal VK', 'E349:')
20 bwipe!
21endfunc
22
23func Test_help_keyword()
24 new
25 set keywordprg=:help
26 call setline(1, " Visual ")
27 normal VK
28 call assert_match('^Visual mode', getline('.'))
29 call assert_equal('help', &ft)
30 close
31 bwipe!
Bram Moolenaar751ba612017-03-16 22:26:44 +010032endfunc