如何在 Emacs 中以 Markdown 模式向内缩进一个 TAB 或 4 个空格?
如何在 Emacs 中以 Markdown 模式向内缩进一个 TAB 或 4 个空格?
我的意思是手动触发所选文本。
How to indent inward a block of text by a TAB or 4 spaces, in Emacs, in markdown-mode?
I mean manually triggering that for selected text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,
Cu Cx Ci
会将标记的块缩进 4 个空格(Cx Ci
=>indent-rigidly
,Cu< /code> 后面不带数字或减号 => 4) 的隐式通用参数。 (首先用
C-SPC
标记块的一端,然后移动到块的另一端,以防“标记”不是一个熟悉的概念。)从 http://jblevins.org/projects/markdown-mode/,如果您想以这种方式缩进块将其标记为代码,你想要
Cc Cs c
(如上所述标记块之后)。In general,
C-u C-x C-i
will indent the marked block by 4 spaces (C-x C-i
=>indent-rigidly
,C-u
without following digits or minus sign => the implicit universal argument of 4). (First mark one end of the block withC-SPC
and then move to the other end of the block, in case "marked" isn't a familiar concept.)Judging from http://jblevins.org/projects/markdown-mode/, if you want to indent the block that way to mark it as code, you want
C-c C-s c
(after marking the block as above).