Go to the first, previous, next, last section, table of contents.

カーソルを上下に動かすと異なったカラムへずれてしまうのはどうして?

きっと不注意に "C-x C-n" (set-goal-column) をタイプしてしまったのでしょう. このコマンドはカーソルを上下に移動したときのカラムを指定します. "C-u C-x C-n" で取り消すことができます.

しばしばこの誤りを繰返してしまうなら, 次のようにしてキー・バインディングを取り消すか, またはコマンドを無効にしてしまうこともできます:

  (define-key ctl-x-map "\C-n" nil)
  (put 'set-goal-column 'disabled t)

Go to the first, previous, next, last section, table of contents.