[Feature] 能否设置一个快速全library搜索的快捷键 #280
fredericky123
started this conversation in
Ideas
Replies: 3 comments 2 replies
-
Quick search cmd shift k这个在 windows下可以吗? |
Beta Was this translation helpful? Give feedback.
2 replies
-
cmd+shift+F |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here is a solution based on [Share] Return to "My Library". Just need to move the focus to the search box: /**
* When assinged to a keybinding, this allows you to switch back to the library view.
* @author promicrobial
* @usage
* @link https://gist.github.com/promicrobial/c2ce52599aca3c7ca44d9aff2628148a.js
* @see https://github.com/windingwind/zotero-actions-tags/discussions/
*/
const Zotero = require("Zotero");
const Zotero_Tabs = require("Zotero_Tabs");
if (Zotero_Tabs.selectedID != 'zotero-pane') {
Zotero_Tabs.select('zotero-pane')
}
Zotero.getActiveZoteroPane().collectionsView.selectLibrary(Zotero.Libraries.userLibraryID);
Zotero.getActiveZoteroPane().document.getElementById('zotero-tb-search').searchTextbox.select(); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there an existing issue for this?
Environment
Describe the feature request
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Why do you need this feature?
A clear and concise description of why you need this feature.
现在的快速搜索 cmd shift k 只能搜索当前collection能否加个快捷,实现全库的检索
Describe the solution you'd like
The solution you'd like
A clear and concise description of what you want to happen.
Alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Anything else?
No response
Beta Was this translation helpful? Give feedback.
All reactions