New Tool (3.1.1): Slice Importer v1.1 (February 2019)

https://forum.renoise.com/t/copy-slice-markers/35349/7

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
}