about summary refs log tree commit diff stats
path: root/vimrc.vim
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-09-07 23:47:18 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-07 23:47:18 -0700
commitac4839899a1336ed4fa3407b6e0c908148fe5d4a (patch)
tree9f0d2043c2d52d8c23d561a2a9feb991eb4ad3ec /vimrc.vim
parent6fb244a78841fd04a3514f6a48de2127737bb715 (diff)
downloadmu-ac4839899a1336ed4fa3407b6e0c908148fe5d4a.tar.gz
5642
Diffstat (limited to 'vimrc.vim')
-rw-r--r--vimrc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc.vim b/vimrc.vim
index 50cf9230..4cb926d0 100644
--- a/vimrc.vim
+++ b/vimrc.vim
@@ -84,7 +84,7 @@ if empty($TMUX)
   "   can't put final cursor movement out of function because that disables the wait for <CR> prompt; function must be final operation of map
   "   can't avoid the function because that disables the wait for <CR> prompt
   " known issue:
-  "   cursor on '#' causes error
+  "   can't handle comments at start of current test
   noremap <Leader>t {j0:call RunTestMoveCursor("<C-r><C-w>")<CR>
   function RunTestMoveCursor(arg)
     let l:arg = a:arg == "#" ? " " : a:arg  " Vim's '!' insists on interpreting '#' anywhere in its arg