Scroll to navigation

KITTY(1) kitty KITTY(1)

NAME

kitty - kitty Documentation

kitty [options] [program-to-run ...]


Run the kitty terminal emulator. You can also specify the program to run inside kitty as normal arguments following the options. For example: kitty sh -c "echo hello, world. Press ENTER to quit; read"

For comprehensive documentation for kitty, please see: https://sw.kovidgoyal.net/kitty/

OPTIONS

Set the class part of the WM_CLASS window property. On Wayland, it sets the app id. Default: kitty

Set the name part of the WM_CLASS property (defaults to using the value from kitty --class)

Set the window title. This will override any title set by the program running inside kitty. So only use this if you are running a program that does not set titles. If combined with kitty --session the title will be used for all windows created by the session, that do not set their own titles.

Specify a path to the configuration file(s) to use. All configuration files are merged onto the builtin kitty.conf, overriding the builtin values. This option can be specified multiple times to read multiple configuration files in sequence, which are merged. Use the special value NONE to not load a config file.

If this option is not specified, config files are searched for in the order: $XDG_CONFIG_HOME/kitty/kitty.conf, ~/.config/kitty/kitty.conf, $XDG_CONFIG_DIRS/kitty/kitty.conf. The first one that exists is used as the config file.

If the environment variable KITTY_CONFIG_DIRECTORY is specified, that directory is always used and the above searching does not happen.

If /etc/xdg/kitty/kitty.conf exists it is merged before (i.e. with lower priority) than any user config files. It can be used to specify system-wide defaults for all users.


Override individual configuration options, can be specified multiple times. Syntax: name=value. For example: kitty -o font_size=20

Change to the specified directory when launching Default: .

Detach from the controlling terminal, if any

Path to a file containing the startup session (tabs, windows, layout, programs). Use - to read from STDIN. See the README file for details and an example.

Path to a python file. Appropriately named functions in this file will be called for various events, such as when the window is resized, focused or closed. See the section on watchers in the launch command documentation launch. Relative paths are resolved relative to the kitty config directory. Note that this watcher will be added only to all initially created windows, not new windows created after startup.

Remain open after child process exits. Note that this only affects the first window. You can quit by either using the close window shortcut or pressing any key.

If specified only a single instance of kitty will run. New invocations will instead create a new top-level window in the existing kitty instance. This allows kitty to share a single sprite cache on the GPU and also reduces startup time. You can also have separate groups of kitty instances by using the kitty --instance-group option

Used in combination with the kitty --single-instance option. All kitty invocations with the same kitty --instance-group will result in new windows being created in the first kitty instance within that group

Normally, when using --single-instance, kitty will open a new window in an existing instance and quit immediately. With this option, it will not quit till the newly opened window is closed. Note that if no previous instance is found, then kitty will wait anyway, regardless of this option.

Tell kitty to listen on the specified address for control messages. For example, kitty --listen-on=unix:/tmp/mykitty or kitty --listen-on=tcp:localhost:12345. On Linux systems, you can also use abstract UNIX sockets, not associated with a file, like this: kitty --listen-on=unix:@mykitty. Environment variables in the setting are expanded and relative paths are resolved with respect to the temporary directory. To control kitty, you can send it commands with kitty @ using the kitty @ --to option to specify this address. This option will be ignored, unless you set allow_remote_control to yes in kitty.conf. Note that if you run kitty @ within a kitty window, there is no need to specify the --to option as it is read automatically from the environment. For UNIX sockets, this can also be specified in kitty.conf.

Control how the initial kitty window is created. Default: normal Choices: fullscreen, maximized, minimized, normal

Debugging options

The current kitty version

Output commands received from child process to stdout

Replay previously dumped commands. Specify the path to a dump file previously created by --dump-commands. You can open a new kitty window to replay the commands with:

kitty sh -c "kitty --replay-commands /path/to/dump/file; read"



Path to file in which to store the raw bytes received from the child process

Debug rendering commands. This will cause all OpenGL calls to check for errors instead of ignoring them. Also prints out miscellaneous debug information. Useful when debugging rendering problems

This option will cause kitty to print out key and mouse events as they are received

Print out information about the selection of fallback fonts for characters not present in the main font.

TABS AND WINDOWS

