vmail 1.5.6 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +5 -0
- data/lib/vmail.vim +1 -0
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -492,6 +492,11 @@ vmail gem is downloaded from).
|
|
|
492
492
|
[github]:https://github.com/danchoi/vmail
|
|
493
493
|
[rubygems]:https://rubygems.org/gems/vmail
|
|
494
494
|
|
|
495
|
+
|
|
496
|
+
## Quitting Vmail
|
|
497
|
+
|
|
498
|
+
* `,qq` will quit Vmail from any window. It's equivalent to `:qall!`
|
|
499
|
+
|
|
495
500
|
## Redrawing the screen
|
|
496
501
|
|
|
497
502
|
If you run commands in very fast succession, the screen may get a little messed
|
data/lib/vmail.vim
CHANGED
|
@@ -836,6 +836,7 @@ func! s:global_mappings()
|
|
|
836
836
|
noremap <silent> <leader>o :call <SID>open_href(0)<cr>
|
|
837
837
|
noremap <silent> <leader>O :call <SID>open_href(1)<cr>
|
|
838
838
|
noremap <silent> <leader>? :call <SID>show_help()<cr>
|
|
839
|
+
noremap <silent> <leader>qq :qal!<cr>
|
|
839
840
|
endfunc
|
|
840
841
|
|
|
841
842
|
"TODO see if using LocalLeader and maplocalleader makes more sense
|
data/lib/vmail/version.rb
CHANGED