====== Vim NERDCommenter ====== 파일 타입에 따라 단축키로 주석을 달거나 주석을 해제 한다. * http://www.vim.org/scripts/script.php?script_id=1218 ===== 설정 ===== " 주석 처리시에 주석과 코드 사이에 한 칸 공백 넣기 let NERDSpaceDelims=1 ===== 기본 단축키 ===== * [count]cc |NERDComComment| 선택된 줄을 주석 처리한다. * [count]cn |NERDComNestedComment| cc와 같으나, 강제 이중 주석처리(이미 주석 처리 돼 있어도 또 주석처리). * [count]cu |NERDComUncommentLine| 주석 제거. * [count]c |NERDComToggleComment| 선택된 줄의 주석처리를 토글한다. 맨 위에 줄의 상태를 따른다. * [count]cm |NERDComMinimalComment| 다중 주석(/* .. */ 계열)로 주석 처리 * [count]ci |NERDComInvertComment| 선택된 줄을, 각 줄별로 주석 상태 토글. * [count]cs |NERDComSexyComment| 예쁘게 주석 처리 * [count]cy |NERDComYankComment| 먼저 복사(yank) 후에 주석 처리 * c$ |NERDComEOLComment| 줄의 현재 위치 이후를 주석 처리 * cA |NERDComAppendComment| 줄 끝에 주석 기호 넣고 입력 모드로 전환 * |NERDComInsertComment| 현재 커서 위치에 주석 기호 넣고 입력모드로 전환. 입력 모드 전용 명령 * ca |NERDComAltDelim| Switches to the alternative set of delimiters. 주석 기호를 바꿔치기 하는 것임. Java 모드에서는 작동 안했음. * [count]cl 혹은 [count]cb |NERDComAlignedComment| Same as |NERDComComment| except that the delimiters are aligned down the left side (cl) or both sides (cb). ===== 참조 ===== * [[https://myeongjae.kim/blog/2017/07/19/vimlinux-11-nerd-commenter-%EC%A3%BC%EC%84%9D-%EB%8B%A8%EC%B6%95%ED%82%A4-%ED%94%8C%EB%9F%AC%EA%B7%B8%EC%9D%B8|[vim/Linux] 11. NERD Commenter, 주석 단축키 플러그인 :: 김명재, Myeongjae Kim]]