We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1d46d commit 2c1454eCopy full SHA for 2c1454e
1 file changed
duva-client/src/cli/editor/completion.rs
@@ -91,7 +91,8 @@ impl Completer for DuvaHinter {
91
}
92
93
macro_rules! suggest_by_pos {
94
- ( [$($args:expr),+]) => {
+ (
95
+ [$($args:expr),+]) => {
96
let suggestions = [$($args),+];
97
if previous_words.len() > 0 && previous_words.len() <= suggestions.len() {
98
candidates.push(new_pair!(suggestions[previous_words.len() - 1]));
0 commit comments