diff --git a/README.md b/README.md index 5bb15e6..c2d4052 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Shell completion scripts for Bash, Fish and Zsh can be found in respective subdi - -S : match all the keywords in URL, title or tags. - --st : search bookmarks by tag, or show all tags alphabetically. - You can search bookmarks by tag (see [examples](#examples)). - - Search results are indexed serially. This index is different from actual database index of a bookmark record which is shown within `[]` after the URL. + - Search results are indexed serially. This index is different from actual database index of a bookmark record which is shown in bold within `[]` after the URL. - Auto DB compaction: when a record is deleted, the last record is moved to the index. - **Encryption** is optional and manual. AES256 algorithm is used. If you choose to use encryption, the database file should be unlocked (-k) before using buku and locked (-l) afterwards. Between these 2 operations, the database file lies unencrypted on the disk, and NOT in memory. Also, note that the database file is *unencrypted on creation*. diff --git a/buku b/buku index 83e5637..d5ba707 100755 --- a/buku +++ b/buku @@ -1183,7 +1183,7 @@ def print_record(row, count=0): # Print index and URL if count != 0: - printstr = '\x1B[1m\x1B[93m%d. \x1B[0m\x1B[92m%s\x1B[0m\t[%d]\n' % (count, row[1], row[0]) + printstr = '\x1B[1m\x1B[93m%d. \x1B[0m\x1B[92m%s\x1B[0m \x1B[1m[%s]\x1B[0m\n' % (count, row[1], row[0]) else: printstr = '\x1B[1m\x1B[93m%d. \x1B[0m\x1B[92m%s\x1B[0m\n' % (row[0], row[1]) diff --git a/buku.1 b/buku.1 index 02a4ff9..b9b5924 100644 --- a/buku.1 +++ b/buku.1 @@ -45,7 +45,7 @@ URLs are unique in DB. The same URL cannot be added twice. You can update tags a - -S : match all the keywords in URL, title or tags. - --st : search bookmarks by tag, or show all tags alphabetically. - You can search bookmarks by tag (see examples below). - - Search results are indexed serially. This index is different from actual database index of a bookmark record which is shown within '[]' after the URL. + - Search results are indexed serially. This index is different from actual database index of a bookmark record which is shown in bold within '[]' after the URL. .PP Auto DB compaction: when a record is deleted, the last record is moved to the index. .PP