Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>phalcon-goto-viewNew to Visual Studio Code? Get it now.
phalcon-goto-view

phalcon-goto-view

Ving

|
2,482 installs
| (1) | Free
Phalcon quick jump to view
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

phalcon-goto-view

How to use

How to use

Settings

quickJump

Quick jump to the first matched file switch.

"phalcon-goto-view.quickJump": {
    "default": true
}

maxLinesCount

Maximum number of scanning rows.

"phalcon-goto-view.maxLinesCount": {
    "default": 2000
}

regex

Custom regex for matching strings.

"action": Regex for matching Action function

"common": Regex for matching $this->view->setTemplateAfter() and $this->view->setTemplateBefore() function

"template": Regex for matching $this->view->pick() and $this->view->render() function

"phalcon-goto-view.regex": [
    {
        "name": "action",
        "value": "(?<=function\\s*)([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)"
    },
    {
        "name": "common",
        "value": "(?<=setTemplateAfter\\(|setTemplateBefore\\()(['\"])[^'\"]*\\1"
    },
    {
        "name": "template",
        "value": "(?<=pick\\(|render\\()(['\"])[^'\"]*\\1"
    }
]

folders

Search according to the configured path.

"phalcon-goto-view.folders": {
    "default": "/app/views"
}

extensions

Search views according to the configured extensions.

"phalcon-goto-view.extensions": [
    ".html",
    ".volt",
    ".phtml"
]

Thanks

  • Laravel goto view
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft