diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-14 22:51:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-14 22:51:38 +0000 |
commit | af48b0924f7abdf4d79ab5a79d90550fa14f9e21 (patch) | |
tree | 5ecdae6062c80351eaf7338cc6abdc820d81456a /runtime/plugin | |
parent | 0ce29937aa781dafb208ab0185474404ab79f3cd (diff) | |
download | vim-af48b0924f7abdf4d79ab5a79d90550fa14f9e21.zip |
updated for version 7.0224
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/netrwPlugin.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/plugin/netrwPlugin.vim b/runtime/plugin/netrwPlugin.vim index 1a0a1bc5e..ea635e55c 100644 --- a/runtime/plugin/netrwPlugin.vim +++ b/runtime/plugin/netrwPlugin.vim @@ -91,8 +91,8 @@ endfun " --------------------------------------------------------------------- " NetrwStatusLine: {{{1 fun! NetrwStatusLine() -" let g:stlmsg= "Xbufnr=".w:netrw_explore_bufnr." bufnr=".bufnr(".")." Xline#".w:netrw_explore_line." line#".line(".") - if !exists("w:netrw_explore_bufnr") || w:netrw_explore_bufnr != bufnr(".") || !exists("w:netrw_explore_line") || w:netrw_explore_line != line(".") || !exists("w:netrw_explore_list") +" let g:stlmsg= "Xbufnr=".w:netrw_explore_bufnr." bufnr=".bufnr("%")." Xline#".w:netrw_explore_line." line#".line(".") + if !exists("w:netrw_explore_bufnr") || w:netrw_explore_bufnr != bufnr("%") || !exists("w:netrw_explore_line") || w:netrw_explore_line != line(".") || !exists("w:netrw_explore_list") let &stl= s:netrw_explore_stl if exists("w:netrw_explore_bufnr")|unlet w:netrw_explore_bufnr|endif if exists("w:netrw_explore_line")|unlet w:netrw_explore_line|endif |