1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× 1× 1× | import SpellError from './SpellError' import CorrectionTool from './CorrectionTool' import SpellCheckCommand from './SpellCheckCommand' export default { name: 'spell-check', configure: function(config) { config.addNode(SpellError) config.addCommand('correction', SpellCheckCommand) config.addTool('correction', CorrectionTool, {toolGroup: 'context-menu-primary'}) } } |