chrissimpkins / glue

Glue is a plugin that joins your shell to Sublime Text in quasi-perfect harmony.
http://gluedocs.readthedocs.org/
MIT License
253 stars 10 forks source link

Path returned by {{pwd}} template tag (Glue extension) on Windows is missing path separators #1

Closed chrissimpkins closed 10 years ago

chrissimpkins commented 10 years ago

ST2 version

chrissimpkins commented 10 years ago

Solution is to place single quotes around the {{pwd}} template tag in your extension definition like this:

{
    "echo" : "echo '{{pwd}}'"
}

This avoids the need to escape the backward slashes used in Windows paths.

Adding this information to the documentation.