ashald / EnvFile

EnvFile 3.x is a plugin for JetBrains IDEs that allows you to set environment variables for your run configurations from one or multiple files.
MIT License
545 stars 129 forks source link

Add support for escaped double quotes #201

Closed bbaga closed 1 year ago

bbaga commented 1 year ago

The way the double quote detection was implemented would match on escaped double quotes as well. This leads to partial values in the environment variables.

The goal of this PR is to ignore the escaped double quotes (\") in the values and match only the opening and closing double quotes.

ashald commented 1 year ago

Thanks!