vim-patch:9.1.1893: ICCF charity will dissolve (#36427)

Problem:  ICCF charity will dissolve
Solution: Update references to Kuwasha

Since the ICCF[1] will be dissolved and handing over to the Kuwasha charity
to continue supporting the Kibaale Children Center in Uganda, update the
uganda.txt help file.

[1]: https://groups.google.com/g/vim_announce/c/pUNbNXBLbKw/m/-zFUd4JjAQAJ

fixes: vim/vim#18584
closes: vim/vim#18667

0405665638

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2025-11-02 08:29:00 +08:00
committed by GitHub
parent a4988bb3cd
commit d847548a1c
6 changed files with 53 additions and 83 deletions

View File

@@ -87,8 +87,8 @@ endfunc
func Test_window_cmd_wincmd_gf()
let fname = 'test_gf.txt'
let swp_fname = '.' . fname . '.swp'
call writefile([], fname)
call writefile([], swp_fname)
call writefile([], fname, 'D')
call writefile([], swp_fname, 'D')
function s:swap_exists()
let v:swapchoice = s:swap_choice
endfunc
@@ -114,9 +114,8 @@ func Test_window_cmd_wincmd_gf()
call assert_notequal(fname, bufname("%"))
new | only!
call delete(fname)
call delete(swp_fname)
augroup! test_window_cmd_wincmd_gf
bw!
endfunc
func Test_window_quit()
@@ -599,14 +598,14 @@ func Test_window_jump_tag()
CheckFeature quickfix
help
/iccf
call assert_match('^|iccf|', getline('.'))
/Kuwasha
call assert_match('^|Kuwasha|', getline('.'))
call assert_equal(2, winnr('$'))
2wincmd }
call assert_equal(3, winnr('$'))
call assert_match('^|iccf|', getline('.'))
call assert_match('^|Kuwasha|', getline('.'))
wincmd k
call assert_match('\*iccf\*', getline('.'))
call assert_match('\*Kuwasha\*', getline('.'))
call assert_equal(2, winheight(0))
wincmd z
@@ -778,12 +777,10 @@ endfunc
func Test_window_prevwin()
" Can we make this work on MS-Windows?
if !has('unix')
return
endif
CheckUnix
set hidden autoread
call writefile(['2'], 'tmp.txt')
call writefile(['2'], 'tmp.txt', 'D')
new tmp.txt
q
call Fun_RenewFile()
@@ -799,9 +796,9 @@ func Test_window_prevwin()
wincmd p
" reset
q
call delete('tmp.txt')
set hidden&vim autoread&vim
delfunc Fun_RenewFile
bw!
endfunc
func Test_relative_cursor_position_in_one_line_window()
@@ -2073,6 +2070,7 @@ func Test_splitkeep_skipcol()
let buf = RunVimInTerminal('-S XTestSplitkeepSkipcol', #{rows: 12, cols: 40})
call VerifyScreenDump(buf, 'Test_splitkeep_skipcol_1', {})
call StopVimInTerminal(buf)
endfunc
func Test_splitkeep_line()
@@ -2091,6 +2089,7 @@ func Test_splitkeep_line()
call term_sendkeys(buf, ":wincmd s\<CR>")
call VerifyScreenDump(buf, 'Test_splitkeep_line_2', {})
call StopVimInTerminal(buf)
endfunc
func Test_new_help_window_on_error()