-
Notifications
You must be signed in to change notification settings - Fork 395
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
Make init_errorformat() global function #49
Comments
On a related note (and since I read that in the past you looked into dispatch.vim) I wonder if you know how to achieve the following. I have this function to run my latex files with dispatch.vim;
Once the build finishes I want to call
but I don't quite understand how to use that. Doing:
seems to work if I stay in the tex file. But if I switch to another file (for instance to a |
To your first comment: I am not really sure about this. Personally, I would like to keep the plugin as a relatively general latex plugin, although minimalistic and with a well documented API. I find the errorformat to be very intrinsic to the latex filetype, and so I don't really see the need to let the To your second comment: First, I notice that you must have called the init function, or else the |
Thanks for your comment and sorry for my late reply. I wanted to call Thanks for suggesting |
Ok. I'm curious: Why do you not use |
Mmmm I never actually tried The thing I like about Do you fully recommend |
I have not personally used Note that I do use a Btw, you may be interested in this discussion. |
@petobens Just FYI: I have now implemented options to disable continuous compilation with |
Thank you lervag for both of comments (I had completely missed the first one, I apologize for that). The discussion at tex.stackexchange in indeed interesting. Given that and the fact that now it is possible to disable continuous compilation means that I will be trying Once again for such a great plugin and the excellent support you provide. |
Is it possible to make the
s:init_errorformat()
a global function? I like to use vim-latex's error format in a script and in order to do so I have to either runlatex#init()
(which is a global function) or copy thes:init_errorformat()
function to my script.If this is not possible, if there is another way of calling the init_function from outside the script, or if this breaks some behavior just ignore this request and close the issue.
Thank you!
The text was updated successfully, but these errors were encountered: