typo: strange and unnecessary "call" and fake news in README
This commit is contained in:
parent
2970edd2ab
commit
9a44a23fc9
2 changed files with 1 additions and 2 deletions
|
|
@ -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
|
- Insert characters (supports Unicode) at or after the cursor position
|
||||||
- Support for counts to insert a character multiple times
|
- 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
|
- Stay in normal mode for efficient editing
|
||||||
- Minimal workflow interruption
|
- Minimal workflow interruption
|
||||||
- Works with Vim 9+
|
- Works with Vim 9+
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ g:last_singlechar_count = 1
|
||||||
nnoremap <Plug>(singlechar-repeat) :call g:RepeatSingleChar()<CR>
|
nnoremap <Plug>(singlechar-repeat) :call g:RepeatSingleChar()<CR>
|
||||||
|
|
||||||
# Direct command implementations
|
# 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>)
|
command! -count=1 -nargs=? InsertCharAfter singlechar.InsertChar('after', <count>, <q-args>)
|
||||||
|
|
||||||
# Create default mappings unless disabled
|
# Create default mappings unless disabled
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue