about summary refs log tree commit diff stats
path: root/subx/teensy/vimrc.vim
diff options
context:
space:
mode:
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