NERDTree에서 특정 파일 숨기기


23

Vim NERDTree 플러그인에서 객체 파일 (* .o)을 숨기고 싶습니다. 플러그인이 아직이 기능을 지원합니까?

답변:


29

NERDTreeIgnore 옵션을 사용하려고합니다 (예 : let NERDTreeIgnore=['\.o$', '\~$']

자세한 내용은 NERDTree 무시하십시오.


2

이것이 New NerdTree Documentation에 따라 도움이되기를 바랍니다.

// put this in your .vimrc
set wildignore+=*.pyc,*.o,*.obj,*.svn,*.swp,*.class,*.hg,*.DS_Store,*.min.*

// Nerdtree config for wildignore
let NERDTreeRespectWildIgnore=1
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.