If you scroll up all the way to the first line of a window, and then do a search down (using /findtext -n, or the ctrl+f find dialog for that matter), the search will skip the second line, regardless of whether it matches the search or not.

To illustrate what I mean:
Code:
alias findtextbug {
  [color:green]; create and activate test window[/color]
  window -a @test | clear @test
  [color:green]; add some lines to it[/color]
  tokenize 32 1 2 3 4 | echo @test test $*
  [color:green]; scroll up to the first line[/color]
  findtext test 1
  [color:green]; now this should scroll down to "test 2"..
  ; however, it scrolls down to "test 3"[/color]
  findtext -n test
}