We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e37627 + a00e67b commit 23a7f99Copy full SHA for 23a7f99
src/keymap.rs
@@ -389,10 +389,12 @@ pub trait Refresher {
389
/// Returns `true` if there is a hint displayed.
390
fn has_hint(&self) -> bool;
391
/// Returns the hint text that is shown after the current cursor position.
392
+ #[cfg_attr(not(feature = "custom-bindings"), allow(dead_code))]
393
fn hint_text(&self) -> Option<&str>;
394
/// currently edited line
395
fn line(&self) -> &str;
396
/// Current cursor position (byte position)
397
398
fn pos(&self) -> usize;
399
/// Display `msg` above currently edited line.
400
fn external_print(&mut self, msg: String) -> Result<()>;
0 commit comments