Customized completion for template parameters

This commit is contained in:
Dmitry Sharshakov 2021-08-28 19:11:19 +03:00
parent ef155e62ef
commit 94901b8677
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
5 changed files with 36 additions and 3 deletions

View file

@ -7,6 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
pub completion: Option<Vec<String>>,
pub args: HashMap<String, String>,
}