From bfc7250aa16bb9eaf7f12e5c912402cb8209aed0 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Wed, 5 Oct 2016 13:59:59 -0400 Subject: [PATCH] Add active line highlight. --- views/index.hbs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/views/index.hbs b/views/index.hbs index 09a04ae..152bd06 100644 --- a/views/index.hbs +++ b/views/index.hbs @@ -10,6 +10,7 @@ + @@ -19,6 +20,8 @@ .CodeMirror { border: 1px solid #eee; height: auto; + border-top: 1px solid black; + border-bottom: 1px solid black; } @@ -37,7 +40,8 @@ matchBrackets: true, showCursorWhenSelecting: true, viewportMargin: Infinity, - tabSize: 4 + tabSize: 4, + styleActiveLine: true }); // Add my .vimrc stuff. CodeMirror.Vim.map('jj', '', 'insert')