Skip to content

Commit

Permalink
Fix typo in src/juggler.vim and build plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed May 5, 2012
1 parent a87aff4 commit 15f57ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/lusty-juggler.vim
Expand Up @@ -1233,7 +1233,7 @@ end

if VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "dvorak"')
$lusty_juggler = LustyJ::LustyJugglerDvorak.new
elseif VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "colemak"')
elsif VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "colemak"')
$lusty_juggler = LustyJ::LustyJugglerColemak.new
else
$lusty_juggler = LustyJ::LustyJuggler.new
Expand Down
2 changes: 1 addition & 1 deletion src/juggler.vim
Expand Up @@ -292,7 +292,7 @@ end

if VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "dvorak"')
$lusty_juggler = LustyJ::LustyJugglerDvorak.new
elseif VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "colemak"')
elsif VIM::exists?('g:LustyJugglerKeyboardLayout') and VIM::evaluate_bool('g:LustyJugglerKeyboardLayout == "colemak"')
$lusty_juggler = LustyJ::LustyJugglerColemak.new
else
$lusty_juggler = LustyJ::LustyJuggler.new
Expand Down

0 comments on commit 15f57ae

Please sign in to comment.