[vim] Vim에서 여러 버퍼를 삭제하는 방법은 무엇입니까?

Vim에서 여러 파일이 버퍼로 열려 있다고 가정합니다. 파일은이 *.cpp, *.h그리고 일부입니다 *.xml. 모든 XML 파일을 :bd *.xml. 그러나 Vim은이를 허용하지 않습니다 (E93 : 둘 이상의 일치 …).

이렇게 할 수있는 방법이 있습니까?

추신 나는 그것이 :bd file1 file2 file3작동 한다는 것을 알고 있습니다. 그래서 어떻게 든 평가할 *.xmlfile1.xml file2.xml file3.xml있습니까?



답변

<C-a>모든 경기를 완료 하는 데 사용할 수 있습니다 . 따라서 입력 :bd *.xml한 다음을 누르면 <C-a>vim이 명령을 완료합니다 :bd file1.xml file2.xml file3.xml.


답변

:3,5bd[elete]

3에서 5까지의 버퍼 범위를 삭제합니다.


답변

다음을 대신 사용할 수도 있습니다.

    :.,$-bd[elete]    " to delete buffers from the current one to last but one
    :%bd[elete]       " to delete all buffers


답변

이것을 사용할 수 있습니다.

:exe 'bd '. join(filter(map(copy(range(1, bufnr('$'))), 'bufname(v:val)'), 'v:val =~ "\.xml$"'), ' ')

명령에 추가하는 것은 매우 쉽습니다.

function! s:BDExt(ext)
  let buffers = filter(range(1, bufnr('$')), 'buflisted(v:val) && bufname(v:val) =~ "\.'.a:ext.'$"')
  if empty(buffers) |throw "no *.".a:ext." buffer" | endif
  exe 'bd '.join(buffers, ' ')
endfunction

command! -nargs=1 BDExt :call s:BDExt(<f-args>)


답변

아래 스크립트를 시도하십시오. 예는 “txt”의 경우 필요에 따라 변경합니다 (예 : “xml”). 수정 된 버퍼는 삭제되지 않습니다. \ bd를 눌러 버퍼를 삭제하십시오.

map <Leader>bd :bufdo call <SID>DeleteBufferByExtension("txt")

function!  <SID>DeleteBufferByExtension(strExt)
   if (matchstr(bufname("%"), ".".a:strExt."$") == ".".a:strExt )
      if (! &modified)
         bd
      endif
   endif
endfunction

[편집]
: bufdo없이 동일 (Luc Hermitte의 요청에 따라 아래 주석 참조)

map <Leader>bd :call <SID>DeleteBufferByExtension("txt")

function!  <SID>DeleteBufferByExtension(strExt)
   let s:bufNr = bufnr("$")
   while s:bufNr > 0
       if buflisted(s:bufNr)
           if (matchstr(bufname(s:bufNr), ".".a:strExt."$") == ".".a:strExt )
              if getbufvar(s:bufNr, '&modified') == 0
                 execute "bd ".s:bufNr
              endif
           endif
       endif
       let s:bufNr = s:bufNr-1
   endwhile
endfunction


답변

나도 항상이 기능이 필요했습니다. 이것이 내 vimrc에있는 솔루션입니다.

function! GetBufferList()
    return filter(range(1,bufnr('$')), 'buflisted(v:val)')
endfunction

function! GetMatchingBuffers(pattern)
    return filter(GetBufferList(), 'bufname(v:val) =~ a:pattern')
endfunction

function! WipeMatchingBuffers(pattern)
    let l:matchList = GetMatchingBuffers(a:pattern)

    let l:count = len(l:matchList)
    if l:count < 1
        echo 'No buffers found matching pattern ' . a:pattern
        return
    endif

    if l:count == 1
        let l:suffix = ''
    else
        let l:suffix = 's'
    endif

    exec 'bw ' . join(l:matchList, ' ')

    echo 'Wiped ' . l:count . ' buffer' . l:suffix . '.'
endfunction

command! -nargs=1 BW call WipeMatchingBuffers('<args>')

자, 난 그냥 할 수있는 :BW regex예를 들어, ( :BW \.cpp$자신의 경로 이름에 그 패턴과 일치하는 모든 일치하는 버퍼를 닦아냅니다.

삭제보다는 닦아하려는 경우, 당신은 물론 대체 할 수 exec 'bw ' . join(l:matchList, ' ')exec 'bd ' . join(l:matchList, ' ')


답변

아주 간단하게 : :bd[elete]명령을 사용하십시오 . 예를 들어, :bd[elete] buf#1 buf#5 buf#3버퍼 1, 3 및 5를 삭제합니다.