You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,20 @@ There are two main keybindings:
77
77
78
78
Most likely you haven't enabled JavaScript for AppleScript. Check the option "Allow JavaScript from Apple Events" in the `Develop` menu (the `Develope` menu needs to be enabled in the preferences).
79
79
80
+
1. Kitty
81
+
All text commands from Sublime Text to Kitty are sent through the unix socket, so it is vital to have correct configuration on both sides. Please follow these steps:
82
+
83
+
1. Add this configuration to your `SendCode.sublime-settings`:
84
+
```json
85
+
"prog": "kitty",
86
+
"kitty": {
87
+
"path": "/path/to/kitty",
88
+
"socket": "unix:/tmp/kitty",
89
+
}
90
+
```
91
+
2. Add `allow_remote_control socket-only` to your `kitty.conf`
92
+
3. Start kitty with `--listen-on=unix:/tmp/kitty` flag. If you are using MacOS you can conveniently put it into `<kitty config dir>/macos-launch-services-cmdline` file.
93
+
4. Double check that `echo $KITTY_LISTEN_ON` is pointing to the same socket as defined in your Sublime Text configuration.
0 commit comments