-
Notifications
You must be signed in to change notification settings - Fork 70
Indentation whithin itemize environnement #2
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
Open
mvy
wants to merge
455
commits into
vim-scripts:master
Choose a base branch
from
LaTeX-Box-Team:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
smutch
referenced
this pull request
in smutch/LaTeX-Box
Apr 23, 2013
Updated s:ReadTOC such that it allows for the aux-file to be separated from the main tex file through a build directory. Added options g:LatexBox_build_dir (and b:build_dir) with short documentation. Also fixed build dir problem for log files, which allows the log file to be parsed and the quickfix window to be opened with <leader>le. Thanks to @hengsku for filereadable -> isdirectory!
Enable folding also for sections and chapters that use the optional [] clause, and set appropriate fold text.
Addresses issue #81.
Ref. #58: Thanks to Tertium for noticing this.
* Ref. issue #87 The previous autocommand fails when the tex-buffers are deleted before one exits vim. This update changes the autocommand for kill_all_latexmk() to a buffer specific autocommand for the event BufUnload. Also add a simple check in kill_all_latexmk to prevent error messages if the event is triggered after the buffer has been unloaded, which seems to happen sometimes.
1. Added simple enhancement to allow a comment to set a fold caption (#89) 2. Minor fix to frame fold captions
Improved syntax highlighting: Add support for package cleverref
Added a short note about setting synctex option through g:LatexBox_latexmk_options, as suggested in #95.
One can do `let g:LatexBox_quickfix=2` to make the quickfix window not active when shown: the cursor then stays in the current window. Also correct a typo in the doc.
Fixed some typos, made tags correctly right-aligned, and made setting entries more consistent.
* Use only basename for latexmk In some cases, the entire path name of a file can be very long. In these cases, the errorformat is not capable of capturing the file name. Addresses issue #64 * I am not certain, but I hope this commit fixes the problem
Generalized Splitting and Unpolluted doc/ Directory
Checks if list entry is a string before comparing it to a string. In rare cases this list entry was a list of strings intstead of a string, which resulted in an error message.
fix bug #227 error in ReadTOC function
Mac LatexBox_Viewer
fix #232, do not fold when in diff mode
fix the \right and \left regex in indent/tex.vim
Memoir support
add support for shell=fish
Fix for #240, smartly changes cursor position when typing auto-indented keyword
Remove annoying blinking
Be more silent
Extend the default LatexBox_ref_pattern to support the nameref package.
Omnicomplete \nameref{}
Handle custom jobname
Omnicomplete \autoref{}
The vast majority of the doc uses spaces. About 10 lines were using tabs. This commit expands them for consistency.
Replace tabs with eight spaces.
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.
I have added code to subtract -1 to the indent level of "\end{" for itemize environment as the end was always one tab away from the correct position.
The code checks for \item or \begin{itemize_envs} on the previous line and subtract 1 if \end{ is on the current line.