I have a line of code in emacs:
<tab><tab>int i = 0;<cursor>
If I click Ctrl-a, it will move to the beginning of line:
<cursor><tab><tab>int i = 0;
But I want to create an elisp function, that will ignore any indentation at the beginning:
<tab><tab><cursor>int i = 0;
How to do that?
1 Answer