Bind a key to a command in Bash
You can bind, for example, the command ls -l to CTRL+l using:
bind -x '"\C-l":"ls -l\n"'
It may be useful to append this line in your .bashrc.
Now, every time you press CTRL+l, even in the middle of another command, a directory listing will appear! :)