import { StoredCommand, CommandCategory } from '../../../types';

// eslint-disable-next-line import/no-webpack-loader-syntax
const code = require('!!raw-loader!./nudgeRight.wavtool').default.replace(/^\s*\/\/\/.*\n*/g, '');

export default {
  id: "nudgeRight",
  name: "Nudge Right (cmd+right or ctrl+right)",
  author_id: 0,
author_name: "wavtool.com",
  category: CommandCategory.Edit,
  description: "Shifts selected tracks to the right, by prepending silence to selected tracks.",
  code
} as StoredCommand;
