typo: strange and unnecessary "call" and fake news in README

This commit is contained in:
lohhiiccc 2025-08-19 16:52:07 +02:00
parent 2970edd2ab
commit 9a44a23fc9
2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,6 @@ A simple Vim plugin that lets you insert single characters (including Unicode) w
- Insert characters (supports Unicode) at or after the cursor position
- Support for counts to insert a character multiple times
- Input validation: warns if more than one character is entered
- Stay in normal mode for efficient editing
- Minimal workflow interruption
- Works with Vim 9+

View file

@ -54,7 +54,7 @@ g:last_singlechar_count = 1
nnoremap <Plug>(singlechar-repeat) :call g:RepeatSingleChar()<CR>
# Direct command implementations
command! -count=1 -nargs=? InsertCharAt call singlechar.InsertChar('at', <count>, <q-args>)
command! -count=1 -nargs=? InsertCharAt singlechar.InsertChar('at', <count>, <q-args>)
command! -count=1 -nargs=? InsertCharAfter singlechar.InsertChar('after', <count>, <q-args>)
# Create default mappings unless disabled