mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 20:38:08 +01:00
vim: fix an error in the logic for finding message under cursor in show screen
This commit is contained in:
parent
b2830acc04
commit
54a7df40a2
1 changed files with 1 additions and 1 deletions
|
@ -496,7 +496,7 @@ function! s:NM_show_message_id()
|
||||||
let info = b:nm_raw_info
|
let info = b:nm_raw_info
|
||||||
let lnum = line('.')
|
let lnum = line('.')
|
||||||
for msg in info['msgs']
|
for msg in info['msgs']
|
||||||
if lnum < msg['start']
|
if lnum >= msg['start']
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue