Skip to content
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fullscreen = true
resize = { mode = "size", width=2000, height=800 }
# try to have the window float (0.20.1). This may depend on the compositor.
floating-hack = true
# Change to true to automatically copy to clipboard after every annotation change
# Change to true to automatically copy to clipboard after every annotation change (NEXTRELEASE)
auto-copy = false
# Exit directly after copy/save action. 0.20.1: Does not apply to save as
early-exit = true
Expand Down Expand Up @@ -274,7 +274,7 @@ Options:
--save-after-copy
After copying the screenshot, save it to a file as well Preferably use the `action_on_copy` option instead
--auto-copy
Automatically copy to clipboard after every annotation change
Automatically copy to clipboard after every annotation change (NEXTRELEASE)
--actions-on-enter <ACTIONS_ON_ENTER>
Actions to perform when pressing Enter [possible values: save-to-clipboard, save-to-file, save-to-file-as, copy-filepath-to-clipboard, exit]
--actions-on-escape <ACTIONS_ON_ESCAPE>
Expand Down Expand Up @@ -312,7 +312,7 @@ Options:
--title <TITLE>
Experimental feature (NEXTRELEASE): Set window title
--app-id <APP_ID>
Experimental feature (NEXTRELEASE): Set toplevel app_id. Note that this applies gtk format expectations
Experimental feature (NEXTRELEASE): Set toplevel app_id. Note that this has to match D-Bus well known name format, otherwise GTK does not accept it
--right-click-copy
Right click to copy. Preferably use the `action_on_right_click` option instead
--action-on-enter <ACTION_ON_ENTER>
Expand Down
2 changes: 1 addition & 1 deletion cli/src/command_line.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pub struct CommandLine {
#[arg(long)]
pub save_after_copy: bool,

/// Automatically copy to clipboard after every annotation change
/// Automatically copy to clipboard after every annotation change (NEXTRELEASE)
#[arg(long)]
pub auto_copy: bool,

Expand Down
Loading