Skip to content

Commit

Permalink
Fixed name collision
Browse files Browse the repository at this point in the history
  • Loading branch information
harshad1 committed Jan 27, 2024
1 parent dc4a810 commit b9a1eaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/bullets.vim
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ command! RenumberList call <SID>renumber_whole_list()
" --------------------------------------------------------- }}}

" Changing outline level ---------------------------------- {{{
fun! s:change_bullet_level(direction, lnum)
fun! s:change_line_bullet_level(direction, lnum)
let l:curr_line = s:parse_bullet(a:lnum, getline(a:lnum))

if a:direction == 1
Expand Down Expand Up @@ -1007,7 +1007,7 @@ fun! s:change_bullet_level(direction)
" Changes the bullet level for each of the selected lines
let l:sel = s:get_selection()
for l:lnum in range(l:sel.start_line, l:sel.end_line)
call s:change_bullet_level(a:direction, l:lnum)
call s:change_line_bullet_level(a:direction, l:lnum)
endfor

if g:bullets_renumber_on_change
Expand Down

0 comments on commit b9a1eaf

Please sign in to comment.