diff --git a/buku.1 b/buku.1 index 3d2a8a2..d799fbe 100644 --- a/buku.1 +++ b/buku.1 @@ -79,6 +79,7 @@ Bookmarks with immutable titles are listed with '(L)' after the title. - Auto-import looks in the default installation path and default user profile. - URLs starting with `place:`, `file://` and `apt:` are ignored during import. - Parent folder (and subfolder) names are automatically imported as tags if --tacit is used. + - Tags are merged even if bookmark URL exists when --tacit is used. - An auto-generated tag in the format 'YYYYMonDD' is added if --tacit is not used in html, markdown or orgfile import. .PP .IP 10. 4 diff --git a/buku.py b/buku.py index dba4ac1..0604b7f 100755 --- a/buku.py +++ b/buku.py @@ -2275,7 +2275,7 @@ class BukuDb: if not tacit: append_tags_resp = input('Append tags when bookmark exist? (n/y): ') else: - append_tags_resp = 'n' + append_tags_resp = 'y' items = [] if filepath.endswith('.md'):