1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
Amir
2024-10-06 10:25:50 +02:00
parent ee7e062909
commit 46294d589d
202 changed files with 306918 additions and 203617 deletions

View File

@ -74,8 +74,15 @@ describe 'snippet state'
Expect b:snip_state.stop_no == 3
end
it 'does something at the ends'
"
it 'wraps around when going before the first or after the last stop'
let b:snip_state.stops = { 0 : {}, 1 : {}, 2 : {}, 3 : {} }
let b:snip_state.stop_count = 4
let b:snip_state.stop_no = 3
call b:snip_state.find_next_stop(0)
Expect b:snip_state.stop_no == 1
let b:snip_state.stop_no = 1
call b:snip_state.find_next_stop(1)
Expect b:snip_state.stop_no == 3
end
end