We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5472622 commit db0ee65Copy full SHA for db0ee65
public/js/lib/editor/index.js
@@ -331,7 +331,7 @@ export default class Editor {
331
if (!this.statusBar) return
332
333
var cursor = this.editor.getCursor()
334
- var cursorText = 'Line ' + (cursor.line + 1) + ', Columns ' + (cursor.ch + 1)
+ var cursorText = 'Line ' + (cursor.line + 1) + ', Column ' + (cursor.ch + 1)
335
this.statusCursor.text(cursorText)
336
var fileText = ' — ' + editor.lineCount() + ' Lines'
337
this.statusFile.text(fileText)
0 commit comments