1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-22 07:06:43 +02:00
tmux-fingers/src/fingers/types.cr
2023-09-27 15:21:48 +02:00

11 lines
256 B
Crystal

module Fingers
abstract class Printer
abstract def print(msg : String)
abstract def flush
end
abstract class Formatter
abstract def format(hint : String, highlight : String, selected : Bool, offset : Tuple(Int32, Int32) | Nil)
end
end