Variable: markdown-ts-mode-menu

markdown-ts-mode-menu is a variable defined in markdown-ts-mode.el.gz.

Value

<Table> <keymap> <nil-15>         nil
<Table> <keymap> <nil-24>         nil
<Table> <keymap> <nil-27>         nil
<Table> <keymap> <nil-5>          nil
<Table> <keymap> <nil>            nil
<Toggle Hide Markup> <:toggle>    markdown-ts-hide-markup
<Toggle Inline Images> <:toggle>  markdown-ts-inline-images
<nil-10>                          nil
<nil-12>                          nil
<nil-17>                          nil
<nil-20>                          nil
<nil-24>                          nil
<nil-4>                           nil
<nil>                             nil

Documentation

markdown-ts-mode menu.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(easy-menu-define markdown-ts-mode-menu markdown-ts-mode-map
  "`markdown-ts-mode' menu."
  '("Markdown" :visible markdown-ts-menu-bar-show
    "--"
    ["Cycle Outline Visibility"  markdown-ts-outline-cycle              :help "Cycle heading visibility from point"]
    ["Toggle Hide Markup"        markdown-ts-toggle-hide-markup         :help "Toggle display of markup characters" :style toggle :selected markdown-ts-hide-markup]
    ["Toggle Inline Images"      markdown-ts-toggle-inline-images       :help "Toggle display of inline images below links" :style toggle :selected markdown-ts-inline-images]
    "--"
    ["Up"                        outline-up-heading                     :help "Move to the parent heading"]
    ["Next"                      outline-next-heading                   :help "Move to the next heading"]
    ["Previous"                  outline-previous-heading               :help "Move to the previous heading"]
    ["Next Same Level"           outline-forward-same-level             :help "Move to the next heading at the same level"]
    ["Previous Same Level"       outline-backward-same-level            :help "Move to the previous heading at the same level"]
    "--"
    ["Jump"                      imenu                                  :help "Jump to a heading via completion"]
    "--"
    ["Move Subtree Up"           markdown-ts-move-subtree-up            :help "Move the current section or list item up"]
    ["Move Subtree Down"         markdown-ts-move-subtree-down          :help "Move the current section or list item down"]
    ["Promote"                   markdown-ts-promote                    :help "Promote heading or list item"]
    ["Demote"                    markdown-ts-demote                     :help "Demote heading or list item"]
    "--"
    ["Emphasis..."               markdown-ts-emphasize                  :help "Add or change emphasis on region"]
    ["Add Block Structure"       markdown-ts-insert-structure           :help "Insert a code block, quote, or other structure"]
    "--"
    ["Toggle Checkbox"           markdown-ts-toggle-checkbox            :help "Toggle task list checkbox at point"]
    ["New List Item"             markdown-ts-insert-list-item           :help "Insert a new list item after the current one"]
    ["Renumber List"             markdown-ts-renumber-list              :help "Renumber the ordered list at point"]
    "--"
    ("Table"
     ["Insert table"             markdown-ts-table-insert-table         :help "Insert an empty table at point"]
     ["Delete table"             markdown-ts-table-delete-table         :help "Delete the table at point"]
     "--"
     ["Next cell"                markdown-ts-table-next-cell            :help "Move point to the next cell"]
     ["Previous cell"            markdown-ts-table-previous-cell        :help "Move point to the previous cell"]
     "--"
     ["Next row"                 markdown-ts-table-next-row             :help "Move point to the next row"]
     ["Previous row"             markdown-ts-table-previous-row         :help "Move point to the previous row"]
     ["Insert row below"         markdown-ts-table-insert-row-below     :help "Insert an empty row below point"]
     ["Insert row above"         markdown-ts-table-insert-row-above     :help "Insert an empty row above point"]
     ["Clone row below"          markdown-ts-table-clone-row-below      :help "Clone the current row below it"]
     ["Clone row above"          markdown-ts-table-clone-row-above      :help "Clone the current row above it"]
     ["Move row up"              markdown-ts-table-move-row-up          :help "Move the row at point up"]
     ["Move row down"            markdown-ts-table-move-row-down        :help "Move the row at point down"]
     ["Delete row"               markdown-ts-table-delete-row           :help "Delete the row at point"]
     "--"
     ["Insert column left"       markdown-ts-table-insert-column-left   :help "Insert an empty column to the left of point"]
     ["Insert column right"      markdown-ts-table-insert-column-right  :help "Insert an empty column to the right of point"]
     ["Clone column left"        markdown-ts-table-clone-column-left    :help "Insert an empty column to the left of point"]
     ["Clone column right"       markdown-ts-table-clone-column-right   :help "Insert an empty column to the right of point"]
     ["Move column left"         markdown-ts-table-move-column-left     :help "Move the current column to its left"]
     ["Move column right"        markdown-ts-table-move-column-right    :help "Move the current column to its right"]
     ["Align column..."          markdown-ts-table-align-column         :help "Align column at point to the left, center, or right"]
     ["Delete column"            markdown-ts-table-delete-column        :help "Delete the column at point"]
     "--"
     ["Align table columns"      markdown-ts-table-align-table          :help "Align the table at point in an easy-to-edit format"]
     ["Transpose table"          markdown-ts-table-transpose-table      :help "Transpose the table at point swapping its rows and columns"]
     "--"
     ["Convert CSV to table"     markdown-ts-table-convert-csv-region   :help "Convert a range of comma-separated values to a new table at point"]
     ["Convert TSV to table"     markdown-ts-table-convert-tsv-region   :help "Convert a range of tab-separated values to a new table at point"]
     ["Export table to CSV"      markdown-ts-table-export-table-csv     :help "Export the table at point to a comma-separated values buffer"]
     ["Export table to TSV"      markdown-ts-table-export-table-tsv     :help "Export the table at point to a tab-separated values buffer"])))