Chip,
On Sat 29-Jul-06 12:38pm -0600, you wrote:
> Quoting Bill McCarthy <[EMAIL PROTECTED]>:
>> However, since I cannot seem to get AsNeeded and taglist to
>> play nice together, I cannot use your plugin.
> Hmm, well that's curious; I seem to have no difficulty with the two.
I tried again with just AsNeeded and taglist in my
vimfiles\plugin and vimfiles\doc - otherwise an empty
vimfiles tree - and fairly minimalist _vimrc and _gvimrc
(see below my sig).
I opened an edit session on a small project with 25 .c or .h
files:
gvim *.c *.h
Typing ':Tlist' brings up the Tlist window. Now save the
Tlist session with:
:TlistSessionSave TLS
Close down and type 'gvim' by itself and then type
':TListSessionLoad TLS'
I get:
***warning*** AsNeeded unable to find <ýP23_Tlist_Session_Load> in the
(runtimepath)/AsNeeded directory
1 buffer wiped out
Taglist: Error - Unable to open file TLS
Can you or anyone else duplicate this behavior?
--
Best regards,
Bill
" _vimrc
" ========================================================
se nocp
set runtimepath=~\\vimfiles,$vimruntime,~\\vimfiles\\after
set t_vb=
set visualbell
nmap <F8> :Tlist<CR>
" Taglist Settings
let Tlist_Exit_OnlyWindow = 1
let Tlist_File_Fold_Auto_Close = 1
let Tlist_GainFocus_On_ToggleOpen = 1
let Tlist_Use_SingleClick = 1
let Tlist_Show_Menu = 0
let Tlist_Compact_Format = 1
filetype plugin indent on
syntax on
" ========================================================
" _gvimrc
" ========================================================
set columns=80 lines=999
" ========================================================