Vim Tips Wiki
No edit summary
No edit summary
Line 30: Line 30:
 
--[[User:Dtyall|Dtyall]] 05:19, February 17, 2011 (UTC)
 
--[[User:Dtyall|Dtyall]] 05:19, February 17, 2011 (UTC)
   
Already had a similar fix in the version I was using but it appears I may not have uploaded it. Released a new version (1.5.9) that I can confirm does have these issues. Thanks for the report!
+
Already had a similar fix in the version I was using but it appears I may not have uploaded it. Released a new version (1.5.9) that I can confirm does not have these issues. Thanks for the report!
 
--[[User:dvehrs|dvehrs]] 18:15, February 21, 2013 (UTC)
 
--[[User:dvehrs|dvehrs]] 18:15, February 21, 2013 (UTC)

Revision as of 18:19, 21 February 2013

Use this page to discuss script 397 ShowFunc

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Comments

It would be very awesome for a ToggleShowFunc command, so f1 could show/hide it --Halkeye 18:06, July 15, 2010 (UTC)

Uploaded update (1.5.9) that includes this feature. Don't know why I didn't think of it originally. Thanks for the idea! --dvehrs 18:15, February 21, 2013 (UTC)


On line 295 the definition of function ShowFuncFoldText missed the leading "s:".

Original:

 function! ShowFuncFoldText()

Should be:

 function! s:ShowFuncFoldText()

It will generate error when no ctags binary is found:

 ShowFunc exting.  (Cleaning up functions)
 Error detected while processing /Users/tyuan/.vim/plugin/ShowFunc.vim:
 line  450:
 E130: Unknown function: s:ShowFuncFoldText

--Dtyall 05:19, February 17, 2011 (UTC)

Already had a similar fix in the version I was using but it appears I may not have uploaded it. Released a new version (1.5.9) that I can confirm does not have these issues. Thanks for the report! --dvehrs 18:15, February 21, 2013 (UTC)