-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right click on sidebar gives option to create new directory / note #250
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
18cabe0
src/components/FileItem: Added stopPropogation to context menu to pre…
mohamedilaiwi 75cad74
electron/main/index: Added new ipcMain handler for dropdown menu on r…
mohamedilaiwi 9c48b69
electron/preload/index: Added new contextMenu to invoke our ipcMain h…
mohamedilaiwi 751ba17
src/components/File/index: added new handleMenuContext to display dro…
mohamedilaiwi dda2a8a
src/components/IconsSidebar: Added new receiver for open note/directo…
mohamedilaiwi bffd404
Added highlighting for ctrl-f search within doc. Need to add next res…
mohamedilaiwi f546067
Added ability to search within doc
mohamedilaiwi a2726bc
Pressing escape closes search
mohamedilaiwi 1ff840e
Resolved merge conflicts
mohamedilaiwi c01c539
Added ability to search within doc
mohamedilaiwi 9e6ecab
Added ability to search within doc
mohamedilaiwi 10f9f06
Added LaTex support. Need to manually configure to add support for Ma…
mohamedilaiwi b4d80e1
Merge branch 'main' of github.com:milaiwi/reor
mohamedilaiwi d875e4d
Right clicking empty spot provides context menu. Can create new note …
milaiwi c2ee9fb
Merge branch 'main' into sidebar-rightclick
milaiwi 923b0b9
Fixed posthog import
milaiwi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already have the handler for
show-context-menu-file-item
. Why not include these new context menu items there?(For my personal vault, I have the fileexplorer sidebar so i could not actually get it to show these new context menu items you've added. Only by opening a vault which doesn't have lots of files would it actually leave space in the file explorer sidebar to hit these context menu items)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because this one is specifically for right clicking on the file explorer sidebar (if a file does not exist there) that creates a menu to create a new note or directory. The current
show-context-menu-file-item
has options likedelete
,rename
, andcreate a flashcard set
that would not be appropriate.This is just something I like to have for note apps, but I understand if other people do not think it's necessary!