gpt4 book ai didi

Emacs cc 模式选项卡行为

转载 作者:行者123 更新时间:2023-12-05 00:37:15 29 4
gpt4 key购买 nike

多次按 Tab 不会将文本向右移动。有没有办法让它表现得像 Visual Studio 的智能缩进?第一个制表符缩进,随后的制表符将文本移动到下一个制表位。谢谢你。

最佳答案

像这样的东西?

(defun even-more-tabby-indent (&optional arg)
"This indent function tries to be more like Microsoft's IDEs
than `C-INDENT-COMMAND' and does the following: If we're at the
beginning of the line or `C-TAB-ALWAYS-INDENT' is true or `ARG'
is non-nil, indent like a sensible text editor. Otherwise the
user probably WANTS MOAR TABS. So call `C-INSERT-TAB-FUNCTION'."
(interactive "P")
(if (or c-tab-always-indent (bolp) arg)
(c-indent-command arg)
(funcall c-insert-tab-function)))

然后你会想用类似的东西绑定(bind)标签插入
(defun setup-tabby-indent ()
(local-set-key (kbd "<tab>") 'even-more-tabby-indent)
(setq c-tab-always-indent nil))

(add-hook 'c-mode-hook 'setup-tabby-indent)

我已经很多年没有使用 MS Visual Studio,所以我不确定这是否正是你所追求的,但希望很清楚如何修改。

关于Emacs cc 模式选项卡行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7120296/

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