Implement Shift-tab to dedent

- Closes #304
main
Mike Fix 7 years ago
parent 53b8965b79
commit 1f9076c679

@ -80,7 +80,10 @@ class Carbon extends PureComponent {
theme: config.theme, theme: config.theme,
scrollBarStyle: null, scrollBarStyle: null,
viewportMargin: Infinity, viewportMargin: Infinity,
lineWrapping: true lineWrapping: true,
extraKeys: {
'Shift-Tab': 'indentLess'
}
} }
const backgroundImage = const backgroundImage =
(this.props.config.backgroundImage && this.props.config.backgroundImageSelection) || (this.props.config.backgroundImage && this.props.config.backgroundImageSelection) ||

Loading…
Cancel
Save