We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I installed syntax-highlight via brew, it creates symlink:
$ ls -l /opt/homebrew/bin/syntax_highlight_cli lrwxr-xr-x@ 1 maxim admin 74 May 22 16:01 /opt/homebrew/bin/syntax_highlight_cli -> /Applications/Syntax Highlight.app/Contents/Resources/syntax_highlight_cli
When I want to convert any file:
$ mkdir ~/Temp $ cd ~/Temp $ echo Hello > test.txt $ syntax_highlight_cli -o test.html test.txt Error processing /Users/m.suslov/Temp/test.txt: Syntax Highlight: colorize.sh failed with exit code 127. Command was ('/Users/Contents/Resources/highlight/colorize.sh' '/Users/m.suslov/Temp/test.txt'). command: '/Users/Contents/Resources/highlight/colorize.sh' '/Users/m.suslov/Temp/test.txt' exitCode: 127
Here we can see that colorize.sh is invoked with incorrect path
colorize.sh
The same if I invoke with full path to brew symlink:
/opt/homebrew/bin/syntax_highlight_cli -o test.html test.txt
But when I invoke with fullpath to application, it works:
$ '/Applications/Syntax Highlight.app/Contents/Resources/syntax_highlight_cli' -o test.html test.txt
Could please fix calling colorize.sh with right path?
P.S. Version of syntax-highlight 2.1.19
The text was updated successfully, but these errors were encountered:
As a temporary fix for this problem, you can issue the following command to change the symlink to the correct path:
ln -sf "/Applications/Syntax Highlight.app/Contents/Resources/syntax_highlight_cli" "/opt/homebrew/bin/syntax_highlight_cli"
Sorry, something went wrong.
Me too. And i had try install not by brew, still not work.
Successfully merging a pull request may close this issue.
When I installed syntax-highlight via brew, it creates symlink:
When I want to convert any file:
Here we can see that
colorize.sh
is invoked with incorrect pathThe same if I invoke with full path to brew symlink:
But when I invoke with fullpath to application, it works:
$ '/Applications/Syntax Highlight.app/Contents/Resources/syntax_highlight_cli' -o test.html test.txt
Could please fix calling
colorize.sh
with right path?P.S. Version of syntax-highlight 2.1.19
The text was updated successfully, but these errors were encountered: