01-Navigation/4-Contextual_navigation/4.7-Navigate_To_menu_related_files.html (14 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> <title>Navigate To menu - related files</title> <!-- Navigate To menu - Related Files This is a convenient way to navigate from the current location. See "4.1-Navigate_To_menu.cs" for the basic mechanism. How to use Navigate to <shortcut id="Navigate to">Alt+` (ReSharper VisualStudio Keymap)</shortcut> <shortcut id="Navigate to">Ctrl+Shift+G (Rider Default IntelliJ Keymap)</shortcut> Put the caret on the target and use the keyboard shortcut. --> <!-- 1. Navigate to related files. E.g. referenced files from HTML Put text caret here → Navigate to Related Files shows list of other files containing definitions of PartialClass --> <script type="text/javascript" src="ExampleCode/script1.js"></script> <script type="text/javascript" src="ExampleCode/script2.js"></script> <script type="text/javascript" src="ExampleCode/script3.js"></script> <link rel="stylesheet" type="text/css" href="ExampleCode/style1.css"> <link rel="stylesheet" type="text/css" href="ExampleCode/style2.css"> <link rel="stylesheet" type="text/css" href="ExampleCode/style3.css"> </head> <body> </body> </html>