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:35:37 -0700
committerKartik Agaram <vc@akkartik.com>2019-09-04 17:35:37 -0700
commitc2d60fbe87e0eb817563f053faef5b64e4b64c03 (patch)
tree1b4647a7c054caec6e80392a3caf1d938ad2a83c /vimrc.vim
parent5a0a0005cca8e40189c106db6292169263b80a9f (diff)
downloadmu-c2d60fbe87e0eb817563f053faef5b64e4b64c03.tar.gz
5618
Diffstat (limited to 'vimrc.vim')
-rw-r--r--vimrc.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/vimrc.vim b/vimrc.vim
index 4710d971..b84df46f 100644
--- a/vimrc.vim
+++ b/vimrc.vim
@@ -75,6 +75,8 @@ endif
 command! -nargs=0 L exec "%!grep -a label |grep -v clear-stream:loop"
 
 " run test cursor around cursor
+" Unfortunately this only works with Linux at the moment.
+" Some compiler passes take too long to run in emulated mode.
 " 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