D-Scanner/autocomplete.d
2013-03-02 15:06:33 +00:00

22 lines
508 B
D

// Copyright Brian Schott (Sir Alaran) 2012.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module autocomplete;
string dotComplete(Tokens)(ref Tokens tokens, size_t cursorPosition)
{
return "";
}
string parenComplete(Tokens)(ref Tokens tokens, size_t cursorPosition)
{
return "";
}
string symbolComplete(Tokens)(ref Tokens tokens, size_t cursorPosition)
{
return "";
}