Skip to content

Commit

Permalink
Fix meow-line behavior in term, eshell, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
DogLooksGood committed Oct 14, 2024
1 parent 620a06e commit 2f6fac3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meow-command.el
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,8 @@ numeric, repeat times.
(p (save-mark-and-excursion
(if forward
(progn
(forward-line (1- n))
(unless (= n 1)
(forward-line (1- n)))
(line-end-position))
(progn
(forward-line (1+ n))
Expand Down

0 comments on commit 2f6fac3

Please sign in to comment.