Tmux Part 4: Vim Integration

hi,

when I run run Rspec from within Vim, my spec file is replaced with a new window that runs the spec file. When I hit return I return to the spec file. However I would prefer that the spec is run in a new pane, like in the tutorial video.

I installed the .dotfiles with the Thoughtbot Laptop script.

In my .vimrc file the following lines specify the vim-rspec configuration:

" vim-rspec mappings                                                                                  
nnoremap <Leader>t :call RunCurrentSpecFile()<CR>                                                     
nnoremap <Leader>s :call RunNearestSpec()<CR>                                                         
nnoremap <Leader>l :call RunLastSpec()<CR>  

am I missing something?

Thanks for your help,

Anthony