# 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 SpecSwitcher() + execute 'map ' . g:speckySpecSwitcherKey . ' :call SpecSwitcher()' +" map &g:speckySpecSwitcherKey SpecSwitcher() endif if exists( 'g:speckyQuoteSwitcherKey' ) - map &g:speckyQuoteSwitcherKey QuoteSwitcher() + execute 'map ' . g:speckyQuoteSwitcherKey . ' :call QuoteSwitcher()' endif if exists( 'g:speckyBannerKey' ) - map &g:speckyBannerKey MakeBanner() + execute 'map ' . g:speckyBannerKey . ' :call MakeBanner()' endif if exists( 'g:speckyRunSpecKey' ) - map &g:speckyRunSpecKey RunSpec() + execute 'map ' . g:speckyRunSpecKey . ' :call RunSpec()' endif if exists( 'g:speckyRunRdocKey' ) - map g:speckyRunRdocKey RunRdoc() + execute 'map ' . g:speckyRunRdocKey . ' :call RunRdoc()' endif if exists( 'specky_loaded' )