Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
harshad1 committed Jan 27, 2024
1 parent 2b024a3 commit 71c989c
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 @@ -870,7 +870,7 @@ fun! s:change_bullet_level(direction, lnum)
endif

let l:curr_indent = indent(a:lnum)
let l:curr_bullet= s:closest_bullet_types(a:lnum, l:curr_indent)
let l:curr_bullet = s:closest_bullet_types(a:lnum, l:curr_indent)
let l:curr_bullet = s:resolve_bullet_type(l:curr_bullet)

let l:curr_line = l:curr_bullet.starting_at_line_num
Expand Down Expand Up @@ -962,7 +962,7 @@ endfun

fun! s:change_bullet_level_and_renumber(direction)
" Calls change_bullet_level and then renumber_whole_list if required
call s:change_bullet_level(a:direction, line(','))
call s:change_bullet_level(a:direction, line('.'))
if g:bullets_renumber_on_change
call s:renumber_whole_list()
endif
Expand Down

0 comments on commit 71c989c

Please sign in to comment.