如何在vim的不同选项卡中跳转到标记?

时间:2011-01-05 11:55:54

标签: vim keyboard-shortcuts

我正在使用MacVim,我通常会打开一些标签。我希望能够在任何打开的文件中删除标记并在它们之间跳转。 mK和K work great when the mark is in the same tab but I've got to use gt to find the tab and then K找到标记......必须有更好的方法吗?

1 个答案:

答案 0 :(得分:3)

这是一个快速而肮脏的黑客,可以满足您的需求。

let s:marks = {}

function! s:Mark(name)
  echomsg "new mark: " a:name
  " todo: record the winnr/bufnr as well
  let s:marks[a:name] = tabpagenr()
  exe 'normal! m'.a:name
endfunction

function! s:Jump(how, name)
  if has_key(s:marks, a:name)
    let nr = s:marks[a:name]
    tabfirst
    let first = tabpagenr()
    while tabpagenr() != nr
      tabnext
      if tabpagenr() == first
 break
      endif
    endwhile
    if tabpagenr() == nr
      exe 'normal! '.a:how.a:name
      " nominal termination
      return
    endif
  endif
  echoerr "tab-mark " . a:name . " not set"
endfunction

nnoremap m :call <sid>Mark(nr2char(getchar()))<cr>
nnoremap ` :call <sid>Jump('`', nr2char(getchar()))<cr>
nnoremap ' :call <sid>Jump("'", nr2char(getchar()))<cr>

的问题:

  • 标记对于每个缓冲区通常是不同的。在这里,所有标记都是全球性的。可能是,我们应该提供到\m\',ang \*backtick*

  • 的映射
  • 这不会考虑拆分窗口。