]> git.notmuchmail.org Git - notmuch/blobdiff - vim/plugin/notmuch.vim
remove some debug code from NM_cmd_search()
[notmuch] / vim / plugin / notmuch.vim
index 756472c4775ad0feb9991e7b618fc03f13510150..dfa4c432faca9d12c8693063f5ec2382e45fc862 100644 (file)
@@ -123,11 +123,8 @@ function! s:NM_cmd_search(words)
                 let cmd = cmd + ['--sort=oldest-first']
         endif
         let data = s:NM_run(cmd + a:words)
-        "let data = substitute(data, '27/27', '25/27', '')
-        "let data = substitute(data, '\[4/4\]', '[0/4]', '')
         let lines = split(data, "\n")
         let disp = copy(lines)
-        "call map(disp, 'substitute(v:val, "^thread:\\S* ", "", "")' )
         call map(disp, 's:NM_cmd_search_fmtline(v:val)')
 
         call <SID>NM_newBuffer('search', join(disp, "\n"))