[email protected] 写道:
> 
> Well, I mean I just want to get the vim script functions in a loaded vim 
> script.
> Is there a simpler way to do it?

The scope name by itself can be used as a |Dictionary|.  For example, to
delete all script-local variables:
         :for k in keys(s:)
         :    unlet s:[k]
         :endfor

The above are in Vim manual, you can try if this works for funcrefs.


--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to