-
Notifications
You must be signed in to change notification settings - Fork 7.6k
JavaScript Jump To Definition Ctrl+J/Cmd+J not mentioned in Right-Click Menu #3860
Comments
I'm looking a this one. (There's some problem actually assigning it to me, but it's mine.) |
Reviewed. @adrocknaphobia One issue here is that the menu contents aren't yet selective based on file type. So this would show up in all files, even though it does nothing if you're not in JS code. Should we hold off until we have a better story for truly context-sensitive menus? Another related point -- Jump to Definition is currently hardcoded to go directly to the JS extension. It's not pluggable in a language-related way, so e.g. a PHP or TypeScript extension would have to add its own separate menu item with the same functionality. We should consider converting the menu item into a more generic extensible hook at some point. |
The menu contents need to be selective based on file type, so we'll hold off on the right click menu - but the hook for other languages sounds useful to address as it shouldn't be tied to JS exclusively. |
Both the right-click context menu addition and the Jump-To-Definition navigation menu issue can probably be solved at the same time, using the same technique used by QuickEdit, i.e., registering separate provider functions to handle the various cases. |
I have just made a pull request which has Jump-To-Definition added to the right-click menu. It's only one line of code, so we can comment it out at will. To elaborate: to do this right, we'd want to check the file type (or selection type) every time we displayed the right-click menu, for jump-to-definition, quick edit, etc. We might also want to do the same for the top-level navigate menu. Is this what we plan to do? |
This issue is unassigned, so marking "Needs Review". |
Guys, there is way to change hotkey from ctrl + j to f12? |
@disshishkov I haven't tried it, but there's a "Brackets Key Remapper" extension (see the extension manager in Brackets) |
Thank you @dangoor , the mentioned by you extension works great |
In any *.js JavaScript source file, right click to see the context menu show:
Quick Edit - Cmd+E
Quick Docs - Cmd+K
Select All - Cmd+A
It should also show:
Jump To Definition - Cmd+J
The text was updated successfully, but these errors were encountered: