Overhaul done

This commit is contained in:
SilasMarvin
2024-03-23 19:01:05 -07:00
parent 2f71a4de3e
commit fa8e19c1ce
6 changed files with 316 additions and 65 deletions

View File

@@ -73,4 +73,11 @@ impl Prompt {
code: r#"def test_code():\n <CURSOR>"#.to_string(),
}
}
pub fn default_without_cursor() -> Self {
Self {
context: r#"def test_context():\n pass"#.to_string(),
code: r#"def test_code():\n "#.to_string(),
}
}
}