Skip to content

Commit 6cd6eb0

Browse files
author
Dou Du
committed
replace tabs with spaces for indentation
1 parent e845542 commit 6cd6eb0

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "widget_code_input",
3-
"version": "3.6.1",
3+
"version": "3.6.2",
44
"description": "A widget to allow input of a python function, with syntax highlighting.",
55
"keywords": [
66
"jupyter",

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
dependencies = [
3535
"ipywidgets>=7.0.0",
3636
]
37-
version = "3.6.1"
37+
version = "3.6.2"
3838

3939
[project.optional-dependencies]
4040
docs = [
@@ -104,7 +104,7 @@ file = [
104104
]
105105

106106
[tool.tbump.version]
107-
current = "3.6.1"
107+
current = "3.6.2"
108108
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
109109

110110
[tool.tbump.git]

src/widget.ts

+39
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,49 @@ export class WidgetCodeView extends DOMWidgetView {
159159
readOnly: false,
160160
indentUnit: 4,
161161
indentWithTabs: false,
162+
smartIndent: true,
162163
gutters: ['CodeMirror-linenumbers', 'forced-indent'],
163164
}
164165
);
165166

167+
this.myBodyCodeMirror.setOption("extraKeys", {
168+
Tab: (cm: any) => {
169+
if (cm.getMode().name === 'null') {
170+
cm.execCommand('insertTab');
171+
} else {
172+
if (cm.somethingSelected()) {
173+
cm.execCommand('indentMore');
174+
} else {
175+
cm.execCommand('insertSoftTab');
176+
}
177+
}
178+
},
179+
Backspace: (cm: any) => {
180+
if (!cm.somethingSelected()) {
181+
let cursorsPos = cm.listSelections().map((selection: any) => selection.anchor);
182+
let indentUnit = cm.options.indentUnit;
183+
let shouldDelChar = false;
184+
for (let cursorIndex in cursorsPos) {
185+
let cursorPos = cursorsPos[cursorIndex];
186+
let indentation = cm.getStateAfter(cursorPos.line).indented;
187+
if (!(indentation !== 0 &&
188+
cursorPos.ch <= indentation &&
189+
cursorPos.ch % indentUnit === 0)) {
190+
shouldDelChar = true;
191+
}
192+
}
193+
if (!shouldDelChar) {
194+
cm.execCommand('indentLess');
195+
} else {
196+
cm.execCommand('delCharBefore');
197+
}
198+
} else {
199+
cm.execCommand('delCharBefore');
200+
}
201+
},
202+
'Shift-Tab': (cm: any) => cm.execCommand('indentLess')
203+
})
204+
166205
// Add CSS
167206
this.myBodyCodeMirror.setOption('theme', this.theme);
168207
this.myBodyCodeMirror.display.wrapper.classList.add(

widget_code_input/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# Copyright (c) Dou Du and Giovanni Pizzi.
55
# Distributed under the terms of the Modified BSD License.
66

7-
version_info = (3, 5, 5)
7+
version_info = (3, 6, 2)
88
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)