about summary refs log tree commit diff stats
path: root/vimrc.vim
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-09-04 17:33:20 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-04 17:33:20 -0700
commit5a0a0005cca8e40189c106db6292169263b80a9f (patch)
treecffb6cbcfbee343274af3ad80747ec617f1dcd93 /vimrc.vim
parent719dec729c1c2986132c8e111bd11a256b026b4c (diff)
downloadmu-5a0a0005cca8e40189c106db6292169263b80a9f.tar.gz
5617
Diffstat (limited to 'vimrc.vim')
-rw-r--r--vimrc.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/vimrc.vim b/vimrc.vim
index 2f39ad8d..4710d971 100644
--- a/vimrc.vim
+++ b/vimrc.vim
@@ -75,9 +75,6 @@ endif
 command! -nargs=0 L exec "%!grep -a label |grep -v clear-stream:loop"
 
 " run test cursor around cursor
-"   if test fails, open trace in split window
-"   if test passes, just show output and wait for <CR>
-"   don't move cursor in original window
 " this solution is unfortunate, but seems forced:
 "   can't put initial cursor movement inside function because we rely on <C-r><C-w> to grab word at cursor
 "   can't put final cursor movement out of function because that disables the wait for <CR> prompt; function must be final operation of map