fix some shit

This commit is contained in:
Jorge Morante 2023-04-12 19:21:38 +02:00
parent f4565a840d
commit f4188c2cd3
2 changed files with 6 additions and 11 deletions

View File

@ -26,13 +26,6 @@ module Fingers
cmd.input.puts(match)
cmd.input.flush
#puts "did it work? #status}"
#IO.popen(action_env, final_shell_command, "r+") do |io|
#io.puts match
#io.close_write
#end
end
private getter :match, :modifier, :hint, :original_pane

View File

@ -18,6 +18,8 @@ module Fingers
property highlight_format : String
property selected_highlight_format : String
FORMAT_PRINTER = TmuxFormatPrinter.new
def initialize(
@key = "F",
@keyboard_layout = "qwerty",
@ -28,10 +30,10 @@ module Fingers
@alt_action = "",
@shift_action = ":paste:",
@hint_position = "left",
@hint_format = "fg=yellow,bold",
@selected_hint_format = "fg=green,bold",
@selected_highlight_format = "fg=green,nobold,dim",
@highlight_format = "fg=yellow,nobold,dim",
@hint_format = FORMAT_PRINTER.print("fg=yellow,bold"),
@selected_hint_format = FORMAT_PRINTER.print("fg=green,bold"),
@selected_highlight_format = FORMAT_PRINTER.print("fg=green,nobold,dim"),
@highlight_format = FORMAT_PRINTER.print("fg=yellow,nobold,dim"),
)
end