We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff49499 commit a4b2830Copy full SHA for a4b2830
autoload/julia_blocks.vim
@@ -696,7 +696,7 @@ function! s:find_block(current_mode)
696
endfunction
697
698
function! s:repeated_find(ai_mode)
699
- let repeat = b:jlblk_count + (a:ai_mode == 'i' && v:count1 > 1 ? 1 : 0)
+ let repeat = b:jlblk_count + (a:ai_mode == 'i' && b:jlblk_count > 1 ? 1 : 0)
700
for c in range(repeat)
701
let current_mode = (c < repeat - 1 ? 'a' : a:ai_mode)
702
let ret_find_block = s:find_block(current_mode)
0 commit comments