I know you can modify the keybindings in Rstudio going to "Tools > Modify Keyboard Shortcuts"
But i use %<>% pipe operator too much and need to assign it to a keybinding (similar to Ctrl + Shift + M)
A workaround is to create a snippet for such pipe (Tools > Global options > Code > Edit Snippets):
snippet p
${1:object} %<>% ${0}
But I rather assing a keybinding if possible. is there any way of creating such shortcut?