Skip to content

Commit

Permalink
fix: block completion indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
Feel-ix-343 committed Feb 27, 2024
1 parent c04dd2b commit 5b5108d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/completion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,13 @@ pub fn get_completions(
)
.match_list(blocks, &mut matcher);

let rand_id = nanoid!(5);
let rand_id = nanoid!(
5,
&[
'a', 'b', 'c', 'd', 'e', 'f', 'g', '1', '2', '3', '4', '5', '6', '7', '8',
'9'
]
);

return Some(CompletionResponse::List(CompletionList {
is_incomplete: true,
Expand Down

0 comments on commit 5b5108d

Please sign in to comment.