@@ -2949,7 +2949,7 @@ OPTIONS *vimtex-options*
2949
2949
Default value: 0
2950
2950
2951
2951
*g:vimtex_syntax_packages*
2952
- A dictionary for package specific syntax configuration. Each key represent
2952
+ A dictionary for package specific syntax configuration. Each key represents
2953
2953
a single package and the values are themselves configuration dictionaries.
2954
2954
All packages share the following options:
2955
2955
@@ -4303,27 +4303,27 @@ automatically, see |g:vimtex_text_obj_variant| for more info.
4303
4303
4304
4304
Some examples of how to use the text objects can be useful. The following is
4305
4305
a simple table that shows the original text on the left, the keys that are
4306
- typed in the middle, and the result on the right. The bar "| " indicates the
4306
+ typed in the middle, and the result on the right. The bar "█ " indicates the
4307
4307
cursor position before the operation. >
4308
4308
4309
4309
BEFORE KEYS AFTER
4310
- \comm| and{arg} dic \command{}
4311
- \command{a| rg} gUac \COMMAND{ARG}
4310
+ \comm█ and{arg} dic \command{}
4311
+ \command{a█ rg} gUac \COMMAND{ARG}
4312
4312
4313
- \lef| t( asd \right) cid \left(| \right)
4313
+ \lef█ t( asd \right) cid \left(█ \right)
4314
4314
4315
4315
\begin{x} die \begin{x}
4316
- hello world| \end{x}
4316
+ hello world█ \end{x}
4317
4317
\end{x}
4318
4318
4319
- $math | here$ da$
4319
+ $math █ here$ da$
4320
4320
4321
4321
\begin{itemize} \begin{itemize}
4322
- \item hello moon| cim \item |
4322
+ \item hello moon█ cim \item █
4323
4323
\end{itemize} \end{itemize}
4324
4324
4325
4325
\begin{itemize} \begin{itemize}
4326
- \item hello moon| dam \end{itemize}
4326
+ \item hello moon█ dam \end{itemize}
4327
4327
\end{itemize}
4328
4328
4329
4329
Note: The "greediness" of the command text objects (`ic ` and `ac` ) can be
@@ -5727,7 +5727,7 @@ A common workflow is to utilize the |location-list| with |:lmake|:
5727
5727
5728
5728
After linting, the compiler or linter messages are added to the location list.
5729
5729
This list may be displayed in the location-list window with | :lwindow | , and
5730
- one may jump between the entries with | :lN | and | :lp | . To automatically open
5730
+ one may jump between the entries with | :lne | and | :lp | . To automatically open
5731
5731
the location-list window after linting is finished, one may add the following
5732
5732
to one's | vimrc | : >vim
5733
5733
@@ -5763,7 +5763,7 @@ allows one to use the location list. For `AsyncRun`, one may define a custom
5763
5763
\ AsyncRun<bang> -auto=make -program=make
5764
5764
5765
5765
The quickfix window that lists the linter errors and warnings can then be
5766
- opened by | :cwindow | and they can be jumped to by | :cN | respectively | :cp | .
5766
+ opened by | :cwindow | and they can be jumped to by | :cn | and | :cp | respectively .
5767
5767
5768
5768
Often, a syntax error in a BibTeX file is due to a missing comma after an
5769
5769
entry. One may define a command to automatically add such missing commas, e.g.
@@ -6439,7 +6439,7 @@ Note: This reference is currently a work in progress!
6439
6439
6440
6440
*vimtex#cite#get_key*
6441
6441
Returns the citation key under the cursor. Can be useful e.g. to create
6442
- a function to open a citation in another progrem such as BibDesk or Zotero.
6442
+ a function to open a citation in another program such as BibDesk or Zotero.
6443
6443
For example: >vim
6444
6444
6445
6445
function! OpenInBibDesk() abort
@@ -6870,8 +6870,8 @@ A: VimTeX implements a traditional syntax script for syntax highlighting of
6870
6870
6871
6871
However, it is hard to write a general parser for LaTeX. This is because
6872
6872
LaTeX is a semantic language with a large amount of different commands and
6873
- macros from thousands of available packages, many of which makes sense to
6874
- highlight in a different manner. That is, we need to handle a whole lot of
6873
+ macros from thousands of available packages, many of which make sense to be
6874
+ highlighted in a different manner. That is, we need to handle a whole lot of
6875
6875
special cases and edge cases!
6876
6876
6877
6877
Furthermore, Tree-sitter highlighting does not currently support
@@ -6948,7 +6948,7 @@ A: Start by reading the section on |vimtex-view-texshop|. The examples below
6948
6948
was opened. If the buffer is not active, in a hidden tab or if the file is
6949
6949
not open at all, inverse search will fail.
6950
6950
6951
- As alternative, to `VimtexInverseSearch` if the .tex document was opened
6951
+ As an alternative to `VimtexInverseSearch` , if the .tex document was opened
6952
6952
with the `-- remote- silent ` option, i.e.: >bash
6953
6953
6954
6954
/usr/local/bin/mvim --remote-silent foo.tex
@@ -6989,7 +6989,7 @@ the quickfix window does not load.
6989
6989
6990
6990
Tips:
6991
6991
1. Ensure that a latexmk process and a Perl process have started. If they have
6992
- not been started, then these two programs may not accessible given your
6992
+ not been started, then these two programs may not be accessible given your
6993
6993
operating system's PATH environment variable.
6994
6994
2. Ensure that the option `-interaction =nonstopmode` is provided to latexmk.
6995
6995
This is done by default by VimTeX, unless the user provides custom options
0 commit comments