Browse Source

Code completion in the IronRuby console window now working.

pull/1/head
mrward 15 years ago
parent
commit
473aec2817
  1. 4
      src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs

4
src/AddIns/BackendBindings/Ruby/RubyBinding/Project/Src/RubyConsole.cs

@ -57,12 +57,12 @@ namespace ICSharpCode.RubyBinding
public IList<string> GetMemberNames(string name) public IList<string> GetMemberNames(string name)
{ {
return new string[0]; return CommandLine.GetMemberNames(name);
} }
public IList<string> GetGlobals(string name) public IList<string> GetGlobals(string name)
{ {
return new string[0]; return CommandLine.GetGlobals(name);
} }
} }
} }

Loading…
Cancel
Save