From 7f68fca10ad5b5cef73dfcf0d7c03b76f51a41a0 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Tue, 16 Jun 2015 14:53:27 +0200 Subject: [PATCH] Fixed documentation for environment variable specification (see also AStyleFormat.py, line 67). --- SublimeAStyleFormatter.sublime-settings | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SublimeAStyleFormatter.sublime-settings b/SublimeAStyleFormatter.sublime-settings index c628371..9377059 100644 --- a/SublimeAStyleFormatter.sublime-settings +++ b/SublimeAStyleFormatter.sublime-settings @@ -329,8 +329,8 @@ // // "additional_options_file": Addtional options file for astyle (aka astylerc), you must specify // a full path for that file, environment variable may be included. - // e.g.: "additional_options_file": "%USERPROFILE%/astylerc" // (Windows) - // e.g.: "additional_options_file": "$HOME/.astylerc" // (Linux) + // e.g.: "additional_options_file": "${USERPROFILE}/astylerc" // (Windows) + // e.g.: "additional_options_file": "${HOME}/.astylerc" // (Linux) // === Additional variables that you may use === // $file_path The directory of the current file, e.g., C:\Files. // $file The full path to the current file, e.g., C:\Files\Chapter1.txt.