1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

cot: add page (#8205)

* cot: add page

* cot: fix name of command

* cot: change "done" to "finished"

* Update pages/osx/cot.md

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>

* Update pages/osx/cot.md

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>

* cot: swap order of examples 2 and 3

* cot: specify that the window opens in the background

* cot: be more specific with the `--wait` example

* cot: remove "in the background"

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
This commit is contained in:
Ethan Kinnear 2022-07-21 11:07:20 -05:00 committed by GitHub
parent e74e17d1a6
commit ee5e558613
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages/osx/cot.md Normal file
View file

@ -0,0 +1,24 @@
# cot
> The Plain-Text Editor for macOS.
> More information: <https://coteditor.com/>.
- Start CotEditor:
`cot`
- Open specific files:
`cot {{path/to/file1 path/to/file2 ...}}`
- Open a new blank document:
`cot --new`
- Open a specific file and block the terminal until it is closed:
`cot --wait {{path/to/file}}`
- Open a specific file with the cursor at a specific line and column:
`cot --line {{line_number}} --column {{column_number}} {{path/to/file}}`