Quickly search through your code for a function name

Filed under: programming

There’s a tool called ‘ag’ that you can install to your OSX machine with brew install the_silver_searcher

When searching for haskell functions, you can add the --haskell flag to only search haskell files.

Maximise your speed with assigning an alias: alias agh=‘ag —haskell'