cmp_kitty icon indicating copy to clipboard operation
cmp_kitty copied to clipboard

communication is only working via sockets

Open garyhurtz opened this issue 3 years ago • 0 comments

Communication via sockets is working as normal:

kitty.conf

allow_remote_control: socket  # or socket-only or yes

launch kitty with

kitty --listen-on unix:@socket

cmp_kitty/config.lua

listen_on = "unix:@socket"

However it is not working with what I had expected to be a less-restrictive quick-start setup:

kitty.conf

allow_remote_control: yes

launch kitty with no arguments

cmp_kitty/config.lua

listen_on = nil

garyhurtz avatar Mar 06 '23 23:03 garyhurtz