私はviに相当するemacsを探してい^
ます。
行の最初の非空白文字にカーソルを移動するにはどうすればよいですか?
私はviに相当するemacsを探してい^
ます。
行の最初の非空白文字にカーソルを移動するにはどうすればよいですか?
回答:
これは私が前のスタックオーバーフローの質問から選んだものです:
(defun smart-beginning-of-line ()
"Move point to first non-whitespace character or beginning-of-line.
Move point to the first non-whitespace character on this line.
If point was already at that position, move point to beginning of line."
(interactive)
(let ((oldpos (point)))
(back-to-indentation)
(and (= oldpos (point))
(beginning-of-line))))
(global-set-key [home] 'smart-beginning-of-line)
(global-set-key "\C-a" 'smart-beginning-of-line)
M-m
は、まさに^
vim の類似物であり、したがって、まさに正しい答えです。