From 11de60a4fb7678089c85708a276d32bddc384576 Mon Sep 17 00:00:00 2001 From: Nate Kane Date: Mon, 6 Dec 2010 21:40:39 +1000 Subject: [PATCH] Slight tweak to a function comment --- plugin/indent-guides.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/indent-guides.vim b/plugin/indent-guides.vim index 3253072..b7bd444 100644 --- a/plugin/indent-guides.vim +++ b/plugin/indent-guides.vim @@ -90,8 +90,10 @@ function! HexToDec(arg) return (a:arg =~? '^0x') ? a:arg + 0 : ('0x'.a:arg) + 0 endfunction +" " Example: HexColorToRGB('#0088FF') " Returns: [0, 136, 255] +" function! HexColorToRGB(hex_color) let l:rgb = [] if matchstr(a:hex_color, s:hex_color_pattern) == a:hex_color