@@ -26,6 +26,7 @@ Keymaps with `ft` set will only be available in buffers with the specified filet
2626 [" Send request" ] = { " s" , function () require (" kulala" ).run () end , mode = { " n" , " v" }, },
2727 [" Send request <cr>" ] = { " <CR>" , function () require (" kulala" ).run () end , mode = { " n" , " v" }, ft = { " http" , " rest" }, },
2828 [" Send all requests" ] = { " a" , function () require (" kulala" ).run_all () end , mode = { " n" , " v" }, },
29+ [" Interrupt requests" ] = { " <C-c>" , function () require (" kulala.ui" ).interrupt_requests () end },
2930
3031 [" Inspect current request" ] = { " i" , function () require (" kulala" ).inspect () end , ft = { " http" , " rest" } },
3132 [" Open cookies jar" ] = { " j" , function () require (" kulala" ).open_cookies_jar () end , ft = { " http" , " rest" } },
@@ -57,7 +58,7 @@ Keymaps with `ft` set will only be available in buffers with the specified filet
5758 [" Show filter" ] = { " F" , function () require (" kulala.ui" ).toggle_filter () end },
5859
5960 [" Send WS message" ] = { " <S-CR>" , function () require (" kulala.cmd.websocket" ).send () end , mode = { " n" , " v" }, },
60- [" Interrupt requests " ] = { " <C-c>" , function () require (" kulala.cmd.websocket" ).close () end , desc = " also: CLose WS connection " },
61+ [" Close WS connection " ] = { " <C-c>" , function () require (" kulala.cmd.websocket" ).close () end },
6162
6263 [" Next response" ] = { " ]" , function () require (" kulala.ui" ).show_next () end , },
6364 [" Previous response" ] = { " [" , function () require (" kulala.ui" ).show_previous () end , },
0 commit comments