Emacs cc模式选项卡行为

时间:2011-08-19 10:29:55

标签: emacs cc-mode

多次按Tab键不会将文本向右移动。有没有办法使它的行为像Visual Studio的智能缩进?第一个选项卡缩进,后续选项卡将文本移动到下一个制表位。谢谢。

2 个答案:

答案 0 :(得分:5)

这样的东西?

(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)))

然后,您需要将标签插入与

之类的内容绑定
(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了,所以我不确定这是否正是你所追求的,但希望很清楚如何修改。

答案 1 :(得分:1)

M-i(制表符到制表符停止)会带您进入下一个制表位。