From 473aec2817c0a25f224f5cc335874bc1e284980d Mon Sep 17 00:00:00 2001 From: mrward Date: Tue, 14 Sep 2010 21:47:53 +0100 Subject: [PATCH] Code completion in the IronRuby console window now working. --- .../Ruby/RubyBinding/Project/Src/RubyConsole.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs b/src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs index 85fb650a9b..02f0f27cae 100644 --- a/src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs +++ b/src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs @@ -57,12 +57,12 @@ namespace ICSharpCode.RubyBinding public IList GetMemberNames(string name) { - return new string[0]; + return CommandLine.GetMemberNames(name); } public IList GetGlobals(string name) { - return new string[0]; + return CommandLine.GetGlobals(name); } } }