-
I am trying to use Texidote with PhpStorm and the TeXiFy plugin. I copied the jar file under
But it didn't work. I also tried to create a shell script that I put under
But I can't make it work. If I run Texidote from the command line it works:
But I can't make it work inside PhpStorm. I think the configuration is the same for any IDE, like Pycharm or Intellij IDEA. Any idea? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I think it's a bit weird to run the jar directly, we just run |
Beta Was this translation helpful? Give feedback.
-
I had to check the brew's formula. You need to add a
The option This is the shell script: #!/bin/sh
exec java -jar /opt/local/lib/textidote.jar "$@" |
Beta Was this translation helpful? Give feedback.
I had to check the brew's formula.
You need to add a
texidote
shell script under/usr/local/bin
and make it executable. That what Homebrew does. And set the command line options on TeXiFy as follows:--check en --output singleline --no-color --read-all
The option
--read-all
is necessary if your project includes more than one file, using\include
.This is the shell script: