Re: Vim Function: return from within Python Code

2016-03-21 Thread Nikolay Aleksandrovich Pavlov
2016-03-21 18:31 GMT+03:00 rameo : > @ZyX, > > Thanks, > You mean to extract the Python code to a .py file and import it in my vim > function? To a function in a *.py file. Python module is supposed to do nothing except for defining a few variables when it is imported,

Re: Vim Function: return from within Python Code

2016-03-21 Thread rameo
@ZyX, Thanks, You mean to extract the Python code to a .py file and import it in my vim function? I still don't understand how to exit from my pythoncode from within my python code. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text

Re: My E-mail to the Mailing List Did Not Arrive

2016-03-21 Thread Tim Chase
On 2016-03-21 10:50, Wolf Bogacz wrote: > I don't recognize your handle. If you are new, subscriber's first > messages to the list are moderated. > This could be an explanation. If not new subscriber, then I can't > explain it. As one who's been on the vim-users mailing list for over a decade, I

Re: My E-mail to the Mailing List Did Not Arrive

2016-03-21 Thread toothpik
On Mon, Mar 21, 2016 at 10:50:54AM -0400, Wolf Bogacz wrote: > I don't recognize your handle. If you are new, subscriber's first messages > to the list are moderated. > This could be an explanation. If not new subscriber, then I can't explain > it. > On Mon, Mar 21, 2016 at 7:54 AM, Shlomi Fish

Re: My E-mail to the Mailing List Did Not Arrive

2016-03-21 Thread Wolf Bogacz
I don't recognize your handle. If you are new, subscriber's first messages to the list are moderated. This could be an explanation. If not new subscriber, then I can't explain it. On Mon, Mar 21, 2016 at 7:54 AM, Shlomi Fish wrote: > Hi all, > > my E-mail to the

Build cexpr from result of python code.

2016-03-21 Thread Ni Va
Hi, I am using Execute-selection-in-Python-and-append-master plugin in order to test python code directly through vim. Now the python code is working and return me a list that contains strings typed like "file linenumber linecontent". I would like not to replace buffer content by result of

Re: Vim Function: return from within Python Code

2016-03-21 Thread Nikolay Aleksandrovich Pavlov
2016-03-19 19:38 GMT+03:00 rameo : > I have a VIM function with a lot of code written in python. > > There are many loops and sub-loops with this kind of code: > > if this > exit > else > do this > > Does anyone know how to exit the python code and return to vim? > (or even

My E-mail to the Mailing List Did Not Arrive

2016-03-21 Thread Shlomi Fish
Hi all, my E-mail to the "vim_use" mailing list with the subject " [ANN] Investigating Vim's escaping/quoting rules for the :! ... command." sent two days ago did not arrive to the mailing list , and I didn't get a bounce, a rejection E-mail, or a moderation E-mail either. Please investigate why

Re: Vim Function: return from within Python Code

2016-03-21 Thread A. S. Budden
On 21 March 2016 at 09:12, A. S. Budden wrote: > On 19 March 2016 at 16:38, rameo wrote: >> I have a VIM function with a lot of code written in python. >> >> There are many loops and sub-loops with this kind of code: >> >> if this >> exit >> else >> do

Re: Vim Function: return from within Python Code

2016-03-21 Thread A. S. Budden
On 19 March 2016 at 16:38, rameo wrote: > I have a VIM function with a lot of code written in python. > > There are many loops and sub-loops with this kind of code: > > if this > exit > else > do this > > Does anyone know how to exit the python code and return to vim? > (or