Forrest logo
back to context overview

kate

List of commands for kate:

  • kate:tldr:3d55e kate: Display help.
    $ kate --help
    try on your machine
    explain this command
  • kate:tldr:445d3 kate: Open a file with the cursor at the specific line.
    $ kate --line ${line_number} ${filename}
    try on your machine
    explain this command
  • kate:tldr:85c4c kate: Create a file from `stdin`.
    $ cat ${filename} | kate --stdin
    try on your machine
    explain this command
  • kate:tldr:99e1f kate: Create a new editor instance even if one is already open.
    $ kate --new
    try on your machine
    explain this command
  • kate:tldr:9b2b8 kate: Open a file with the cursor at the specific line and column.
    $ kate --line ${line_number} --column ${column_number} ${filename}
    try on your machine
    explain this command
  • kate:tldr:d5588 kate: Open specific files.
    $ kate ${filename1 filename2 ---}
    try on your machine
    explain this command
back to context overview