diff options
| author | lukeflo | 2025-07-05 20:21:52 +0200 |
|---|---|---|
| committer | lukeflo | 2025-07-05 20:21:52 +0200 |
| commit | 80c04702012cb1a43711d559e8ffbe9e250b1a57 (patch) | |
| tree | 7068c6915d4ee6c84f38f65798d0aeb276941d5b /src/bibiman.rs | |
| parent | 52079ee745831b06a6c4060f38ee49e42d689dcd (diff) | |
| download | bibiman-80c04702012cb1a43711d559e8ffbe9e250b1a57.tar.gz bibiman-80c04702012cb1a43711d559e8ffbe9e250b1a57.zip | |
first steps for create new note
Diffstat (limited to 'src/bibiman.rs')
| -rw-r--r-- | src/bibiman.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bibiman.rs b/src/bibiman.rs index 6aec1fb..c92b869 100644 --- a/src/bibiman.rs +++ b/src/bibiman.rs @@ -740,6 +740,10 @@ impl Bibiman { Ok(()) } + pub fn create_note(&mut self, cfg: &BibiConfig) -> Result<()> { + Ok(()) + } + pub fn open_connected_res(&mut self, cfg: &BibiConfig, tui: &mut Tui) -> Result<()> { // Index of selected entry let entry_idx = self.entry_table.entry_table_state.selected().unwrap(); |
