You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
Put an X between the brackets on this line if you have done all of the following: ...
Description
The wrong context menu is sometimes displayed by the Markdown Preview pane. The function highlightCodeBlocks in renderer.coffee renders preformatted HTML blocks by creating instances of TextEditor and inserting them into the DOM. However, these TextEditor instances are not managed as Pane items. Instead, Workspace.getActivePaneItem() returns an instance of MarkdownPreviewView. Consequently, Workspace.getActiveTextEditor() returns undefined to the menu-item handlers.
Steps to Reproduce
Open a markdown file
Create a code block or HTML <pre> element with some content
Toggle Markdown-Preview
In the preview pane, right-click inside the code block
Expected behavior: The .markdown-preview context-menu should be displayed.
Actual behavior: The atom-text-editor context-menu is displayed.
Prerequisites
Description
The wrong context menu is sometimes displayed by the Markdown Preview pane. The function highlightCodeBlocks in
renderer.coffee
renders preformatted HTML blocks by creating instances ofTextEditor
and inserting them into the DOM. However, theseTextEditor
instances are not managed asPane
items. Instead, Workspace.getActivePaneItem() returns an instance of MarkdownPreviewView. Consequently, Workspace.getActiveTextEditor() returnsundefined
to the menu-item handlers.Steps to Reproduce
Expected behavior: The
.markdown-preview
context-menu should be displayed.Actual behavior: The
atom-text-editor
context-menu is displayed.Reproduces how often: Always
Versions
atom --version
apm --version
Electron: 2.0.16
Chrome : 61.0.3163.100
Node : 8.9.3
npm 6.2.0
node 8.9.3 x64
atom 1.34.0
python 2.7.12
git 2.7.4
Additional Information
I believe this defect was introduced by pull #544,
"Always use the text editor to highlight code blocks".
An example, showing edit commands enabled in the preview pane:
The text was updated successfully, but these errors were encountered: