From 9639147ca59f5e8c4523e29096c67aaef27bf144 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 7 Jul 2015 23:30:03 +0200 Subject: [PATCH] Output without quotes --- src/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.hs b/src/Main.hs index f818d22..25b0704 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -91,6 +91,6 @@ search ProgArgs {..} = do then select (fuzzy searchTerm items) else select (byAttrib (Left exactMatches, Str searchTerm) items) if contentOnly - then mapM_ print (map content res) + then mapM_ putStrLn (map content res) else pprint res when (not noClipboard) (sendClipboard (content $ head res))