Skip to content

Commit

Permalink
Fix mode naming in status bar
Browse files Browse the repository at this point in the history
Thanks S.N. for spotting this.
  • Loading branch information
egaga committed Oct 19, 2020
1 parent 3e0962e commit 7d9d87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/view/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function create_VIM_VIEW(environment, messager, context) {

function update() {
if(environment.isCommandMode()) {
$('.statustext', context).text("mode: COMMAND");
$('.statustext', context).text("mode: NORMAL");
$('.insert-mode', context).hide();
$('.command-mode', context).show();
} else {
Expand Down

0 comments on commit 7d9d87b

Please sign in to comment.