エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
EmacsWiki: Reformat Buffer
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
EmacsWiki: Reformat Buffer
Try this: C-x h C-M-\ C-x h runs the command mark-whole-buffer C-M-\ runs the command indent-regi... Try this: C-x h C-M-\ C-x h runs the command mark-whole-buffer C-M-\ runs the command indent-regionYou can also insert something like: (defun indent-buffer () (interactive) (save-excursion (indent-region (point-min) (point-max) nil))) (global-set-key [f12] 'indent-buffer)If you want to rewrap comments afterwards, see CodeBeautifying. See also: package format-all CategoryIndentation This work is li