我在编程模式下工作,例如javascript-mode
,并且通常需要按一些行来进行格式化。
我发现C-o
方便在光标点后插入换行符。然而,推行的线路失去了它的缩进。
我发现插入换行符很方便RET
。推下的线很好地缩进了。但是,插入的换行位于当前光标点之后。 (编辑:)我发现通过在其后面插入换行符来保持光标位置很方便,因为有时候我仍然需要修改当前行。
答案 0 :(得分:0)
可能是这样的:
(defun open-line-and-indent ()
"Like `newline-and-indent', but do not move the point."
(interactive)
(save-excursion
(newline-and-indent)))
(global-set-key (kbd "C-o") #'open-line-and-indent)
;; (define-key javascript-mode-map (kbd "C-o") #'open-line-and-indent)