-
-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add search option to include and exclude columns #740
Comments
--search-tag-any
--search-tag-any
or specific column
--search-tag-any
or specific column
I believe the
…Though it's likely only implemented for That being said, you're likely meant to use additional tags if you want to use them as search criteria (i.e. |
I might want to exxclude columns. Suppose title is "Software directory for niche: Bookmarks" (please notice the colon), a search will detect that titile if |
Alternatively you could implement search-with-markers, like it's done in Bukubrow: the prompt
searches for a bookmark with (The split regex used there is |
…Come to think of it, I might give it a shot (albeit with slightly altered syntax); the current lack of search field distinction (particularly stuff like "finding a specific URL that I just added") had been kind of bothering me lately 😅 |
Note: my implementation is slightly different from the Bukubrew one:
Quick search in Bukuserver navbar uses the same options which are enabled by default in the index page search (markers + all-keywords); these are default primarily because markers don't interfere with most searches unless used explicitly, but also because there's no splitting done with markers disabled. |
You may want to document this in the wiki somewhere. |
https://github.com/jarun/buku/wiki/Searching-and-ordering (The Markers section describing this logic can be found in the article ToC.) |
Thank you! |
Feature requests
Search bookmarks with tags that contain
string
.At the moment it is only possible to select bookmarks with tags that exactly match to the string that is input with
-t, --stag
(in code:args.stag
), and it is not possible to select bookmarks that - for instance - contain tags that begin with a given string (e.g.code:
,interface:
,niche:
,software:
etc.).Currently, the only fashion to do so is by an SQLite software; for example:
I intend to write code which does this.
I would be glad to receive guidance to add this feature.
I am still contemplating
Suppose this feature is added.
Next time, someone might ask to search only titles (metadata) or descriptions (desc) or URLs (urls), so I might want to make this possible, now, instead of writing code specific to tags.
So I might want to add these search options:
The text was updated successfully, but these errors were encountered: