I am currently using emacs out of prelude and with helm-projectile enabled in my setup.
Recently I added helm-ls-git to my stack too and noticed that the function helm-browse-project is more interesting for me than the one I've been using previously helm-projectile-find-file (from helm-projectile) bound to C-c p f.
Under my config/personal.el I've added the following line and thought it should do the trick:
(global-set-key (kbd "C-c p f") 'helm-browse-project)
This is not working, but if I switch to another unused key binding such as C-c p 0 for instance, it works perfectly fine.
So, why can't I override it and what should I do in order to make that happen?