kitty is capable of running multiple programs organized into tabs and windows. The top level of organization is the Tab. Each tab consists of one or more windows. The windows can be arranged in multiple different layouts, like windows are organized in a tiling window manager. The keyboard controls (which are all customizable) for tabs and windows are:

Scrolling

Action Shortcut
Scroll line up ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS)
Scroll line down ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS)
Scroll page up ctrl+shift+page_up (also ⌘+⇞ on macOS)
Scroll page down ctrl+shift+page_down (also ⌘+⇟ on macOS)
Scroll to top ctrl+shift+home (also ⌘+↖ on macOS)
Scroll to bottom ctrl+shift+end (also ⌘+↘ on macOS)

Tabs

Action Shortcut
New tab ctrl+shift+t (also ⌘+t on macOS)
Close tab ctrl+shift+q (also ⌘+w on macOS)
Next tab ctrl+shift+right (also ^+⇥ and ⇧+⌘+] on macOS)
Previous tab ctrl+shift+left (also ⇧+^+⇥ and ⇧+⌘+[ on macOS)
Next layout ctrl+shift+l
Move tab forward ctrl+shift+.
Move tab backward ctrl+shift+,
Set tab title ctrl+shift+alt+t (also ⇧+⌘+i on macOS)

Windows

Action Shortcut
New window ctrl+shift+enter (also ⌘+↩ on macOS)
New OS window ctrl+shift+n (also ⌘+n on macOS)
Close window ctrl+shift+w (also ⇧+⌘+d on macOS)
Next window ctrl+shift+]
Previous window ctrl+shift+[
Move window forward ctrl+shift+f
Move window backward ctrl+shift+b
Move window to top ctrl+shift+`
Focus specific window ctrl+shift+1, ctrl+shift+2 ... ctrl+shift+0 (also ⌘+1, ⌘+2 ... ⌘+9 on macOS) (clockwise from the top-left)

Additionally, you can define shortcuts in kitty.conf to focus neighboring windows and move windows around (similar to window movement in vim):

map ctrl+left neighboring_window left
map shift+left move_window right
map ctrl+down neighboring_window down
map shift+down move_window up
...


You can also define a shortcut to switch to the previously active window:

map ctrl+p nth_window -1


nth_window will focus the nth window for positive numbers and the previously active windows for negative numbers.

You can define shortcuts to detach the current window and move it to another tab or another OS window:

# moves the window into a new OS window
map ctrl+f2 detach_window
# moves the window into a new Tab
map ctrl+f3 detach_window new-tab
# asks which tab to move the window into
map ctrl+f4 detach_window ask


Similarly, you can detach the current tab, with:

# moves the tab into a new OS window
map ctrl+f2 detach_tab
# asks which OS Window to move the tab into
map ctrl+f4 detach_tab ask


Finally, you can define a shortcut to close all windows in a tab other than the currently active window:

map f9 close_other_windows_in_tab


OTHER KEYBOARD SHORTCUTS

Action Shortcut
Copy to clipboard ctrl+shift+c (also ⌘+c on macOS)
Paste from clipboard ctrl+shift+v (also ⌘+v on macOS)
Paste from selection ctrl+shift+s
Increase font size ctrl+shift+equal (also ⌘++ on macOS)
Decrease font size ctrl+shift+minus (also ⌘+- on macOS)
Restore font size ctrl+shift+backspace (also ⌘+0 on macOS)
Toggle fullscreen ctrl+shift+f11 (also ^+⌘+f on macOS)
Toggle maximized ctrl+shift+f10
Input unicode character ctrl+shift+u (also ^+⌘+space on macOS)
Click URL using the keyboard ctrl+shift+e
Reset the terminal ctrl+shift+delete
Reload kitty.conf ctrl+shift+f5 (also ^+⌘+f5 on macOS)
Debug kitty.conf ctrl+shift+f6 (also ⌘+option+f6 on macOS)
Pass current selection to program ctrl+shift+o
Edit kitty config file ctrl+shift+f2
Open a kitty shell ctrl+shift+escape
Increase background opacity ctrl+shift+a>m
Decrease background opacity ctrl+shift+a>l
Full background opacity ctrl+shift+a>1
Reset background opacity ctrl+shift+a>d

SEE ALSO

See kitty.conf(5)

AUTHOR

Kovid Goyal

COPYRIGHT

2022, Kovid Goyal

March 28, 2022 0.21.2