Skip to content

Commit

Permalink
Support shift selection for paragraph and block movement
Browse files Browse the repository at this point in the history
See GH-191.  Thanks to Brendan Rocks for reporting this.

<#191 (comment)>
  • Loading branch information
jrblevin committed Aug 12, 2017
1 parent 40dbc48 commit c79ab7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions markdown-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -6585,7 +6585,7 @@ the surrounding context in light of Markdown syntax. For that, see
"Move the point to the start of the current paragraph.
With argument ARG, do it ARG times; a negative argument ARG = -N
means move forward N blocks."
(interactive "p")
(interactive "^p")
(or arg (setq arg 1))
(if (< arg 0)
(markdown-forward-paragraph (- arg))
Expand Down Expand Up @@ -6639,7 +6639,7 @@ means move forward N blocks."
"Move forward to the next end of a paragraph.
With argument ARG, do it ARG times; a negative argument ARG = -N
means move backward N blocks."
(interactive "p")
(interactive "^p")
(or arg (setq arg 1))
(if (< arg 0)
(markdown-backward-paragraph (- arg))
Expand Down Expand Up @@ -6690,7 +6690,7 @@ Moves across complete code blocks, list items, and blockquotes,
but otherwise stops at blank lines, headers, and horizontal
rules. With argument ARG, do it ARG times; a negative argument
ARG = -N means move forward N blocks."
(interactive "p")
(interactive "^p")
(or arg (setq arg 1))
(if (< arg 0)
(markdown-forward-block (- arg))
Expand Down Expand Up @@ -6737,7 +6737,7 @@ Moves across complete code blocks, list items, and blockquotes,
but otherwise stops at blank lines, headers, and horizontal
rules. With argument ARG, do it ARG times; a negative argument
ARG = -N means move backward N blocks."
(interactive "p")
(interactive "^p")
(or arg (setq arg 1))
(if (< arg 0)
(markdown-backward-block (- arg))
Expand Down

0 comments on commit c79ab7e

Please sign in to comment.