How to implement function hints in your code

I have seen that this has been asked previously, but never answered, and I want to know if this should go in as a feature request or if the capability is just not obvious.
When one starts typing e.g. 'plot(' and then waits, a series of suggested completions pops up. If I try this on my own code, it simply bases the suggestion on the top line. An abstract MWE example:
function out = foo(in, varargin)
p = inputParser;
addParameter(p,'mult',2)
parse(p,varargin{:})
out = in*p.Results.mult;
end
The function hint for this is 'foo(in,...)'.
Now, if I have a large number of possible inputs (similar to plot), I instead want the function hint to display some custom combinations of possible inputs as opposed to the single line based on the function definition. Preferably this would be based directly off of the comment header in the function file, although I could see it using an external file as well. This would be extremely helpful for building toolkits for other users.
Is this now possible? If not, I will submit it as a feature request.
Cheers, -Dan

댓글 수: 1

Rik
Rik 2017년 5월 1일
This is indeed an interesting question. (this comment is mostly to get in on my watch list)

댓글을 달려면 로그인하십시오.

 채택된 답변

Kevin Gleason
Kevin Gleason 2017년 5월 4일

4 개 추천

As of MATLAB R2017a, this feature is not available.
I have submitted a feature request on your behalf. The development team is aware of the issue and may consider adding it in a future release.

댓글 수: 6

Hemming
Hemming 2018년 10월 21일
Is this feature possible now in new versions released? I think that this would be a useful feature when coding a function with various formats of inputs.
Thanks.
As of release R2018a you can create a file that MATLAB will use to provide tab completions and function hints.
Hemming
Hemming 2018년 12월 3일
Great! Thanks a lot!
Hi Steven,
In R2018a, user-defined function hints via functionSignature.json is supported for Live Scripts, but not (yet) at the standard command line or during code editing.
I don't see any mention in the R2018b release notes that this has changed.
Am I correct in understanding that this will be coming in a (near-) future release, but that it's just not yet ready for primetime? Without any promises implied, are you able to say what the approximate time frame may be?
I'm very grateful that you're adding this, and am happy to wait if that's what's required for it to be properly implemented. But knowing if/when it is coming helps me decide whether I should invest time setting up the json file for code which will mostly be called from other code or from the command line rather than a Live Script.
Cheers, Jan
breathi
breathi 2020년 1월 2일
Jan/Steven,
is there now a solution (maybe even with functionSignatures) for what Jan mentioned?
Regards

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Renan Thomes
Renan Thomes 2025년 8월 19일

0 개 추천

Starting with MATLAB R2018a, you can personalize code suggestions and completions for your functions by following the Customize Code Suggestions and Completions documentation.

카테고리

도움말 센터File Exchange에서 Adding custom doc에 대해 자세히 알아보기

질문:

2017년 5월 1일

답변:

2025년 8월 19일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by