23 lines
508 B
D
Executable File
23 lines
508 B
D
Executable File
// 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 "";
|
|
}
|