re #1067, when a line or lines are highlighted, tab will indent them
This commit is contained in:
parent
0b36126854
commit
81a76a1529
1 changed files with 10 additions and 1 deletions
|
@ -108,7 +108,16 @@ class Editor extends React.Component {
|
||||||
delete this._cm.options.lint.options.errors;
|
delete this._cm.options.lint.options.errors;
|
||||||
|
|
||||||
this._cm.setOption('extraKeys', {
|
this._cm.setOption('extraKeys', {
|
||||||
Tab: cm => cm.replaceSelection(' '.repeat(INDENTATION_AMOUNT)),
|
Tab: (cm) => {
|
||||||
|
// might need to specify and indent more?
|
||||||
|
const selection = cm.doc.getSelection();
|
||||||
|
if (selection.length > 0) {
|
||||||
|
cm.execCommand('indentMore');
|
||||||
|
} else {
|
||||||
|
cm.replaceSelection(' '.repeat(INDENTATION_AMOUNT));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// Tab: 'indentMore',
|
||||||
[`${metaKey}-Enter`]: () => null,
|
[`${metaKey}-Enter`]: () => null,
|
||||||
[`Shift-${metaKey}-Enter`]: () => null,
|
[`Shift-${metaKey}-Enter`]: () => null,
|
||||||
[`${metaKey}-F`]: 'findPersistent',
|
[`${metaKey}-F`]: 'findPersistent',
|
||||||
|
|
Loading…
Reference in a new issue