Skip to content

Commit

Permalink
Merge pull request #193 from vim-skk/fix_mapset
Browse files Browse the repository at this point in the history
Fix mapset() arguments
  • Loading branch information
kuuote committed Mar 21, 2024
2 parents 1a41a6b + b2b7338 commit 438b9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/skkeleton/internal/map.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function skkeleton#internal#map#restore() abort
for [mode, maps] in items(buf)
execute mode .. 'mapclear <buffer>'
for m in maps
call mapset(m)
call mapset(mode, v:false, m)
endfor
endfor
silent! unlet s:vault[bufnr]
Expand Down

0 comments on commit 438b9d2

Please sign in to comment.