1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-26 07:29:11 +02:00
tmux-fingers/src/fingers/commands/send_input.cr
2023-09-27 15:21:48 +02:00

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