feat: display section number of LaTeX section headings #27
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.
Overview
Thank you for awesome plugin!
I love using it!
This PR improves display of LaTeX sections.
Here is screenshots which describs the change of results window display.
Some background
Usually LaTeX files are finally rendered into pdf file, and section numbers (which are automatically caluculated) are displayed in resulting pdf files.
Here is an example.
test-heading.tex
)pdflatex test-heading.tex
)What this PR implements
I think it is nice to see section numbers also in picker results window, rather than displaying raw LaTeX command (like
\subsection{...}
.So I implemented the entry display with section numbers.
I added picker (opt-in) option
use_section_number
for the main picker, and if it is settrue
use display with section numbers.I also added description of this option in
README
.Caveats
This display style assumes that the document have
*article
documentstyle.*article
type documentstyle is most common, but for other document styles picker display and rendered display can differ.