tmux-fingers/src/fingers/commands/send_input.cr

12 lines
166 B
Crystal

require "./base"
module Fingers::Commands
class SendInput < Base
def run
socket = InputSocket.new
socket.send_message(@args[0])
end
end
end