領域内のすべてのインデント(つまり、最初の非空白文字の前のすべての空白)を削除するemacs関数はありますか?
そうでない場合、これを達成するために.emacsにどのコードスニペットを追加する必要がありますか?
領域内のすべてのインデント(つまり、最初の非空白文字の前のすべての空白)を削除するemacs関数はありますか?
そうでない場合、これを達成するために.emacsにどのコードスニペットを追加する必要がありますか?
(defun my-delete-indentation (start end)
"Delete all leading whitespace within the current region."
(interactive "*r")
(replace-regexp "^[[:space:]]+" "" nil start end))
(nb delete-indentation
Emacsには関数がありますが、これとはかなり異なることをします。)
あなたは試すことができC-u -1000 M-x indent-code-rigidly RET
ます。