Emacs 27.1
Suppose I has text file with 50_000 rows.
I want to select region from row number 10_000 to row number 30_000.
How I can do this in Emacs?
Emacs 27.1
Suppose I has text file with 50_000 rows.
I want to select region from row number 10_000 to row number 30_000.
How I can do this in Emacs?
M-x goto-line
, bound toM-g g
by default, will allow you to jump to the 10,000th row and 30,000th row. Otherwise the answer from your previous question applies here. – Tyler Mar 11 '24 at 19:35