w****r 发帖数: 9 | 1 Hi Daxia,
I have two emacs problems:
1. I have the line number displayed in the mode line. But when the line number
is much big, it will display ??. Anyone know how to solve it?
2. How to let the emacs remember my current position. when you
go somewhere, you can come back to this position quickly. Like VC++?
Thanks, | p****s 发帖数: 3184 | 2
(setq line-number-display-limit 999999999999999999999999999999999999999999)
Read the "Register" section in Emacs manual.
Save current point to a register: M-x point-to-register
Jump to a saved point: M-x jump-to-register
【在 w****r 的大作中提到】 : Hi Daxia, : I have two emacs problems: : 1. I have the line number displayed in the mode line. But when the line number : is much big, it will display ??. Anyone know how to solve it? : 2. How to let the emacs remember my current position. when you : go somewhere, you can come back to this position quickly. Like VC++? : Thanks,
| w****r 发帖数: 9 | 3 pjones,
thanks!!!
【在 p****s 的大作中提到】 : : (setq line-number-display-limit 999999999999999999999999999999999999999999) : Read the "Register" section in Emacs manual. : Save current point to a register: M-x point-to-register : Jump to a saved point: M-x jump-to-register
|
|