Changed <F12> and <C-F12> in gvim to <Leader><F1> and <Leader><F2>

This commit is contained in:
Kevin MacMartin 2014-07-07 16:07:14 -04:00
parent e48ad9529e
commit 56dd4525e4
2 changed files with 10 additions and 10 deletions

View file

@ -120,8 +120,8 @@ A theme, config and collection of plugins for Vim.
| Binding | Mode | Action | | Binding | Mode | Action |
|:-----------------------|:----:|-------------------------------------------------:| |:-----------------------|:----:|-------------------------------------------------:|
| \<F12\> | ALL | Toggle the menubar **(gvim)** | | \<Backslash\>\<F1\> | ALL | Toggle the menubar **(gvim)** |
| \<Ctrl-F12\> | ALL | Toggle the toolbar **(gvim)** | | \<Backslash\>\<F2\> | ALL | Toggle the toolbar **(gvim)** |
### Complete Reference ### ### Complete Reference ###

View file

@ -96,8 +96,8 @@
" <Alt-F4> | (A) -> toggle external-paste mode " <Alt-F4> | (A) -> toggle external-paste mode
" "
" (gvim toggles) " (gvim toggles)
" <F12> | (A) -> toggle the menubar " <Leader><F1> | (A) -> toggle the menubar
" <Ctrl-F12> | (A) -> toggle the toolbar " <Leader><F2> | (A) -> toggle the toolbar
" "
" (spellcheck) " (spellcheck)
" ?<Space> | (N) -> toggle spellcheck error list " ?<Space> | (N) -> toggle spellcheck error list
@ -441,14 +441,14 @@
"GVIM TOGGLES:{ "GVIM TOGGLES:{
"toggle the menu "toggle the menu
nnoremap <silent><expr> <F12> ":if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>:echo 'Menu bar toggled'<CR>" nnoremap <silent><expr> <Leader><F1> ":if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>:echo 'Menu bar toggled'<CR>"
vnoremap <silent><expr> <F12> "<Esc>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>gv" vnoremap <silent><expr> <Leader><F1> "<Esc>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>gv"
inoremap <silent><expr> <F12> "<C-O>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>" inoremap <silent><expr> <Leader><F1> "<C-O>:if &go=~#'m'<Bar>set go-=m<Bar>else<Bar>set go+=m<Bar>endif<CR>"
"toggle the toolbar "toggle the toolbar
nnoremap <silent><expr> <C-F12> ":if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>:echo 'Toolbar toggled'<CR>" nnoremap <silent><expr> <Leader><F2> ":if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>:echo 'Toolbar toggled'<CR>"
vnoremap <silent><expr> <C-F12> "<Esc>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>gv" vnoremap <silent><expr> <Leader><F2> "<Esc>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>gv"
inoremap <silent><expr> <C-F12> "<C-O>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>" inoremap <silent><expr> <Leader><F2> "<C-O>:if &go=~#'T'<Bar>set go-=T<Bar>else<Bar>set go+=T<Bar>endif<CR>"
"} "}
"SPELLCHECK:{ "SPELLCHECK:{