react-explorer
react-explorer copied to clipboard
No context menu on Linux!
So, upon running the Linux Appimage. It appears no context menu shows up when right clicking an item. There isn't a context menu for Linux? I think its a bug.
Hi, Unfortunately this is the expected behavior (and it's the same on Mac/Windows as well): there is no context menu for file/folder items. Most actions can be triggered using the main app menu or keyboard shortcuts.
I see if I can add context menus in a future release.
I myself have developed context menus for Electron based software. The electron-context-menu package provides a context menu (not without configuration though).
Once the package is installed import it.
const ContextMenu = require("electron-context-menu");
Here's an example directly from the project I used the package with: Click Here
You can pass the functions to Electron, then make the Context Menu run them. Should be easy I suppose.