I use “Slice Importer” often, especially for vocal comping.
So, I assigned keyboard shortcuts to “Slice Importer” for my productivity.
This is a snippet I added to main.lua file for my personal use (I would be happy if future update handles this keybinding).
-- Add key bindings
renoise.tool():add_keybinding{
name = 'Sample Editor:Slices:Copy Markers',
invoke=function() slc_copy_slice_table() end
}
renoise.tool():add_keybinding{
name = 'Sample Editor:Slices:Paste Markers',
invoke=function() slc_paste_slice_table() end
}