Skip to content
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 new shortcut for adding note from annotations #251

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions addon/chrome/content/zutilo/keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,10 @@ keys.shortcuts.renameSelectedAttachmentsFromParents = function(win) {
win.ZoteroPane_Local.renameSelectedAttachmentsFromParents()
// jscs: enable requireCamelCaseOrUpperCaseIdentifiers
};
keys.categories.addNoteFromAnnotationsFromSelected = 'itemcreation'
keys.shortcuts.addNoteFromAnnotationsFromSelected = function(win) {
win.ZoteroPane.addNoteFromAnnotationsFromSelected();
};

keys.categories.findPDF = 'attachments'
keys.shortcuts.findPDF = function(win)
Expand Down
1 change: 1 addition & 0 deletions addon/chrome/locale/en-US/zutilo/zutilo.properties
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ zutilo.shortcuts.name.openStyleEditor = Open Style Editor
zutilo.shortcuts.name.recognizeSelected = Retrieve metadata for PDF
zutilo.shortcuts.name.createParentItemsFromSelected = Create parent item
zutilo.shortcuts.name.renameSelectedAttachmentsFromParents = Rename attachments
zutilo.shortcuts.name.addNoteFromAnnotationsFromSelected = Add note from annotations
zutilo.shortcuts.name.attachURI = Attachments: Attach link to URI
zutilo.shortcuts.name.findPDF = Find Available PDFs
zutilo.shortcuts.name.attachStoredFile = Attachments: Attach stored copy of file
Expand Down