File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -886,11 +886,12 @@ M.convert_reload_actions = function(reload_cmd, opts)
886
886
v .fn (items , opts )
887
887
end , v .field_index == false and " " or v .field_index or " {+}" , opts .debug )
888
888
opts .keymap .fzf [k ] = {
889
- string.format (" %s%sexecute-silent(%s)+reload(%s)" ,
889
+ string.format (" %s%sexecute-silent(%s)+reload(%s)%s " ,
890
890
type (v .prefix ) == " string" and v .prefix or " " ,
891
891
unbind and (unbind .. " +" ) or " " ,
892
892
shell_action ,
893
- reload_cmd ),
893
+ reload_cmd ,
894
+ type (v .postfix ) == " string" and v .postfix or " " ),
894
895
desc = config .get_action_helpstr (v .fn )
895
896
}
896
897
opts .actions [k ] = nil
@@ -915,9 +916,10 @@ M.convert_exec_silent_actions = function(opts)
915
916
v .fn (items , opts )
916
917
end , v .field_index == false and " " or v .field_index or " {+}" , opts .debug )
917
918
opts .keymap .fzf [k ] = {
918
- string.format (" %sexecute-silent(%s)" ,
919
+ string.format (" %sexecute-silent(%s)%s " ,
919
920
type (v .prefix ) == " string" and v .prefix or " " ,
920
- shell_action ),
921
+ shell_action ,
922
+ type (v .postfix ) == " string" and v .postfix or " " ),
921
923
desc = config .get_action_helpstr (v .fn )
922
924
}
923
925
opts .actions [k ] = nil
You can’t perform that action at this time.
0 commit comments