본문 바로가기
Study/Linux

Vi에서 오타 체크 하는 방법

by 재현아비 2012. 10. 24.
반응형

~/.vimrc 에 다음과 같은 내용을 추가하자


" version 7+ commands
if version >= 700 
  " spelling is configured yet disabled by default
  setlocal nospell
  " set a spell file where new words are added with 'zg'
  set spellfile=~/.vim.spell.add

  nnoremap <silent> <F7> <ESC>:setlocal spell spelllang=en_us<CR>
  nnoremap <silent> <F8> <ESC>:setlocal nospell<CR>
endif


F7을 누르면 spell check 이 사작되고 F8를 누르면 spellcheck이 꺼진다.

아래는 spell의 자주 사용되는 명령어이니 사용하면 편리하다.

Here are some of the more useful spell checking commands:

  • zg to mark a word as correctly spelled
  • zw to mark a word as misspelled
  • zug undo zg
  • zuw undo zw
  • z= show a list of alternate spellings
  • :spellr repeat the last z= replacement for all matches in the current window
  • ]s skip to next misspelled word
  • [s skip to previous misspelled word

  • For more information run :help spell inside a Vim session!

    반응형

    'Study > Linux' 카테고리의 다른 글

    How to solve Python error when use Mercurial  (0) 2014.12.23
    Makefile 만들시 자동으로 파일이름에 rev 및 날짜 추가하기  (0) 2012.11.02
    Unbuntu xpdf 버그 수정  (0) 2012.10.19
    VIM 설정  (0) 2011.09.01