Skip to content

Commit

Permalink
Merge pull request #24 from jeroenvisser101/unindent-and-indent-config
Browse files Browse the repository at this point in the history
Add customizable indentation and unindent
  • Loading branch information
kazzkiq authored Dec 19, 2016
2 parents 862bced + fe2532d commit 9e2e0dc
Showing 1 changed file with 28 additions and 10 deletions.
38 changes: 28 additions & 10 deletions src/codeflask.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function CodeFlask() {

function CodeFlask(indent) {
this.indent = indent || " ";
}

CodeFlask.prototype.run = function(selector, opts) {
Expand Down Expand Up @@ -93,7 +93,9 @@ CodeFlask.prototype.handleInput = function(textarea, highlightCode, highlightPre
input,
selStartPos,
inputVal,
roundedScroll;
roundedScroll,
currentLineStart,
indentLength;

textarea.addEventListener('input', function(e) {
input = this;
Expand All @@ -107,13 +109,29 @@ CodeFlask.prototype.handleInput = function(textarea, highlightCode, highlightPre
input = this,
selStartPos = input.selectionStart,
inputVal = input.value;

// If TAB pressed, insert four spaces
if(e.keyCode === 9){
input.value = inputVal.substring(0, selStartPos) + " " + inputVal.substring(selStartPos, input.value.length);
input.selectionStart = selStartPos + 4;
input.selectionEnd = selStartPos + 4;
e.preventDefault();
currentLineStart = selStartPos - input.value.substr(0, selStartPos).split("\n").pop().length;

// If tab pressed, indent
if (e.keyCode === 9) {
e.preventDefault();

// Allow shift-tab
if (e.shiftKey) {
indentLength = self.indent.length;

// If the current line begins with the indent, unindent
if (inputVal.substring(currentLineStart, currentLineStart + indentLength) == self.indent) {
input.value = inputVal.substring(0, currentLineStart) +
inputVal.substring(currentLineStart + indentLength, input.value.length);
input.selectionStart = selStartPos - self.indent.length;
input.selectionEnd = selStartPos - self.indent.length;
}
} else {
input.value = inputVal.substring(0, selStartPos) + self.indent +
inputVal.substring(selStartPos, input.value.length);
input.selectionStart = selStartPos + self.indent.length;
input.selectionEnd = selStartPos + self.indent.length;
}

highlightCode.innerHTML = input.value.replace(/&/g, "&")
.replace(/</g, "&lt;")
Expand Down

0 comments on commit 9e2e0dc

Please sign in to comment.