0
如何使用align
emacs命令對齊如下結構的文件?使用emacs對齊「鍵值註釋」文件類型
key.name1 "his value 1"; # the comment
key.name2 "his other value";
otherkey.id 10; # comment
key.without.other ; # comment
key2.without.other true; # comment
我使用conf-mode
下的emacs 25.
的列編碼如下:
- 第一列(密鑰)是沒有空格的字符串,
- 第二列(值)到達分號,
- 第三列(註釋)並非總是存在,並以
#
開頭「
結果應該是
key.name1 "his value 1"; # the comment
key.name2 "his other value";
otherkey.id 10; # comment
key.without.other ; # comment
key2.without.other true; # comment
感謝您的建議。我編輯了更具體的問題 –