2021-04-27 17:00:35 +01:00
|
|
|
# kate
|
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
> KDE's advanced text editor.
|
2021-04-27 17:00:35 +01:00
|
|
|
> More information: <https://kate-editor.org/>.
|
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Open specific files:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
`kate {{path/to/file1 path/to/file2 ...}}`
|
2021-04-27 17:00:35 +01:00
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Open specific remote files:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
`kate {{https://example.com/path/to/file1 https://example.com/path/to/file2 ...}}`
|
2021-04-27 17:00:35 +01:00
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Create a new editor instance even if one is already open:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
|
|
|
`kate --new`
|
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Open a file with the cursor at the specific line:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
|
|
|
`kate --line {{line_number}} {{path/to/file}}`
|
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Open a file with the cursor at the specific line and column:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
|
|
|
`kate --line {{line_number}} --column {{column_number}} {{path/to/file}}`
|
|
|
|
|
2022-11-28 21:48:58 +00:00
|
|
|
- Create a file from `stdin`:
|
2021-04-27 17:00:35 +01:00
|
|
|
|
|
|
|
`cat {{path/to/file}} | kate --stdin`
|
|
|
|
|
|
|
|
- Display help:
|
|
|
|
|
|
|
|
`kate --help`
|