vimdiff:跳到行内的下一个差异?


35

vimdiff比较文件非常方便。但是,我经常在行长且行内差异较小的文件上使用它。

vimdiff将正确地突出显示一行内的差异(整行粉红色,不同字符红色)。在这些情况下,能够跳到该行内的下一个差异会很好。

您可以跳至“下一个差异”(]c),但这将跳至具有差异的下一行。

有没有办法转到当前行中的下一个不同字符?

Answers:


8

我看到两种解决方案:

  1. 您必须测试当前语法突出显示才能跳到该行的红色部分。
  2. 您将必须在两个缓冲区中提取当前行,并找到第一个与正确定位光标不同的字符

这两个解决方案都需要在] c之后执行,并且都需要vim脚本。

编辑:这是一个似乎可行的初稿:

nnoremap <expr> <silent> <F3>   (&diff ? "]c:call \<sid>NextDiff()\<cr>" : ":cn\<cr>")

function! s:GotoWinline(w_l)
  normal! H
  while winline() < a:w_l
    normal! j
  endwhile
  " todo: beware of cases where the window is too little
endfunction

" Better ]c, [c jump
function! s:NextDiff()
  if ! &diffopt =~ 'filler' | return | endif

  let ignore_blanks = &diffopt =~ 'iwhite'

  " Assert: called just after a ]c or a [c
  " Forces the cursos to be synchronized in all synced windows
  " let diff_l = line()
  try 
    let foldenable = &foldenable
    set nofoldenable

    let w_l = winline() " problematic with enabled lines (from diff...)
    " echomsg w_l.'|'.line('.').'|'.getline('.')

    let lines = {}
    windo if &diff | call <sid>GotoWinline(w_l) | let lines[winnr()]={'text':getline('.'), 'number':line('.')} | endif
  finally
    let &foldenable = foldenable
  endtry

  " echomsg string(lines)
  if len(lines) < 2 | return | endif

  let indices = repeat([0], len(lines))
  let tLines = values(lines)
  let found = 0
  " infinite loop on two empty texts...
  while ! found
    let c = ''
    let next_idx = []
    let i = 0
    while i != len(indices)
      let crt_line = tLines[i].text
      let n = indices[i]
      if len(crt_line) == n
    let found = 1
    break
      endif

      let c2 = (len(crt_line) == n) ? 'EOL' : crt_line[n]
      if empty(c) 
    let c = c2
      endif

      " checks match
      let n += 1
      if c =~ '\s'
    if (c2 != c) && (ignore_blanks && c2 !~ '\s')
      let found = 1
      break
    else " advance
      while ignore_blanks && (n == len(crt_line) || crt_line[n] =~ '\s')
        let n += 1
      endwhile
    endif
      else
    if c2 != c
      let found = 1
      break
    endif
      endif
      let next_idx += [n]

      let i += 1
    endwhile
    if found | break | endif

    let indices = next_idx
  endwhile

  " now goto the right column
  let windows = keys(lines)
  " Assert len(windows) == len(indices)
  let w = 0
  while w != len(windows)
    " echomsg 'W#'.windows[w].' -> :'(tLines[w].number).'normal! '.(indices[w]+1).'|'
    exe windows[w].'wincmd w'
    silent! exe (tLines[w].number).'normal! 0'.(indices[w]).'l'
    let w += 1
  endwhile
  " echomsg string(indices)
endfunction

我已经放弃了这一点,因为似乎没有简单的方法可以完成它。由于您的回答似乎可以满足我的要求,因此我将其表示感谢。
sleske 2010年

2
从那时起,我将代码放入此脚本中code.google.com/p/lh-vim/source/browse/misc/trunk/plugin/…(还有其他一些事情),但是不幸的是,我已经观察到不时发生的无限循环。我最终将修复它。
卢克·赫米特

12

这是一个简单的解决方法:

您可以使用set wrap

如果差异导致文本以不相等的行数换行,则会产生问题。


1
快速又肮脏,但这确实为我完成了工作。
Mobius

2

我无法弄清楚如何使用这vimdiff两种方法,但是您可以wdiff改为查看。它显示两个文件之间的差异,一次只显示一个单词。

我不得不从源代码编译它:

curl http://ftp.gnu.org/gnu/wdiff/wdiff-1.2.1.tar.gz > wdiff-1.2.1.tar.gz
tar -xzvf wdiff-1.2.1.tar.gz
cd wdiff-1.2.1
./configure
make
make install

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.