In emacs you can skip to the beginning of the indent of with Meta+M, which was actually far more useful than skipping to the beginning of the line, which is Ctrl+A in both emacs and atom.
Is there a keybinding, or a simple package that has this feature?
Just to clarify say you have some code
function example() {
console.log('hello');
}
Meta+M would put you here:
function example() {
console.log('hello');
^
}
Ctrl + A puts you here:
function example() {
console.log('hello');
^
}