Harishankar G
Harishankar G
Something along these lines? ```rust fn delete_selection_noyank(cx: &mut Context) { let old_register = cx.register; cx.register = Some('_'); delete_selection_impl(cx, Operation::Delete); cx.register = old_register; } fn change_selection(cx: &mut Context) { // let...
I think ```toml "C-l" = [ ":append-output echo -n =", "search_selection", "delete_selection_noyank", "search_prev", ] ``` appends an `=` next to the current character and then selects it, then deletes it...
I think the best approach would be to only ping the selected connections, as pinging other connections would only add to the network load and be of no value. These...