branch: elpa/markdown-mode commit f8c14afe85a4cb958cb84b7598a814ece96656f1 Merge: ab0b5e9 9170b37 Author: Shohei YOSHIDA <syo...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #643 from jrblevin/issue-639 Fix wrong menu command setting issue --- CHANGES.md | 2 ++ markdown-mode.el | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7b9a1a0..73de87b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -71,6 +71,7 @@ - Fix exception when inserting code block at end of buffer [GH-634][] - Fix table operations when table column contains escaped vertical bars [GH-635][] - Fix issue that executing `markdown-table-sort-lines` via menu-bar with older Emacs(< 28) [GH-641][] + - Fix wrong markdown table command issue in menu [GH-639][] [gh-290]: https://github.com/jrblevin/markdown-mode/issues/290 [gh-311]: https://github.com/jrblevin/markdown-mode/issues/311 @@ -102,6 +103,7 @@ [gh-631]: https://github.com/jrblevin/markdown-mode/issues/631 [gh-634]: https://github.com/jrblevin/markdown-mode/issues/634 [gh-635]: https://github.com/jrblevin/markdown-mode/issues/635 + [gh-639]: https://github.com/jrblevin/markdown-mode/issues/639 [gh-641]: https://github.com/jrblevin/markdown-mode/issues/641 # Markdown Mode 2.4 diff --git a/markdown-mode.el b/markdown-mode.el index 801f35a..4e73fb2 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -5542,10 +5542,10 @@ See also `markdown-mode-map'.") ["Move Row Down" markdown-move-down :enable (markdown-table-at-point-p) :keys "C-c <down>"] - ["Move Column Left" markdown-demote + ["Move Column Left" markdown-promote :enable (markdown-table-at-point-p) :keys "C-c <left>"] - ["Move Column Right" markdown-promote + ["Move Column Right" markdown-demote :enable (markdown-table-at-point-p) :keys "C-c <right>"] ["Delete Row" markdown-table-delete-row