From d7c734acd69654aab119cb6ce0c5743c369c5c2b Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sat, 7 Jun 2014 01:17:38 +0900 Subject: [PATCH] Ignore regex error inside trim call (#51) --- fzf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fzf b/fzf index 774e634e..1ea6a8ee 100755 --- a/fzf +++ b/fzf @@ -7,7 +7,7 @@ # / __/ / /_/ __/ # /_/ /___/_/ Fuzzy finder for your shell # -# Version: 0.8.5 (May 29, 2014) +# Version: 0.8.5 (Jun 7, 2014) # # Author: Junegunn Choi # URL: https://github.com/junegunn/fzf @@ -443,7 +443,7 @@ class FZF width = width str diff = 0 while width > len - width -= (left ? str[0, 1] : str[-1, 1]) =~ @@wrx ? 2 : 1 + width -= ((left ? str[0, 1] : str[-1, 1]) =~ @@wrx ? 2 : 1) rescue 1 str = left ? str[1..-1] : str[0...-1] diff += 1 end