No "open in new tab" option after right clicking an identifier
seagreen opened this issue · 4 comments
The top of "distDir" is cut off due to an Ubuntu screenshotting issue, not the fault of haskell-code-explorer.
There is no "Open Link in New Tab" in the context menu because each identifier (e.g., distDir
) is a span HTML element, not an anchor.
A click on an identifier is handled by JavaScript:
haskell-code-explorer/javascript/app/utils/go-to-definition.js
Lines 37 to 85 in 08ec8a0
- Left mouse click on an identifier updates the current browser tab.
- Middle mouse click on an identifier opens a new browser tab (that tab may be blocked by a popup blocker).
- There is no handler for the "right mouse click" event.
There is no "Open Link in New Tab" in the context menu because each identifier (e.g., distDir) is a span HTML element, not an anchor.
Is there a technical reason this has to be the case, or is it arbitrary? If the former it might still be nice to switch them to anchors at some point, because not everyone will know that they can middle click to get a new tab. Not a big deal though.
not everyone will know that they can middle click to get a new tab
I agree. Middle mouse click on an identifier is a rather obscure feature. I'll think about adding a JavaScript context menu (which opens with a right click on an identifier) with an "Open in new tab" button.
Is there a technical reason this has to be the case, or is it arbitrary?
It is mostly for convenience. Each token (clickable and non-clickable) in the source code is just a span.
There is no technical reason why Haskell identifiers can't be anchors.