From 3342ed4c55a70e3790dcc954680d160be068c38a Mon Sep 17 00:00:00 2001 From: jkaplon Date: Sat, 1 Oct 2016 13:03:06 -0400 Subject: [PATCH] CodeMirror docs say default tab width is 4, but it was somehow only indenting 2. --- views/index.hbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/views/index.hbs b/views/index.hbs index 389577c..0bde606 100644 --- a/views/index.hbs +++ b/views/index.hbs @@ -31,7 +31,8 @@ keyMap: "vim", matchBrackets: true, showCursorWhenSelecting: true, - viewportMargin: Infinity + viewportMargin: Infinity, + tabSize: 4 }); // Add my .vimrc stuff. CodeMirror.Vim.map('jj', '', 'insert')