implemented (separate) punctuation-style for stack and bookmarks

This commit is contained in:
2025-01-15 00:11:54 +01:00
parent b0e2e430b5
commit 39ad2de67c
7 changed files with 38 additions and 145 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ mod config;
mod bookmarks;
mod stack;
mod output;
mod util;
mod debug;
use arguments::*;
@@ -173,7 +174,7 @@ fn add_bookmarks(args: &BookmarkSubArgs, config: &Config, bookmarks: &mut Bookma
fn remove_bookmarks(args: &BookmarkSubArgs, config: &Config, bookmarks: &mut Bookmarks, output: &mut Output) -> Result<()> {
bookmarks.remove_bookmark(&args.name)?;
if config.general.show_books_on_bookmark {
output.push_info(&bookmarks.to_formatted_string(config)?);
} else {