Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Dariusz Gadomski
Hi On Mon, Apr 15, 2013 at 6:07 PM, Yegappan Lakshmanan wrote: > > > This problem is caused by the shell command line quote escape > character in MS-Windows. > I have a fix for this issue. I will update the grep plugin and release > a new version. > > - Yegappan I was trying to analyze this prob

Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Ben Fritz
On Tuesday, April 23, 2013 8:58:20 AM UTC-5, Darek wrote: > Hi > > > > On Mon, Apr 15, 2013 at 6:07 PM, Yegappan Lakshmanan > > wrote: > > > > > > > > > This problem is caused by the shell command line quote escape > > > character in MS-Windows. > > > I have a fix for this issue. I will u

fencs trial is terminated unexpectedly.

2013-04-23 Thread Taro MURAOKA
Hi list. When 'enc' is "utf-8" and 'fencs' includes "ucs-2", and open a file which is not "ucs-2" encoding, then fencs trial is terminated at "ucs-2" unexpectedly. For example: :set enc=utf-8 :set fencs=ucs-2 :e abc.txt It is failed when opening attached "abc.txt". I wrote an attached patch

[PATCH] Add support for focus reporting (Xterm/private mode1004) in unix terminals

2013-04-23 Thread Hayaki Saito
Hello, lists I wrote a patch for adding support for focus reporting mode (Xterm / private mode 1004) which works on xterm compatible terminals. When this feature is enabled by the private mode sequence "\033[?1004h", Some xterm compatible terminals comes to send [I (focus in event) and [O (fo

Re: fencs trial is terminated unexpectedly.

2013-04-23 Thread Ben Fritz
On Tuesday, April 23, 2013 10:19:57 AM UTC-5, Taro MURAOKA wrote: > Hi list. > > > When 'enc' is "utf-8" and 'fencs' includes "ucs-2", > and open a file which is not "ucs-2" encoding, > then fencs trial is terminated at "ucs-2" unexpectedly. > > For example: > > :set enc=utf-8 > :set fencs=ucs-

Re: fencs trial is terminated unexpectedly.

2013-04-23 Thread Bram Moolenaar
Taro Muraoka wrote: > When 'enc' is "utf-8" and 'fencs' includes "ucs-2", > and open a file which is not "ucs-2" encoding, > then fencs trial is terminated at "ucs-2" unexpectedly. > > For example: > > :set enc=utf-8 > :set fencs=ucs-2 > :e abc.txt > > It is failed when opening attached "abc.t

[PATCH] (1/?) Python interface improvements: replacing IndexError with KeyError for dictionaries

2013-04-23 Thread ZyX
A series of patches with python interface improvements: - a change to make things more pythonic (this one) - a bug fix (second patch) - some refactoring (third and fourth) - new interfaces (fifth and later) # HG changeset patch # User ZyX # Date 1366475031 -14400 # Branch python-extended-2 # Nod

[PATCH] (2/?) Python interface improvements: fix possible crash

2013-04-23 Thread ZyX
# HG changeset patch # User ZyX # Date 1366489636 -14400 # Branch python-extended-2 # Node ID 4cacac640f4a6dfa52759a2c18b50afcd3e39627 # Parent ef93c86c326eaf3ff86a6f1a5a85a0efac52621f Fix possible crash (PyMapping_Items not necessary succeeds) diff -r ef93c86c326e -r 4cacac640f4a src/if_py_both

[PATCH] (4/?) Python interface improvements: squash some #if branches in ConvertFromPyObject

2013-04-23 Thread ZyX
# HG changeset patch # User ZyX # Date 1366476712 -14400 # Branch python-extended-2 # Node ID 3d61e036e5a6856a08e6e67bd9f372ebd79de15e # Parent 588f9ea6424cf54f1ca879c1e9503dfa1a140eab Reduce number of lines in ConvertFromPyObject code diff -r 588f9ea6424c -r 3d61e036e5a6 src/if_py_both.h --- a/

[PATCH] (5/?) Python interface improvements: add attributes with scope dictionaries

2013-04-23 Thread ZyX
# HG changeset patch # User ZyX # Date 1366478866 -14400 # Branch python-extended-2 # Node ID 10f7e8e41f8e23d30cf6f9f894f96d6fd4744e41 # Parent 3d61e036e5a6856a08e6e67bd9f372ebd79de15e Add vim.vars, vim.vvars, buffer.vars, window.vars attributes diff -r 3d61e036e5a6 -r 10f7e8e41f8e runtime/doc/i

Re: [PATCH] (1/?) Python interface improvements: replacing IndexError with KeyError for dictionaries

2013-04-23 Thread ZyX
Note: [/?] means that there are some more things that I want to add, but what I have already posted here is ready for inclusion and has value on its own. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more in

Re: [PATCH] (1/?) Python interface improvements: replacing IndexError with KeyError for dictionaries

2013-04-23 Thread ZyX
As usual, all patches are commits at https://bitbucket.org/ZyX_I/vim. As unusual, I have two-headed branch python-extended-2 with one head having cleaned up commits (i.e. a series of 6 commits with exactly the same diffs as posted above). -- -- You received this message from the "vim_dev" mai

Re: fencs trial is terminated unexpectedly.

2013-04-23 Thread Tony Mechelynck
On 23/04/13 17:19, Taro MURAOKA wrote: Hi list. When 'enc' is "utf-8" and 'fencs' includes "ucs-2", and open a file which is not "ucs-2" encoding, then fencs trial is terminated at "ucs-2" unexpectedly. For example: :set enc=utf-8 :set fencs=ucs-2 :e abc.txt It is failed when opening attache

Re: [PATCH] Add support for focus reporting (Xterm/private mode1004) in unix terminals

2013-04-23 Thread Bram Moolenaar
Hayaki Saito wrote: > Hello, lists > > I wrote a patch for adding support for focus reporting mode (Xterm / > private mode 1004) which works on xterm compatible terminals. > > When this feature is enabled by the private mode sequence > "\033[?1004h", Some xterm compatible terminals comes to se

Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Yegappan Lakshmanan
Hi, On Tue, Apr 23, 2013 at 6:58 AM, Dariusz Gadomski wrote: > > Hi > > On Mon, Apr 15, 2013 at 6:07 PM, Yegappan Lakshmanan > wrote: > > > > > > This problem is caused by the shell command line quote escape > > character in MS-Windows. > > I have a fix for this issue. I will update the grep pl

Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Yegappan Lakshmanan
Hi, On Tue, Apr 23, 2013 at 6:00 PM, Yegappan Lakshmanan wrote: >> > >> > This problem is caused by the shell command line quote escape >> > character in MS-Windows. >> > I have a fix for this issue. I will update the grep plugin and release >> > a new version. >> > >> > - Yegappan >> >> I was tr

Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Dariusz Gadomski
Hi On Wed, Apr 24, 2013 at 7:28 AM, Yegappan Lakshmanan wrote: > Hi, > > On Tue, Apr 23, 2013 at 6:00 PM, Yegappan Lakshmanan > wrote: >>> > >>> > This problem is caused by the shell command line quote escape >>> > character in MS-Windows. >>> > I have a fix for this issue. I will update the gre

Re: Rgrep not working on vim 64-bit, win7

2013-04-23 Thread Dariusz Gadomski
Hi On Tue, Apr 23, 2013 at 5:14 PM, Ben Fritz wrote: > On Tuesday, April 23, 2013 8:58:20 AM UTC-5, Darek wrote: >> Hi >> >> >> >> On Mon, Apr 15, 2013 at 6:07 PM, Yegappan Lakshmanan >> >> wrote: >> >> > >> >> > >> >> > This problem is caused by the shell command line quote escape >> >> > chara