Hi all,
I recently started using the github branches to track my changes to Vim.
I have a question about syncing a feature branch to the upstream repository.
I first created a clone of the Vim repository:
https://github.com/yegappan/vim
Next, I created a child branch for each of my change:
2016-05-25 23:43 GMT+03:00 Ben Fritz :
> On Wednesday, May 25, 2016 at 2:24:01 PM UTC-5, Axel Bender wrote:
>> @ZyX
>>
>> The layout of my files is as follows:
>>
>> Z:\bin\vim\syntax\html.vim
>> Z:\bin\vim\syntax\markdown.vim
>>
>> Still, I get the following error message when editing a MD file:
>
Ramel Eshed wrote:
> Is there any way to use a nomodifiable buffer as an output buffer for
> a job? If not, I think that it could be very useful.
The idea of making a buffer nomodifiable is that it's read-only, the
contents is not supposed to change. That conflicts with writing to the
buffer.
Patch 7.4.1847
Problem:Getting an item from a NULL dict crashes. Setting a register to a
NULL list crashes. (Nikolai Pavlov, issue #768) Comparing a NULL
dict with a NULL dict fails.
Solution: Properly check for NULL.
Files: src/eval.c, src/testdir/test_expr.vi
Ken Takata wrote:
> 2016/5/25 Wed 13:25:44 UTC+9 Ken Takata wrote:
> > Hi tux.,
> >
> > 2016/5/25 Wed 7:27:04 UTC+9 tux. wrote:
> > > Well ...
> > >
> > > > if_perl.obj : error LNK2001: Nicht aufgelöstes externes Symbol
> > > > "__imp__Perl_savetmps".
> > > > gvim.exe : fatal error LNK1120: 1
Axel Bender wrote:
> @ZyX
>
> The layout of my files is as follows:
>
> Z:\bin\vim\syntax\html.vim
> Z:\bin\vim\syntax\markdown.vim
>
> Still, I get the following error message when editing a MD file:
>
> "readme.md" [unix] 136L, 5524C
> Error detected while processing z:\bin\vim\syntax\html.
Le mardi 20 août 2013 10:29:22 UTC+2, jan.s...@t-online.de a écrit :
> Hi,
>
>
>
> this bug really hurts me a long time.If you use VIM on a Windows system and
> using directories with an exclamation mark the filename completion does not
> work.
>
>
>
>
> If you want to load
>
>
>
>
> c
On Wednesday, May 25, 2016 at 2:24:01 PM UTC-5, Axel Bender wrote:
> @ZyX
>
> The layout of my files is as follows:
>
> Z:\bin\vim\syntax\html.vim
> Z:\bin\vim\syntax\markdown.vim
>
> Still, I get the following error message when editing a MD file:
>
> "readme.md" [unix] 136L, 5524C
> Error det
Patch 7.4.1846
Problem:Ubsan detects a multiplication overflow.
Solution: Don't use orig_mouse_time when it's zero. (Dominique Pelle)
Files: src/term.c
*** ../vim-7.4.1845/src/term.c 2016-05-05 18:13:59.416035302 +0200
--- src/term.c 2016-05-25 21:45:19.401809733 +0200
*
Ramel Eshed wrote:
> I'm not sure what exactly you've done in the last few patches, but it
> seems like the SEGV issue is solved now, Thanks.
Glad to hear that.
> Unfortunately, I have
> a different issue now when using the gui; Sometimes, when I perform a
> large search (~9000 results) Vim han
Patch 7.4.1845
Problem:Mentioning NetBeans when reading from channel. (Ramel Eshed)
Solution: Make the text more generic.
Files: src/channel.c
*** ../vim-7.4.1844/src/channel.c 2016-05-09 20:52:04.635078565 +0200
--- src/channel.c 2016-05-25 21:29:12.881823028 +0200
**
@ZyX
The layout of my files is as follows:
Z:\bin\vim\syntax\html.vim
Z:\bin\vim\syntax\markdown.vim
Still, I get the following error message when editing a MD file:
"readme.md" [unix] 136L, 5524C
Error detected while processing z:\bin\vim\syntax\html.vim:
line 209:
E409: Unknown group name:
Patch 7.4.1844
Problem:Using old function name in comment. More functions should start
with test_.
Solution: Rename function in comment. (Higashi Higashi) Rename
disable_char_avail_for_testing() to test_disable_char_avail().
And alloc_fail() to test_alloc
Hirohito Higashi wrote:
> 2016-5-25(Wed) 0:33:53 UTC+9 Bram Moolenaar:
> > Patch 7.4.1838
> > Problem:Functions specifically for testing do not sort together.
> > Solution: Rename garbagecollect_for_testing() to
> > test_garbagecollect_now().
> > Add test_null_list(), test_null
Nikolay Pavlov wrote:
> 2016-05-24 23:14 GMT+03:00 Christian Brabandt :
> > Hi Bram!
> >
> > On Di, 24 Mai 2016, Bram Moolenaar wrote:
> >
> >>
> >> Patch 7.4.1836
> >> Problem:When using a partial on a dictionary it always gets bound to
> >> that
> >> dictionary.
> >> Solution:
Patch 7.4.1843
Problem:Tests involving Python are flaky.
Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
Files: runtime/doc/if_pyth.txt, src/if_py_both.h, src/testdir/test86.in,
src/testdir/test86.ok, src/testdir/test87.in,
src/testdir/test87.ok
*
I already had the other patch. Whoops...
Yours compiles, thank you!
--
--
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 information, visit http://www.vim.org/maillist.php
---
You received this message becaus
Hi Ramel,
2016-5-25(Wed) 22:02:46 UTC+9 Ramel Eshed:
> Hi All,
>
> Please check this:
>
> vim -u NONE -N
> :for i in range(1, 200) | echoerr 'mes ' . i | endfor
> G " - go to the bottom of the list
>
> Now, type k several times; instead of moving one line back each time, I get
> extra 'Press E
2016-04-22 15:56 GMT+03:00 Axel Bender :
> Opening a markdown file while having an own syntax file for HTML in another
> directory (but accessible via ("runtime") gives me some errors.
>
> This is due to using "runtime! syntax/html.vim" command in markdown.vim (line
> 15).
> Changing this to "run
Hi,
2016/5/25 Wed 13:25:44 UTC+9 Ken Takata wrote:
> Hi tux.,
>
> 2016/5/25 Wed 7:27:04 UTC+9 tux. wrote:
> > Well ...
> >
> > > if_perl.obj : error LNK2001: Nicht aufgelöstes externes Symbol
> > > "__imp__Perl_savetmps".
> > > gvim.exe : fatal error LNK1120: 1 nicht aufgelöste externe Verweise
Hi All,
Please check this:
vim -u NONE -N
:for i in range(1, 200) | echoerr 'mes ' . i | endfor
G " - go to the bottom of the list
Now, type k several times; instead of moving one line back each time, I get
extra 'Press ENTER or type command to continue' messages.
Thanks,
Ramel
--
--
You re
2016-05-25 12:04 GMT+03:00 Bram Moolenaar :
>
> Nikolay Pavlov wrote:
>
>> >> 2016-05-24 19:37 GMT+03:00 Bram Moolenaar :
>> >> >
>> >> > Patch 7.4.1839
>> >> > Problem:Cannot get the items stored in a partial.
>> >> > Solution: Support using get() on a partial.
>> >> > Files: src/eval.c
Nikolay Pavlov wrote:
> >> 2016-05-24 19:37 GMT+03:00 Bram Moolenaar :
> >> >
> >> > Patch 7.4.1839
> >> > Problem:Cannot get the items stored in a partial.
> >> > Solution: Support using get() on a partial.
> >> > Files: src/eval.c, src/testdir/test_partial.vim,
> >> > runtime/doc/ev
Am 2016-05-25 07:49, schrieb Christian Brabandt:
The build for the 32bit version failed, because a download did not
succeed. I just pushed the rebuild button. If it doesn't brake because
of the python test mentioned by Ken, it will be uploaded soon. However,
if you want to use the if_pyth functi
24 matches
Mail list logo