gpt4 book ai didi

emacs - 如何向 Emacs 主模式添加垂直对齐功能

转载 作者:行者123 更新时间:2023-12-02 09:34:26 25 4
gpt4 key购买 nike

我每天都在 emacs 中使用 verilg-mode,但代码对齐对我来说不太好。所以想添加一些东西,比如垂直对齐。

首先,我希望像这样对齐声明行:

bit [1:0] a;
bit [3254:0] b;
bit unsigned [P_DWIDTH-1:0] c;
bit unsigned [P_DWIDTH-1:P_DWIDTH-4] d;
int e;

至:

bit          [         1:0         ] a;
bit [ 3254:0 ] b;
bit unsigned [P_DWIDTH-1:0 ] c;
bit unsigned [P_DWIDTH-1:P_DWIDTH-4] d;
int e;

我没有太多 Elisp 经验。我不确定像 align-regexp 这样的东西是否值得一看?或者任何人请为我指出正确的开始方向。

最佳答案

根据@homeless的回复,我做了修改:使用narrow-to-region来避免区域边界变化。

(defun align-decl-vertically ()
"Align verilog declarations."
(interactive)
(save-excursion
(save-restriction
(narrow-to-region (region-beginning) (region-end))
;; remove spaces around ":"
(goto-char (point-min))
(while (re-search-forward "\\s-*:\\s-*" (point-max) t)
(replace-match ":"))

;; align "["
(align-regexp (point-min) (point-max) "\\(\\s-*\\)\\[" -1 1 0)
;; align ":"
(align-regexp (point-min) (point-max) "\\[\\(.+:\\)" -1 0 0)
;; align "]"
(align-regexp (point-min) (point-max) "\\s-*\\(\\]\\)" -1 0 0)
;; align variable name
(align-regexp (point-min) (point-max) "\\(\\s-+\\)\\S-+;" -1 1 0)
(widen))))

还找到另一种方法来更新 align 规则以实现此目的(这并不完全按照我的预期工作,但只是在这里列出,也许有些方法可以帮助我修复它):

(add-to-list 'align-mode-rules-list                             
'(declaration-range-field-alignment
(regexp . "\\(\\s-*\\[\\)\\(.*:\\).*\\S-+\\(\\s-*\\]\\)\\(.*\\)")
(group . (1 2 3 4))
(modes . '(verilog-mode))
(tab-stop . nil)
(spacing . (1 0 0 1))
(repeat . nil)
(justify . t)))
(add-to-list 'align-mode-rules-list
'(declaration-variable-name-alignment
(regexp . "\\(\\s-*\\S-*\\s-*;\\)")
(group . 1)
(modes . '(verilog-mode))
(repeat . nil)
(tab-stop . nil)
(spacing . 1)
(justify . t)))

但有时可能需要多次运行 align 才能得到最终结果。我还没弄清楚为什么。

关于emacs - 如何向 Emacs 主模式添加垂直对齐功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28515100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com