> I'm wondering if it is possible to get paramter hinting for functions in PHP > code? I would like to be able to hit ctrl-x ctr-o and get paramter hinting > with my function names.
What kind of hints? Just the number and names? I think a preview window with tag information, which includes the parameters, should show up -- maybe only if the tags file was created. Check out autoload/ phpcomplete.vim in the vim runtime for details. Another option would be to use a plugin that shows the tag info in the echo area when the cursor moves over a parenthesis: http://www.vim.org/scripts/script.php?script_id=1735 http://www.vim.org/scripts/script.php?script_id=2055 If you also want information on the types, which probably is embedded in the functions documentation, you could make vim show the tag in the preview-window, e.g. with :ptag. --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
