()
| 3034 | } |
| 3035 | |
| 3036 | function checkInIndentCode () { |
| 3037 | // if line starts with tab or four spaces is a code block |
| 3038 | var line = editor.getLine(editor.getCursor().line) |
| 3039 | var isIndentCode = ((line.substr(0, 4) === ' ') || (line.substr(0, 1) === '\t')) |
| 3040 | return isIndentCode |
| 3041 | } |
| 3042 | |
| 3043 | var isInCode = false |
| 3044 |
no test coverage detected