Remove autocmd causing problems. Add mapping for running specs

This commit is contained in:
yan 2011-12-23 21:05:50 -08:00
parent 0d51708808
commit 10da9de4ff
2 changed files with 5 additions and 8 deletions

View File

@ -181,7 +181,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke
* ,ru - Rails Unittest - synonym for :AV from rails.vim, opens up the corresponding test/spec to the file you're looking for, in a vertical split
* \ss to run specs, \ll to run a given spec on a line - using my vim-ruby-conque plugin (https://github.com/skwp/vim-ruby-conque)
* Cmd-Shift-R to use vim-rspec to run a spec file. Soon to support running individual contexts.
* Cmd-Shift-R to use vim-rspec to run a spec file. Cmd-Shift-L to run from a line (individual it block)
**Surround.vim customizations**

View File

@ -18,9 +18,9 @@ nnoremap Y y$
" RSI Prevention - keyboard remaps
" ========================================
" Certain things we do every day as programmers stress
" out our hands. For example, typing underscores and
" out our hands. For example, typing underscores and
" dashes are very common, and in position that require
" a lot of hand movement. Vim to the rescue
" a lot of hand movement. Vim to the rescue
"
" Now using the middle finger of either hand you can type
" underscores with apple-k or apple-d, and add Shift
@ -187,8 +187,5 @@ abbr pry! require 'pry'; binding.pry
" ============================
" Cmd-Shift-R for RSpec
nmap <D-R> :RunSpec<CR>
" If you use a fast_spec directory, Rfastspec can help you find
" one of your fast specs
autocmd User BufEnterRails Rnavcommand fastspec fast_spec/ -glob=**/** -suffix=_spec.rb -default=model()
" Cmd-Shift-L for RSpec Current Line
nmap <D-L> :RunSpecLine<CR>