Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Manta's Third EyeNew to Visual Studio Code? Get it now.
Manta's Third Eye

Manta's Third Eye

Anantachai Saothong

|
994 installs
| (1) | Free
Jump through files effortlessly.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Third Eye is a Visual Studio Code extension that helps jumping through files effortlessly.

Basic usage

Once the extension is installed, all supported file paths will be underlined, so you can open the file by pressing Ctrl key and click it.

Demo

Currently, the extension supports the following patterns:

  • Go

    import (
      "fmt"
      "golang.org/x/net/context"
      "github.com/go-kit/kit/log"
      "my/local/project"
    )
    
  • JavaScript, JavaScript React, TypeScript, and TypeScript React

    import * as named from './file.js'
    import './file.js'
    require('./file.js')
    

    The below will open https://nodejs.org/api/fs.html in your browser and so does apply to all native Node.js APIs.

    var fs = require('fs')
    

    In addition to require, any static file path in a function-call can be electrified as well.

    var file = fs.readFileSync('./file.js', 'utf-8')
    var doSomething = function () {}
    doSomething('./file.js')
    

    The below will open either its homepage, repository, or NPM page. Clicking Go > Go to Implementation menu will bring you the actual code in your local node_modules directory.

    import something from 'thrid-party-npm-module'
    
  • Stylus

    @import './file.styl'
    @require './file.styl'
    
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft