01-Navigation/1-Navigate_to_something_you_know/1.5-Go_to_file_member.js (7 lines of code) (raw):

// Go to File Member in JS // // Navigate to any members defined in the current file // // <shortcut id="File Member">Alt+\ (VS)</shortcut> // // 1. Navigate to "example" or "other" // // 2. Navigate with middle matching and wildcards // Type "interesting", "really*function" // // 3. Navigate underscore styled names // Type "rif" (note case - NOT "RIF") function example(name, age) { // ... } function other() { // ... } function really_interesting_function() { // ... }