Re: [vim/vim] GVim or gVim - how to write it (#3170)

2018-07-08 Fir de Conversatie h_east
Hi Bram and list, 2018-7-8(Sun) 23:51:22 UTC+9 Bram Moolenaar: > Tony wrote: > > > > > Hm, it seems that Bram writes "gvim" but "GvimExt" almost everywhere, > > > but that the author of the CSApprox plugin consistently uses "GVim" — > > > see quickfix list below. > > > > > > This said,

Patch 8.1.0165

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0165 Problem::clist output can be very long. Solution: Support filtering :clist entries. (Yegappan Lakshmanan) Files: src/quickfix.c, src/testdir/test_quickfix.vim *** ../vim-8.1.0164/src/quickfix.c Tue Jul 3 16:54:18 2018 --- src/quickfix.c Sun Jul 8 15:53:26

Re: :marks truncation

2018-07-08 Fir de Conversatie Tony Mechelynck
On Sun, Jul 8, 2018 at 3:29 PM, Bram Moolenaar wrote: > > Tony wrote: > >> When typing ":marks" in a file with long lines, I notice that the text >> of the marked lines is truncated after a number of _bytes_ (including >> line number etc.) equal to the 'columns' setting; in partly non-ASCII >>

Patch 8.1.0166

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0166 Problem:Using dict_add_nr_str() is clumsy. Solution: Split into two functions. (Ozaki Kiichi, closes #3154) Files: src/channel.c, src/dict.c, src/edit.c, src/evalfunc.c, src/ex_cmds2.c, src/ops.c, src/option.c, src/proto/dict.pro, src/quickfix.c,

Re: Support for filtering :clist command output using :filter

2018-07-08 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, On Sun, Jul 8, 2018 at 7:01 AM, Bram Moolenaar wrote: > > Yegappan wrote: > >> I am attaching a patch to add support for filtering entries in the >> :clist and :llist command output using the ':filter' command. > > That looks useful. Any update to the documentation? > I am attaching a

Re: :marks truncation

2018-07-08 Fir de Conversatie Bram Moolenaar
Tony wrote: > >> When typing ":marks" in a file with long lines, I notice that the text > >> of the marked lines is truncated after a number of _bytes_ (including > >> line number etc.) equal to the 'columns' setting; in partly non-ASCII > >> text (and for example in my Russian dictionary

Re: [vim/vim] GVim or gVim - how to write it (#3170)

2018-07-08 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: [...] > > The executables are always lower case, that's clear. > > > > Since Vim is a name, a product name, it starts with a capital. > > > > In some cases VIM is used, but that should be an exception. > > > > Now for GUI Vim, how to write it in normal text? I would

Patch 8.1.0168

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0168 Problem:Output of :marks is too short with multi-byte chars. (Tony Mechelynck) Solution: Get more bytes from the text line. Files: src/mark.c, src/testdir/test_marks.vim *** ../vim-8.1.0167/src/mark.c Tue Feb 13 13:31:39 2018 --- src/mark.c Sun Jul 8

Patch 8.1.0167

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0167 Problem:Lock flag in new dictitem is reset in many places. Solution: Always reset the lock flag. Files: src/dict.c, src/channel.c, src/ex_cmds2.c, src/userfunc.c, src/if_perl.xs, src/if_py_both.h *** ../vim-8.1.0166/src/dict.c Sun Jul 8 16:50:33 2018 ---

Re: Patch 8.1.0168

2018-07-08 Fir de Conversatie Tony Mechelynck
On Sun, Jul 8, 2018 at 5:57 PM, Bram Moolenaar wrote: > > Patch 8.1.0168 > Problem:Output of :marks is too short with multi-byte chars. (Tony > Mechelynck) > Solution: Get more bytes from the text line. > Files: src/mark.c, src/testdir/test_marks.vim I confirm that this

Patch 8.1.0170

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0170 Problem:Invalid memory use with complicated pattern. (Andy Massimino) Solution: Reallocate the list of listids when needed. (closes #3175) Remove unnecessary function prototypes. Files: src/regexp_nfa.c *** ../vim-8.1.0169/src/regexp_nfa.cSat Jun 23

Re: :marks truncation

2018-07-08 Fir de Conversatie Bram Moolenaar
Tony wrote: > When typing ":marks" in a file with long lines, I notice that the text > of the marked lines is truncated after a number of _bytes_ (including > line number etc.) equal to the 'columns' setting; in partly non-ASCII > text (and for example in my Russian dictionary mixing Russian >

Re: Patch 8.1.0162

2018-07-08 Fir de Conversatie Bram Moolenaar
Tony wrote: > On Sat, Jul 7, 2018 at 10:27 PM, Bram Moolenaar wrote: > > > > Patch 8.1.0162 > > Problem:Danish and German man pages are not installed. (Tony Mechelynck) > > Solution: Adjust the makefile > > Files: src/Makefile > > After applying this patch, then running "make"

Patch 8.1.0171

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0171 Problem:Typing CTRL-W n in a terminal window causes ml_get error. Solution: When resizing the terminal outside of terminal_loop() make sure the snapshot is complete. Files: src/terminal.c, src/testdir/test_terminal.vim *** ../vim-8.1.0170/src/terminal.c

Patch 8.1.0172

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0172 Problem:'viminfofile' option does not behave like a file name. Solution: Add the P_EXPAND flag. (closes #3178) Files: src/option.c *** ../vim-8.1.0171/src/option.cSun Jul 8 16:50:33 2018 --- src/option.cSun Jul 8 21:39:50 2018 *** ***

Re: Support for filtering :clist command output using :filter

2018-07-08 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > I am attaching a patch to add support for filtering entries in the > :clist and :llist command output using the ':filter' command. That looks useful. Any update to the documentation? -- hundred-and-one symptoms of being an internet addict: 203. You're an active member of

Re: Support for filtering :clist command output using :filter

2018-07-08 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > >> I am attaching a patch to add support for filtering entries in the > >> :clist and :llist command output using the ':filter' command. > > > > That looks useful. Any update to the documentation? > > I am attaching a patch with updates to the documentation. > I have also

Patch 8.1.0169

2018-07-08 Fir de Conversatie Bram Moolenaar
Patch 8.1.0169 (after 8.1.0165) Problem:Calling message_filtered() a bit too often. Solution: Only call message_filtered() when filtering is already false. Files: src/quickfix.c, runtime/doc/quickfix.txt *** ../vim-8.1.0168/src/quickfix.c Sun Jul 8 16:50:33 2018 ---