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

Starting of the Documentation #1961

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
14b6746
Additions:
TornaxO7 Feb 16, 2021
28a292a
Additions:
TornaxO7 Feb 16, 2021
37079ea
- Removed the documentation section in CONTRIBUTING.md
TornaxO7 Feb 23, 2021
1778c1f
removed the html directory. Probably I misclicked on my keyboard and …
TornaxO7 Feb 24, 2021
a2843b7
Added description for:
TornaxO7 Feb 24, 2021
da271d8
Changed one line in the `Documentation` section.
TornaxO7 Feb 24, 2021
133558e
Added a little explanation to `autoload/unite/source`.
TornaxO7 Feb 25, 2021
66ddf82
Added a documentation to the next sections.
TornaxO7 Feb 28, 2021
b4e77b4
Added description for the 'delim.vim' and 'cache.vim'.
TornaxO7 Mar 7, 2021
6a59e1c
Refreshed the TOC.
TornaxO7 Mar 7, 2021
45be05e
Removed the `latex` directory. Looks like that I pasted it here as well
TornaxO7 Mar 7, 2021
feba98a
Added a very small description about the complete directory. I'm not …
TornaxO7 Mar 7, 2021
ad34f7e
- Added some images for the DOCUMENTATION.md file
TornaxO7 Mar 10, 2021
9ddec6f
Added description to `vimtex/autoload/vimtex/context.vim` and to
TornaxO7 Mar 10, 2021
dab4804
- Removed the `Documentation` section in CONTRIBUTING.md => Moved it …
TornaxO7 Mar 11, 2021
d090c6a
- Changed typo "VimTex" to "VimTeX"
TornaxO7 Mar 11, 2021
3a4aff8
- Removed the bold-marks from "VimTeX" (didn't work before)
TornaxO7 Mar 11, 2021
e5e6573
Change the order of the TOC
TornaxO7 Mar 11, 2021
a721719
Added a reference to `:h autoload` in the autoload section and a refe…
TornaxO7 Mar 11, 2021
b7292da
Section `health`:
TornaxO7 Mar 11, 2021
66d9fae
Added a little description to `vimtex/autoload/vimtex.vim`.
TornaxO7 Mar 11, 2021
055b3f0
Added empty line between text paragraphs and code listings.
TornaxO7 Mar 11, 2021
ccc014d
Set code indentation from 4 spaces to 2
TornaxO7 Mar 11, 2021
762ff23
Added description to `compiler.vim`.
TornaxO7 Mar 11, 2021
4e90554
Added description to the following files:
TornaxO7 Mar 11, 2021
0f27003
Added description for:
TornaxO7 Mar 11, 2021
3b6a3dc
Refreshed TOC
TornaxO7 Mar 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Guide for code contributions

<!-- START doctoc generated TOC please keep comment here to allow auto update -->

- [Branch model](#branch-model)
- [Documentation style](#documentation-style)
- [Code style](#code-style)
- [Running tests](#running-tests)
- [Documentation](#documentation)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Branch model

VimTeX is developed mainly through the master branch, and pull requests should
Expand All @@ -21,6 +31,10 @@ some pointers:
- The section tags should be right aligned at the 79th column
- Sections should be included and linked to from the table of contents

VimTeX also provides a little high level [documentation](./DOCUMENTATION.md)
which might help you to understand the functionality of this plugin a little bit
faster.

## Code style

When submitting code for VimTeX, please adhere to the following standards:
Expand Down
296 changes: 296 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,296 @@
# Documentation

Welcome to the high-level documentation of VimTeX.

This file should help you to understand the structure of this plugin and how
it works.

So first of all, we're taking a look into the first layer of the plugin, after
that, we're going to through each necessary directory, if it needs some more
description. We won't go through _every_ file, because it would take a little
bit too long the most should be probably self explained.

This file works as follows:
The table of contents has the same structure as the file structure of
VimTeX. If you want to know something about the
`vimtex/autoload/vimtex/compiler` directory, than you can lookup the path in the
table of contents and click on it. (Hopefully) It'll give you some nice
information.

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


lervag marked this conversation as resolved.
Show resolved Hide resolved
- [ftplugin](#ftplugin)
- [syntax](#syntax)
- [indent](#indent)
- [after/ftplugin](#afterftplugin)
- [autoload](#autoload)
- [health](#health)
- [unite/sources](#unitesources)
- [vimtex](#vimtex)
- [vimtex.vim](#vimtexvim)
- [delim.vim](#delimvim)
- [cache.vim](#cachevim)
- [compiler](#compiler)
- [compiler.vim](#compilervim)
- [debug.vim](#debugvim)
- [complete.vim](#completevim)
- [tools](#tools)
- [context.vim](#contextvim)
- [fold.vim](#foldvim)
- [parser.vim](#parservim)
- [qf.vim](#qfvim)
- [syntax](#syntax-1)
- [text\_obj.vim](#text%5C_objvim)
- [view.vim](#viewvim)
- [rplugin/python3/denite/source/vimtex.py](#rpluginpython3denitesourcevimtexpy)
- [test](#test)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

# ftplugin
Well nothing really big to say here: If you open a `bib` or `tex` tiletype
it'll look, if you have VimTeX has been loaded.

# syntax
The main file which loads the syntax highlighting settings according to its
needs because all syntax rules might wouldn't be worth it.

# indent
The main function is `VimtexIndent` which returns the indent of the next line
you're writing. If you want to know how it's doing that, take a look into this
function!

# after/ftplugin

Currently there's only one file in it which makes sure that VimTeX loaded
successfully and that there're no conflicts with other plugins like LaTeX-Box.

# autoload
lervag marked this conversation as resolved.
Show resolved Hide resolved

If you want to know more about the *special functionality* of the `autoload`
directory, you can read the `:h autoload` section or take a little look into
[this chapter](https://learnvimscriptthehardway.stevelosh.com/chapters/42.html)
of [Learn Vimscript the Hard
Way](https://learnvimscriptthehardway.stevelosh.com/chapters/42.html) by Steve
Losh.

## health

This directory has the following health-checks functions:
lervag marked this conversation as resolved.
Show resolved Hide resolved

- If the user has a valid vim version
- If the user selected a valid compiler
- If their might be any plugin-clashes.
- If the user has the needed dependencies for their PDF-Viewer

**HINT:**** This file uses some functions provided by the `health.vim` framework
which is only available for `neovim`!

## unite/sources

This directory is used to combine VimTeX with
[denite](https://github.com/Shougo/denite.nvim) or
[unite](https://github.com/Shougo/unite.vim). These extra-plugins are mainly
used to list the TOC of your current document. Take a look into `:h vimtex-unite`, to get more information.

## vimtex
lervag marked this conversation as resolved.
Show resolved Hide resolved

This directory has the main files. Each file should be self-explaining but here
are some files which might be good to know!

## vimtex.vim

This file includes the main function: `vimtex#init()` which loads all the
functionalities from all other files and modules.

### delim.vim

This file includes some functions to detect the surrounding delimiters like
this:

```tex
lervag marked this conversation as resolved.
Show resolved Hide resolved
\begin{Environment}
Some awesome text |
\end{Environment}
```

The vertical line (`|`) should represent your cursor. Now you could use the
`vimtex#delim#get_surrounding('env_tex')` function in order to get the current
environment where the user is. Here's an example code:

```vim
" Return values are dictionaries
let [l:open, l:close] = vimtex#delim#get_surrounding('env_tex')

" Empty dicts mean we did not find a surrounding environment
if empty(l:open) | return | endif

" The dicts have several attributes, the most important are probably these:
echo l:open.name
echo l:open.lnum
echo l:open.cnum
```

For more information, take a look into [this
issue](https://github.com/lervag/vimtex/issues/1981#issuecomment-792263781).

### cache.vim
This file includes some functions to create and access your own caches.
Here's an example:

```vim
function VimTeXCacheExample()
" create a new cache (if the name doesn't exist yet)
" with an attribute 'number'. So the cache would be like that:
"
" let l:test = {
" 'number' = 10,
" }
let l:my_cache = vimtex#cache#open('cache_name', {'number' : 10})

" change the value in you cache
let l:my_cache['number'] = 9001

" will print '9001'
echo l:my_cache['number']

" save your changes
" In general it'll be saved in your `$XDG_CACHE_HOME/vimtex/` directory
" (normally '~/.cache/vimtex') in the appropriate tex-file where you accessed
" cache file.
call vimtex#cache#close('cache_name')
endfunction
```

### compiler
lervag marked this conversation as resolved.
Show resolved Hide resolved
As the directory names says: This directory includes the vim files to interact
with the given LaTeX compiler. Each file have similar function names like
`s:compiler.start`. You can take a look into these function to get a better
understanding how they work.

### compiler.vim
This file includes the main functions to interact with the given compiler in the
`vimtex/autoload/vimtex/compiler` directory, it also provides the commands like
`:VimtexCompile`. For example, the `vimtex#compiler#start()` function just calls
(if we selected the latexmk compiler) the `s:compiler_nvim.start_single()`
function of the `vimtex/autolaod/vimtex/compiler/latexmk.vim` file.

### debug.vim
This file is used for interal debugging and is not related to LaTeX at all. It
parses the stacktrace from the `v:throwpoint` variable (see `:h v:throwpoint`
for more information). If this does not exist, then we forcibly create
it and remove the top element.
You can try this code as an example:

```vim
function! Test() abort
try
throw "Error message is here :D"
catch
call vimtex#debug#stacktrace(1)
endtry
endfunction
```
Now enter `:call Test()` and the quickfix window should pop up with the `"Error
message is here :D"` message.

### complete.vim
It includes a bunch of functions to filter out the information for the omnifunc
function of vim like getting the names of the custom-environments and loading
the given keywords of a package. Each section includes a function which takes
care for a given part of the omnicompletion.

The `complete` directory includes all keywords which are loaded for the given
package you're using in your `tex` file.

#### tools
This directory includes all glyphs like α and β.

### context.vim
The single file (`cite.vim`) is used for the `vimtex-context-citation` part.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As before: context.vim is more important than the subdir. The subdir only holds the sub modules.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm unsure what to write there instead. Could you do this for me or can you provide me some tipps?

[Here's](https://github.com/lervag/vimtex/pull/1961#issuecomment-795476750) a more detailed description of what it does and what's it's used for.

### fold.vim
This file includes the functions to create the foldings. The main function is
the `vimtex#fold#init_state(state)` function which is calling the needed fold
functions for the current section:

```vim
" this is in line 43
let a:state.fold_types_dict[l:key] = vimtex#fold#{l:key}#new(l:config)
```

The `vimtex/autoload/vimtex/fold` directory takes care of folding your `tex`
document like this thanks to the functions of each file:
![folding example](./documentation_images/folding.png)

The filenames in this directory represent what it folds.

### parser.vim
As the name of the file says: It's parsing the file we're currently editing. For
example it looks where the preamble stops or how the table of contents is
structured. Thanks to these information we're able to see a little TOC to
navigate in our file (`:h :VimtexTocToggle` for more information):

![toc example](./documentation_images/toc.png)

The `vimcomplete.bst` file is used by `parser/bib.vim` in the
`s:parse_with_bibtex()` function, which will actually run the bibtex problem
with the supplied `.bst` file in order to convert a `.bib` file to a `.bbl` file
that is much easier to parse.

### qf.vim
Here we're creating the entries for the quickfix window do display them. It
depends on which filetype we're currently editing. For example if we're editing
a `bib` file, than it's using the function in the
`vimtex/autoload/vimtex/qf/bibtex.vim` in order to create the appropriate
error/warning logs.

Here's an example which is generated through the `latexlog.vim`
file:
![quickfix example](./documentation_images/quickfix.png)

### syntax
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here you should first mention syntax.vim - but in this case there is actually a slight deviation from the earlier schemes in that syntax/core.vim is the main syntax functionalities. syntax.vim is more of a utility module - it does not really provide the real synax specific features. In hindsight, I think this was a slight mistake on my part, but I don't think it is a big problem as long as we are documenting it properly.

This directory includes the syntax highlighting rules for each keyword in a
LaTeX file. But the *main* syntax-highlighting functionalities are in the
`syntax/core.vim` file which also includes the concealling characters starting
from line 745.

The `p` directory just includes more syntax highlighting rules which are *only*
loaded if they are needed.

### text\_obj.vim
This file includes some functions which can be used to get some information
about the current user position. `envtargets.vim` includes for instance some
functions like `vimtex#text_obj#envtargets#current` to get the current
environment where the user is.

### view.vim
In this file we're interacting with the given PDF-Viewer set by the
`g:vimtex_view_method` variable (like zathura). VimTeX is calling the
appropriate functions of the selected pdf-viewer.
In order to achieve that, it just use the `g:vimtex\_view\_method` variable to
get the (file)name in the `vimtex/autoload/vimtex/view` directory where all
files have the same function names. Just a different name according to the
compiler. So it looks like that (line is from the `vimtex#view#init_buffer()`
function):

```vim
let a:state.viewer = vimtex#view#{g:vimtex\_view\_method}#new()
```

If `g:vimtex\_view\_method` would be `zathura`, we'd call the
`vimtex#view#zathura#new()` function which call zathura to open the PDF-file for
us.

# rplugin/python3/denite/source/vimtex.py
This file is used to interact with the
[denite.vim](https://github.com/Shougo/denite.nvim) plugin. For example to jump
to a section/subsection or chapter.

# test
This directory includes *all* test cases which have to pass in order to have a
stable and functional awesome VimTeX plugin :) Each directory and filename
should be self explaining for which cases they are used for.
Binary file added documentation_images/folding.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation_images/quickfix.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added documentation_images/toc.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.