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))