Update of /cvsroot/vim-latex/vimfiles/plugin
In directory sc8-pr-cvs1:/tmp/cvs-serv32164
Modified Files:
explorer.vim
Log Message:
First attempt at trying to make explorer.vim not conflict with the default
explorer.vim which ships with vim. It would have been _really_ nice to have
first discussed the implementation of this feature so I could have avoided
this problem beforehand. :(
Index: explorer.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/plugin/explorer.vim,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** explorer.vim 2 May 2003 20:00:45 -0000 1.3
--- explorer.vim 30 Jun 2003 01:18:52 -0000 1.4
***************
*** 31,38 ****
" Has this already been loaded?
! if exists("loaded_explorer")
finish
endif
! let loaded_explorer=1
" Line continuation used here
--- 31,38 ----
" Has this already been loaded?
! if exists("loaded_tex_explorer")
finish
endif
! let loaded_tex_explorer=1
" Line continuation used here
***************
*** 1342,1358 ****
endwhile
endfunction
-
- "---
- " Set up the autocommand to allow directories to be edited
- "
- augroup fileExplorer
- au!
- " Fill the window when entering the buffer; ":edit dir".
- au BufEnter * call s:EditDir()
- " Set the window variables after a split; ":split".
- au WinEnter * if !exists("w:sortdirection") | call s:EditDir() | endif
- " Fill the windows after Vim has started up.
- au VimEnter * call s:EditAll()
- augroup end
" restore 'cpo'
--- 1342,1345 ----
|