-
Notifications
You must be signed in to change notification settings - Fork 449
Martin Lepadusch edited this page Mar 30, 2014
·
30 revisions
- How to preserve the order of copied items on copy or pasting multiple items?
- How does pasting single/multiple items internally work?
- How to open the menu or contextmenu with only the keyboard?
- Is it possible to hide menu bar to have even cleaner main window?
- How to enable logging?
- How to export/import commands
- reverse order of selected items with
Ctrl+Shift+R
and copy them or - select items in reverse order and copy
See #165
Return
key copies the whole item (with all formats) to the clipboard and -- if the "Paste to current window" option is enabled -- it sends Shift+Insert
to previous window. So the target application decides what format to paste on Shift+Insert
.
If you select more items and press Return
, just the concatenated text of selected items is put into clipboard. Thought it could do more in future, like join HTML, images or other formats.
See #165
- use
Alt+I
to open the item menu - use the
Menu
key on your keyboard to open the contextmenu of an item
Menu bar can be hidden by modifying style sheet of current theme.
- Open Preferences dialog (Ctrl+P),
- go to Appearance,
- click "Edit Theme" button,
- find
menu_bar_css
option and addheight: 0
so it will be something like:
menu_bar_css="
;height: 0
;background: ${bg}
;color: ${fg}"
- From CopyQ 2.1.0 there are two new environment variables
COPYQ_LOG_LEVEL
andCOPYQ_LOG_FILE
you can set. See #195 - Before CopyQ 2.1.0:
If want to see console logs you have to redirect stdout and stderr with appending1> logfile 2>&1
e.g.copyq.exe 1> server.log 2>&1
- From CopyQ 2.1.0 there are two buttons under the
commands
tab in the preferences.Save Selected Commands...
andLoad Commands
. Additionally you can copy and paste commands from thecommands
tab in the preferences.