ishchenko / idea-nginx

nginx server support plugin for IntelliJ IDEA
Do What The F*ck You Want To Public License
139 stars 39 forks source link

RegEx named capture group not recognized as variable #79

Open dandv opened 4 years ago

dandv commented 4 years ago

In the code below, $page is highlighted as an unknown variable.

  location ~ ^/pages/(?<page>[^/]+)/?(edit)?$ {
    root /var/www/website/pages;
    try_files /$page/index.html /index.html =404;
  }

image