├── .gitignore ├── gpl.txt ├── plugin └── sbt.vim ├── python └── sbt-vim.py ├── readme.md ├── test ├── .gitignore ├── 00_ok │ ├── build.sbt │ └── src │ │ └── main │ │ └── scala │ │ └── Test.scala ├── 01_error │ ├── build.sbt │ └── src │ │ └── main │ │ └── scala │ │ └── Test.scala ├── 02_test_ok │ ├── build.sbt │ └── src │ │ ├── main │ │ └── scala │ │ │ └── Test.scala │ │ └── test │ │ └── scala │ │ └── Suite.scala ├── 03_test_error │ ├── build.sbt │ └── src │ │ ├── main │ │ └── scala │ │ │ └── Test.scala │ │ └── test │ │ └── scala │ │ └── Suite.scala └── clean └── todo.md /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw* 2 | *.pyc 3 | log.txt 4 | -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/gpl.txt -------------------------------------------------------------------------------- /plugin/sbt.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/plugin/sbt.vim -------------------------------------------------------------------------------- /python/sbt-vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/python/sbt-vim.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/readme.md -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | */project/ 2 | */target/ 3 | -------------------------------------------------------------------------------- /test/00_ok/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/00_ok/build.sbt -------------------------------------------------------------------------------- /test/00_ok/src/main/scala/Test.scala: -------------------------------------------------------------------------------- 1 | 2 | class Test { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /test/01_error/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/01_error/build.sbt -------------------------------------------------------------------------------- /test/01_error/src/main/scala/Test.scala: -------------------------------------------------------------------------------- 1 | 2 | clas Test { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /test/02_test_ok/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/02_test_ok/build.sbt -------------------------------------------------------------------------------- /test/02_test_ok/src/main/scala/Test.scala: -------------------------------------------------------------------------------- 1 | 2 | object Test { 3 | 4 | val x : Int = 42; 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /test/02_test_ok/src/test/scala/Suite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/02_test_ok/src/test/scala/Suite.scala -------------------------------------------------------------------------------- /test/03_test_error/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/03_test_error/build.sbt -------------------------------------------------------------------------------- /test/03_test_error/src/main/scala/Test.scala: -------------------------------------------------------------------------------- 1 | 2 | object Test { 3 | 4 | val x : Int = 42; 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /test/03_test_error/src/test/scala/Suite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/03_test_error/src/test/scala/Suite.scala -------------------------------------------------------------------------------- /test/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/test/clean -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktvoelker/sbt-vim/HEAD/todo.md --------------------------------------------------------------------------------