====== vim search text ====== * [[http://stackoverflow.com/questions/2287440/how-to-do-case-insensitive-search-in-vim|How to do case insensitive search in Vim]] * ''set ignorecase|ic'' : 검색시 대소문자 무시 * ''set noignorecase|noic'' : 검색시 대소문자 체크 * ''set smartcase'' : 대소문자 무시여부를 똑똑하게 결정. ''set ignorecase''도 함께 돼 있어야 함. * 검색어가 모두 소문자 : 대소문자 무시 * 검색어에 대문자 포함 : 대소문자 체크 ===== 대소문자 임시 설정 ===== * 환경 설정에 무관하게 검색 시점에 지정 * ''\C'' : 대소문자 체크 * ''\c'' : 대소문자 무시 /copyright\c : 대소문자 무시 /CopyRight\C : 대소문자 체크 ===== search/replace with input ===== * [[http://stackoverflow.com/questions/35915448/vim-find-all-occurences-and-replace-with-input|VIM find all occurences and replace with input]] * 단어를 검색하고 대체할 문자열을 입력받아서 대체하는 방법 :%s/찾을문자열/\=input('replace <'.submatch(0).'> with: ')/gc