vim 위치 목록을 닫아 두십시오.
Location List eating up the screen while I am zoomed in and trying to live code
위치 목록 전환
일부 Google 검색을 통해 범인이 syntastic이라는 것을 알았습니다.
auto_loc_list
기능이 있습니다. 설정으로 끌 수 있습니다syntastic_auto_loc_list=0
.let syntastic_auto_loc_list=0
키바인딩
대부분의 시간 동안 위치 목록을 자동으로 열어두고 싶지만 계속 열지 않으려면 일반적으로 해 롭습니다. 위치 목록이 계속 전체 화면을 차지하는 동안 라이브 코드를 시도하는 것은 좋지 않습니다.
먼저 위치 목록과 구문을 함께 전환하는 함수를 만듭니다.
let s:syntastic_auto_loc_list = 0
function! s:ToggleLocationList()
if s:syntastic_auto_loc_list == 1
let s:syntastic_auto_loc_list = 0
let syntastic_auto_loc_list = 0
:lclose
else
let s:syntastic_auto_loc_list = 1
let syntastic_auto_loc_list = 1
:lopen
endif
endfunction
이 바인딩을 사용하면 일반 모드에서
gtl
를 사용하여 위치 목록을 전환할 수 있습니다.:command! ToggleLocationList :call s:ToggleLocationList()
nnoremap gtl :ToggleLocationList<CR>
gt
키 바인딩 아래에서 토글 키맵 세트를 시작하고 있습니다. 이것은 붙여넣기 모드를 전환하기 위해 만든 키 바인딩 다음의 두 번째 키맵입니다.
Reference
이 문제에 관하여(vim 위치 목록을 닫아 두십시오.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/waylonwalker/keep-location-list-closed-37l4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)