mirror of
https://github.com/neovim/neovim.git
synced 2025-11-17 15:51:32 +00:00
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:
@@ -2043,7 +2043,7 @@ vimComment xxx match /\s"[^\-:.%#=*].*$/ms=s+1,lc=1 excludenl contains=@vim
|
||||
{MATCH: +}type :help news{18:<Enter>} to see changes in v{MATCH:%d+%.%d+ +}|
|
||||
|
|
||||
Help poor children in Uganda! |
|
||||
type :help iccf{18:<Enter>} for information |
|
||||
type :help Kuwasha{18:<Enter>} for information |
|
||||
|*2
|
||||
{3: }|
|
||||
|
|
||||
@@ -2102,7 +2102,7 @@ describe('ui/ext_messages', function()
|
||||
{1:~{MATCH: +}}type :help news{18:<Enter>} to see changes in v{MATCH:%d+%.%d+}{1:{MATCH: +}}|
|
||||
{1:~ }|
|
||||
{1:~ }Help poor children in Uganda!{1: }|
|
||||
{1:~ }type :help iccf{18:<Enter>} for information {1: }|
|
||||
{1:~ }type :help Kuwasha{18:<Enter>} for information {1: }|
|
||||
{1:~ }|*5
|
||||
]]
|
||||
local showmode = { { '-- INSERT --', 5, 'ModeMsg' } }
|
||||
@@ -2138,7 +2138,7 @@ describe('ui/ext_messages', function()
|
||||
{1:~{MATCH: +}}type :help news{18:<Enter>} to see changes in v{MATCH:%d+%.%d+}{1:{MATCH: +}}|
|
||||
{1:~ }|
|
||||
{1:~ }Help poor children in Uganda!{1: }|
|
||||
{1:~ }type :help iccf{18:<Enter>} for information {1: }|
|
||||
{1:~ }type :help Kuwasha{18:<Enter>} for information {1: }|
|
||||
{1:~ }|*5
|
||||
]],
|
||||
showmode = showmode,
|
||||
@@ -2175,7 +2175,7 @@ describe('ui/ext_messages', function()
|
||||
{MATCH: +}type :help news{18:<Enter>} to see changes in v{MATCH:%d+%.%d+ +}|
|
||||
|
|
||||
Help poor children in Uganda! |
|
||||
type :help iccf{18:<Enter>} for information |
|
||||
type :help Kuwasha{18:<Enter>} for information |
|
||||
|*5
|
||||
]],
|
||||
cmdline = {
|
||||
@@ -2314,7 +2314,7 @@ it('ui/ext_multigrid supports intro screen', function()
|
||||
{1:~{MATCH: +}}type :help news{18:<Enter>} to see changes in v{MATCH:%d+%.%d+}{1:{MATCH: +}}|
|
||||
{1:~ }|
|
||||
{1:~ }Help poor children in Uganda!{1: }|
|
||||
{1:~ }type :help iccf{18:<Enter>} for information {1: }|
|
||||
{1:~ }type :help Kuwasha{18:<Enter>} for information {1: }|
|
||||
{1:~ }|*4
|
||||
## grid 3
|
||||
|
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user