Ejemplo n.º 1
0
        public override IEnumerable <CompletionResult> CompleteArgument(string commandName,
                                                                        string parameterName,
                                                                        string wordToComplete,
                                                                        CommandAst commandAst,
                                                                        IDictionary fakeBoundParameters)
        {
            var values = new List <CompletionResult>();

            SelectValues(wordToComplete, ProjectCache.GetCurrent(false), values);

            return(values);
        }
Ejemplo n.º 2
0
 internal override IEnumerable <string> GetValues() => ProjectCache.GetCurrent(_forceUpdate);