emacs remove any indentation

Here’s another quick one. It could be when formatting pieces of code that you want to remove any space from the beginning of the line. Removing de-facto any indentation.

M-x query-replace-regexp RET
^[[:space:]]+ RET
RET

Confirm then one by one with ‘y‘ or replace all of the buffer with ‘!‘.