We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See FIXME comment here:
rustyline/src/highlight.rs
Line 45 in 4d48e58
What's the reason this isn't fixed? Can it be fixed?
I had to work around this and highlight the candidates in Completer::complete() instead.
Completer::complete()
The text was updated successfully, but these errors were encountered:
I guess it can be fixed but not easily. See #427, #207.
pub trait Helper { type Document; type Candidate: Candidate; fn lexer(&self) -> Option<&dyn Lexer<Self::Document>> { None } fn hinter(&self) -> Option<&dyn Hinter<Self::Document>> { None } fn highlighter(&self) -> Option<&dyn Highlighter<Self::Document, Self::Candidate>> { None } fn validator(&self) -> Option<&dyn Validator<Self::Document>> { None } fn completer(&self) -> Option<&dyn Completer<Self::Document, Self::Candidate>> { None } }
Sorry, something went wrong.
No branches or pull requests
See FIXME comment here:
rustyline/src/highlight.rs
Line 45 in 4d48e58
What's the reason this isn't fixed? Can it be fixed?
I had to work around this and highlight the candidates in
Completer::complete()
instead.The text was updated successfully, but these errors were encountered: