Skip to content

Commit e2f4e58

Browse files
author
Gaspar Chilingarov
committed
Add vim-elixir-exunit for ExUnit support.
1 parent 530f7a2 commit e2f4e58

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,6 @@
4343
[submodule "bundle/nerdcommenter"]
4444
path = bundle/nerdcommenter
4545
url = https://github.com/scrooloose/nerdcommenter.git
46+
[submodule "bundle/vim-elixir-exunit"]
47+
path = bundle/vim-elixir-exunit
48+
url = https://github.com/gasparch/vim-elixir-exunit.git

autoload/vimide.vim

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ function! vimide#setDefaults() " {{{
1515
" set to '' disable managing themes
1616
call s:SetGlobal('g:vimide_colorscheme', 'hybrid/desert')
1717

18-
call s:SetGlobal('g:vimide_terminal', 'xterm')
18+
call s:setGlobal('g:vimide_terminal', 'xterm')
19+
call s:setGlobal('g:vimide_terminal_run_args', "-title %TITLE% -e %CMD% ")
20+
" ESC sequence to change terminal title
21+
" like :r!echo -n "\033]0;${USER}@${HOST}\007"
22+
call s:setGlobal('g:vimide_terminal_title_change', "]0;%TITLE%")
1923

2024
if !exists('&undodir')
2125
if !exists('g:vimide_manage_vimundo') | let g:vimide_manage_vimundo = 1 | en

bundle/vim-elixir-exunit

Submodule vim-elixir-exunit added at 968f3a9

0 commit comments

Comments
 (0)