Skip to content
Snippets Groups Projects
Commit d7c734ac authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Ignore regex error inside trim call (#51)

parent ed13fc86
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment