Skip to content

Commit

Permalink
[vim] solarized - added SolarizedOptions command
Browse files Browse the repository at this point in the history
  • Loading branch information
altercation committed Apr 29, 2011
1 parent f300969 commit ca234ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions colors/solarized.vim
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ autocmd GUIEnter * if (s:vmode != "gui") | exe "colorscheme " . g:colors_name |
"
" let g:solarized_menu=0

function! SolarizedOptions()
function! s:SolarizedOptions()
new
setf vim
let failed = append(0, s:defaults_list)
Expand All @@ -874,6 +874,9 @@ function! SolarizedOptions()
let failed = append(0, s:lazycat_list)
0
endfunction
if !exists(":SolarizedOptions")
command SolarizedOptions :call s:SolarizedOptions()
endif

function! SolarizedMenu()
if exists("g:loaded_solarized_menu")
Expand Down Expand Up @@ -908,7 +911,7 @@ if g:colors_name == "solarized"
amenu &Solarized.&Help.&Toggle\ Background\ Help :help togglebg<CR>
amenu &Solarized.&Help.&Removing\ This\ Menu :help solarized-menu<CR>

amenu &Solarized.&Autogenerate\ options :call SolarizedOptions()<CR>
amenu &Solarized.&Autogenerate\ options :SolarizedOptions<CR>

an 9999.77 &Help.&Solarized\ Colorscheme :help solarized<CR>
an 9999.78 &Help.&Toggle\ Background :help togglebg<CR>
Expand Down
4 changes: 3 additions & 1 deletion doc/solarized.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ You can easily modify and experiment with Solarized display options using the
Solarized menu when using Vim in gui mode. Once you have things set to your
liking, you can autogenerate the current option list in a format ready for
insertion into your .vimrc file using the Solarized menu "Autogenerate
Options" command.
Options" command or at the command line with:

:SolarizedOptions


OPTION LIST
Expand Down

0 comments on commit ca234ef

Please sign in to comment.