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

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

export default {
  id: "nudgeLeft",
  name: "Nudge Left (cmd+left or ctrl+left)",
  author_id: 0,
author_name: "wavtool.com",
  category: CommandCategory.Edit,
  description: "Shifts selected tracks to the left (relative to other tracks) by prepending silence to un-selected tracks.",
  code
} as StoredCommand;
