# HG changeset patch
# User mahlon
# Date 1240204013 0
# Node ID 2e76f5b2a40f82549df0d04a473c93370475b42c
# Parent  e47dd47e5247117bc1ae4cc8879214f8cc2714d8
Hmm, not sure why I thought this worked.  It doesn't.

diff -r e47dd47e5247 -r 2e76f5b2a40f specky/plugin/specky.vim
--- a/specky/plugin/specky.vim	Mon Apr 20 01:24:08 2009 +0000
+++ b/specky/plugin/specky.vim	Mon Apr 20 05:06:53 2009 +0000
@@ -5,26 +5,28 @@
 " $Id$
 "
 
+
 " Hook up the functions to the user supplied key bindings. {{{
 "
 if exists( 'g:speckySpecSwitcherKey' )
-	map &g:speckySpecSwitcherKey <SID>SpecSwitcher()
+	execute 'map ' . g:speckySpecSwitcherKey . ' :call <SID>SpecSwitcher()<CR>'
+"	map &g:speckySpecSwitcherKey <SID>SpecSwitcher()
 endif
 
 if exists( 'g:speckyQuoteSwitcherKey' )
-	map &g:speckyQuoteSwitcherKey <SID>QuoteSwitcher()
+	execute 'map ' . g:speckyQuoteSwitcherKey . ' :call <SID>QuoteSwitcher()<CR>'
 endif
 
 if exists( 'g:speckyBannerKey' )
-	map &g:speckyBannerKey <SID>MakeBanner()
+	execute 'map ' . g:speckyBannerKey . ' :call <SID>MakeBanner()<CR>'
 endif
 
 if exists( 'g:speckyRunSpecKey' )
-	map &g:speckyRunSpecKey <SID>RunSpec()
+	execute 'map ' . g:speckyRunSpecKey . ' :call <SID>RunSpec()<CR>'
 endif
 
 if exists( 'g:speckyRunRdocKey' )
-	map g:speckyRunRdocKey <SID>RunRdoc()
+	execute 'map ' . g:speckyRunRdocKey . ' :call <SID>RunRdoc()<CR>'
 endif
 
 if exists( 'specky_loaded' )