Closed
Conversation
added 7 commits
February 18, 2026 13:54
In the replace dialog, if both the "Replace" and "With" strings have the same positive number of pipe symbols, then offer to do a respective simultaneous replace. For instance, if: - "Replace:" is equal to "ab|cd|ef" and - "With:" is equal to "gh|ab|cd" then after choosing "Replace All", the user will be offered to conduct a simultaneous replace. Answering "yes" to this offer will e.g. replace "abcdefab" by "ghabcdgh". Answering "no" will resume with the vanilla logic. =
Traditionally, the typesetter supports various special commands (e.g., $synctexoption, $fullname, $basename, $suffix, $directory). Here, we add two more: $linenumber - expands to the line number at which the cursor is currently located. $jobname - expands to "-jobname=outfilename", where outfilename is the name of the PDF to be created by the typesetter. Its value is set by a magic comment. For instance, to assign "handout" as the name of the corresponding PDF, add the following line to the header of your TeXfile: %!TEX jobname = handout
Equivalent to the outcome of mouse right-click and then choosing "jump to source"
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In the replace dialog, if both the "Replace" and "With" strings have the same positive number of pipe symbols, then offer to do a respective simultaneous replace.
For instance, if:
then after choosing "Replace All", the user will be offered to conduct a simultaneous replace.
Answering "yes" to this offer will e.g. replace "abcdefab" by "ghabcdgh".
Answering "no" will resume with the vanilla logic.