diff --git a/README.md b/README.md index 987fa95..e9ae15f 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,10 @@ syncedlyrics "SEARCH_TERM" | Flag | Description | | --- | --- | | `-o` | Path to save `.lrc` lyrics, default="{search_term}.lrc" | +| `-с` | Copies lyrics to clipboard. Uses [clipman](https://github.com/NikitaBeloglazov/clipman) module | | `-p` | Space-separated list of [providers](#providers) to include in searching | | `-l` | Language code of the translation ([ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) format) | -| `-v` | Use this flag to show the logs | +| `-v` | Use this flag to show the logs | | `--allow-plain` | Return a plain text (not synced) lyrics if no LRC format was found | | `--enhanced` | Return an [Enhanced](https://en.wikipedia.org/wiki/LRC_(file_format)#A2_extension:_word_time_tag) (word-level karaoke) format diff --git a/syncedlyrics/cli.py b/syncedlyrics/cli.py index 75d28cf..78c754f 100644 --- a/syncedlyrics/cli.py +++ b/syncedlyrics/cli.py @@ -26,10 +26,10 @@ def cli_handler(): "-o", "--output", help="Path to save '.lrc' lyrics", default="{search_term}.lrc" ) parser.add_argument( - "-v", "--verbose", help="Use this flag to show the logs", action="store_true" + "-c", "--clipboard", help="Copies lyrics to clipboard after finish", action="store_true" ) parser.add_argument( - "-c", "--clipboard", help="Copies lyrics to clipboard after finish", action="store_true" + "-v", "--verbose", help="Use this flag to show the logs", action="store_true" ) parser.add_argument( "--allow-plain",