How do I correct Vim spelling mistakes quicker?

前端 未结 6 1790
醉梦人生
醉梦人生 2020-12-23 12:11

My usual Vim work flow is:

  • In insert mode, spell something wrong.

    \"Vim

相关标签:
6条回答
  • 2020-12-23 12:14

    I created a plugin just for this use case https://github.com/arecarn/vim-spell-utils

    It provides the insert mode mapping CTRL-A that does exactly what was asked and corrects last misspelling with 1st suggestion then returns to insert mode where you you last left off. It also accounts for changes to the line lengths due to spelling corrections while gi and `] do not.

    0 讨论(0)
  • 2020-12-23 12:19

    An improvement to PDug's answer: To make the spelling correction undoable separately from the insertions, use this:

    imap <c-l> <c-g>u<Esc>[s1z=`]a<c-g>u
    

    <c-g>u inserts an undo-break
    The rest is the same.

    This way, if you don't like the chosen correction, you can undo it using <Esc>u. Without the undo-breaks, this would undo the complete insertion. Note that the undo-break at the end of the mapping ensures that text added after the correction can be undone separately from the correction itself.

    Also, I found it convenient to map this to CTRL+F (which is easy to reach) in both insert and normal mode like this:

    imap <c-f> <c-g>u<Esc>[s1z=`]a<c-g>u
    nmap <c-f> [s1z=<c-o>
    

    This way, you can quickly fix the last error (relative to the cursor).

    0 讨论(0)
  • 2020-12-23 12:19

    You can use Ctrl + Y to accept an element in a popup menu. See :help complete_CTRL-Y.

    0 讨论(0)
  • 2020-12-23 12:27

    I fixed it with the following remap in my .vimrc.

    imap <F2> <Esc>mti<C-X>s<Esc>`tla
    

    Press F2 in insert mode to correct the last mistake and go back to insert mode where you were. It overwrites the t marker.

    0 讨论(0)
  • 2020-12-23 12:31

    I can't offer an 'optimal' solution (although I suspect there is a way).

    However, you can use gi to enter insert mode at the place in the file where you last left it. (help gi explains this more eloquently).

    0 讨论(0)
  • 2020-12-23 12:40

    This works fairly well:

    imap ^L <Esc>[s1z=`]a
    

    [s moves to the last spelling mistake
    1z= chooses the first suggestion
    `] move to the last insert point
    a append text

    0 讨论(0)
提交回复
热议问题