I wan't to switch the keybinding in helm-find-files when I go one level up or go in to a folder. Now it looks like:
- "C-j" -> go in to the folder
- "C-l" -> go one level up
For me, it's intuitive to switch them, so it will be the following:
- "C-j" -> go one level up
- "C-l" -> go in to the folder
I could replace the "C-j" to the one I wanted with this:
(define-key helm-map (kbd "C-j") 'helm-find-files-up-one-level)
I don't know what's the action's name to "go in to the folder". If I find it out, that could be a solution.