Skip to content

Commit 7d9d87b

Browse files
committed
Fix mode naming in status bar
Thanks S.N. for spotting this.
1 parent 3e0962e commit 7d9d87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/view/view.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function create_VIM_VIEW(environment, messager, context) {
2020

2121
function update() {
2222
if(environment.isCommandMode()) {
23-
$('.statustext', context).text("mode: COMMAND");
23+
$('.statustext', context).text("mode: NORMAL");
2424
$('.insert-mode', context).hide();
2525
$('.command-mode', context).show();
2626
} else {

0 commit comments

Comments
 (0)