Skip to content
New issue

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

Double click citation for te xworks #12106

Merged
merged 13 commits into from
Oct 27, 2024
3 changes: 1 addition & 2 deletions src/main/java/org/jabref/gui/push/PushToTeXworks.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ protected String[] getCommandLine(String keyString) {

@Override
protected String[] jumpToLineCommandlineArguments(Path fileName, int line, int column) {
// No command known to jump to a specific line
return new String[] {commandPath, fileName.toString()};
return new String[] {commandPath, "--position=\"%s\"".formatted(line), fileName.toString()};
}
}
Loading