about summary refs log tree commit diff stats
path: root/subx/teensy/vimrc.vim
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-30 20:28:36 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-30 20:28:36 -0700
commit86d8f1f30dd70f9be457d9855327649a0870a22e (patch)
treea154b04314f94662327342953cb72aeda69d30da /subx/teensy/vimrc.vim
parenteb1d742baf657273aff2317aeb231f76e1c9e1a8 (diff)
downloadmu-86d8f1f30dd70f9be457d9855327649a0870a22e.tar.gz
4462
The teensy/ examples have outlived their usefulness, I think.
Diffstat (limited to 'subx/teensy/vimrc.vim')
-rw-r--r--subx/teensy/vimrc.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/subx/teensy/vimrc.vim b/subx/teensy/vimrc.vim
deleted file mode 100644
index e0fe2c1e..00000000
--- a/subx/teensy/vimrc.vim
+++ /dev/null
@@ -1,12 +0,0 @@
-" assumes CWD is subx/
-command! -nargs=1 EE call EditSubx(<f-args>)
-
-function! EditSubx(arg)
-  " run commands silently because we may get an error loading EditSubx from a
-  " different directory.
-  if a:arg =~ "test.*"
-    exec "silent! vert split teensy/" . a:arg . "*.[cs]"
-  else
-    exec "silent! vert split " . a:arg . "*.subx"
-  endif
-endfunction