Re: Some changes to syntax/vhdl.vim

2015-10-13 Fir de Conversatie Daniel Kho
Sorry, I understand what you mean now. Previously I've mistaken you meant $Ld instead of $id. Yes, feel free to remove that line. I apologise for the multiple posts. Best regards, Daniel On Wed, 14 Oct 2015 at 09:55 Daniel Kho wrote: > Probably my mail client added it

Re: [PATCH] Add documentation for README_mac.txt

2015-10-13 Fir de Conversatie Christian Brabandt
Hi Devin! On Di, 13 Okt 2015, Devin Weaver wrote: > +Avoid using "STRIP=true" during the build step. If stripping the binaries is > +enabled, vim will segfault with statically-linked interpreters like ruby > +http://code.google.com/p/vim/issues/detail?id=114=114=1361483471 The link is wrong. I

Re: [PATCH] Add documentation for README_mac.txt

2015-10-13 Fir de Conversatie Kazunobu Kuriyama
Hi, First, I appreciate your effort on this issue. Although this email is lengthy, I’d be happy if you would done with it. On Oct 14, 2015, at 2:03, Devin Weaver wrote: > This is long over due. I realize that the Mac versions of things have > moved to MacVim and most

Re: Compiling Vim7.4 with python feature fails

2015-10-13 Fir de Conversatie Ni Va
On Monday, October 12, 2015 at 4:14:02 PM UTC+1, Ben Fritz wrote: > On Monday, October 12, 2015 at 5:19:12 AM UTC-5, Ni Va wrote: > > Hi, > > > > > > Attempting to compile vim74 with python feature under seven, it fails > > because of one header directive : #include "pyconfig.h" > > > >

Re: [vim] VIM unable to find iconv dll in windows (+iconv/dyn option) (#440)

2015-10-13 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: > On Monday, October 12, 2015 at 10:52:27 AM UTC+9, K.Takata wrote: > > @mattn No, it will be changed when libiconv changes its API and if > > compatibility is lost. Not when libtool is changed. > > > > > > — > > Reply to this email directly or view it on GitHub. >

Re: Some changes to syntax/vhdl.vim

2015-10-13 Fir de Conversatie Bram Moolenaar
Daniel Kho wrote: > Hi Bram, > I've made some updates to vhdl.vim. Below is a list of the changes: > - Added new VHDL-2008 types > - Removed non-standard block attributes > - Removed duplicate entries under "type attributes" > - Added new VHDL-2008 attributes > - Overhaul of VHDL operators.

Patch 7.4.892

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.892 Problem:On MS-Windows the iconv DLL may have a different name. Solution: Also try libiconv2.dll and libiconv-2.dll. (Yasuhiro Matsumoto) Files: src/mbyte.c *** ../vim-7.4.891/src/mbyte.c 2015-06-21 14:21:54.477599972 +0200 --- src/mbyte.c 2015-10-13 13:43:51.747457468

Patch 7.4.893

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.893 Problem:C indenting is wrong below a "case (foo):" because it is recognized as a C++ base class construct. Issue #38. Solution: Check for the case keyword. Files: src/misc1.c, src/testdir/test3.in, src/testdir/test3.ok *** ../vim-7.4.892/src/misc1.c

Re: [vim] Netrw doesn't enter the directory symbolic link (#445)

2015-10-13 Fir de Conversatie Charles Campbell
yurivict wrote: > > When I view the directory (:new .), select symbolic link representing > another directory, and hit Enter, vim still stays the original directory. > > vim-7.4.891 on FreeBSD-10.2 > Hello! I'm afraid that I don't see this problem. (I use vim v7.4.891 with Scientific Linux 6.7)

Re: Compiling Vim7.4 with python feature fails

2015-10-13 Fir de Conversatie Ben Fritz
On Tuesday, October 13, 2015 at 1:32:28 AM UTC-5, Ni Va wrote: > > > > What command-line are you using to build Vim? Are you telling Vim where to > > find your python install, with the PYTHON variable? What makefile/compiler? > > > > See here for a somewhat verbose and complicated example: > >

Patch 7.4.894

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.894 Problem:vimrun.exe is picky about the number of spaces before -s. Solution: Skip all spaces. (Cam Sinclair) Files: src/vimrun.c *** ../vim-7.4.893/src/vimrun.c 2010-05-15 13:04:08.0 +0200 --- src/vimrun.c2015-10-13 17:52:19.458373362 +0200

netrw sorts symbolic links to directories as regular files

2015-10-13 Fir de Conversatie Gary Johnson
When I open a directory containing symbolic links to other directories, those symbolic links appear among the regular files, not among the directories. I think it would be better to group the symbolic links to directories with the regular directories. I didn't see a configuration variable for

Re: Missing syntax highlighting in sh syntax inside the braces

2015-10-13 Fir de Conversatie Charles Campbell
Yuri wrote: > I am seeing that '=' and '&&' elements aren't highlighted in this > example. > However, when when the braces are removed it highlights ok. > > filetype=sh, is_posix=1 > FreeBSD > > Yuri > > > --- problem testcase: = and && aren't highlighted! --- > #!/bin/sh > > myfunc() { > ([

Patch 7.4.895

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.895 Problem:Custom command line completion does not work for a command containing digits. Solution: Skip over the digits. (suggested by Yasuhiro Matsumoto) Files: src/ex_docmd.c *** ../vim-7.4.894/src/ex_docmd.c 2015-09-25 16:59:43.001963805 +0200 ---

[PATCH] Add documentation for README_mac.txt

2015-10-13 Fir de Conversatie Devin Weaver
This is long over due. I realize that the Mac versions of things have moved to MacVim and most people install via Homebrew without giving second thought to the actual Vim source. However, I tend to jump to README_mac.txt when I clone the Vim source. Every time I do a small little kitten in

Patch 7.4.896

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.896 Problem:Editing a URL, which netrw should handle, doesn't work. Solution: Avoid changing slashes to backslashes. (Yasuhiro Matsumoto) Files: src/fileio.c, src/os_mswin.c *** ../vim-7.4.895/src/fileio.c 2015-08-11 18:45:43.122311811 +0200 --- src/fileio.c

Re: Patch 7.4.893

2015-10-13 Fir de Conversatie Christian Brabandt
Hi Bram! On Di, 13 Okt 2015, Bram Moolenaar wrote: > Problem:C indenting is wrong below a "case (foo):" because it is > recognized as a C++ base class construct. Issue #38. If you say "fixes #38" or "closes #38", Github will automatically close the referenced issue. Best,

Re: [PATCH] Add documentation for README_mac.txt

2015-10-13 Fir de Conversatie Bram Moolenaar
Devin Weaver wrote: > This is long over due. I realize that the Mac versions of things have > moved to MacVim and most people install via Homebrew without giving > second thought to the actual Vim source. However, I tend to jump to > README_mac.txt when I clone the Vim source. Every time I do a

Re: Issue 364 in vim: sh syntax highlight breaks on "'\$#'": everything after becomes shDoubleQuote

2015-10-13 Fir de Conversatie Charles Campbell
v...@googlecode.com wrote: > a=b > echo "'\$#'" > c=d Hello! Thank you for your feedback, and sorry it took awhile to get to it. Please try the latest syntax/sh.vim from my website to address this issue: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_SH Regards, Chip Campbell -- --

Patch 7.4.897

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.897 Problem:Freeze and crash when there is a sleep in a remote command. (Karl Yngve Lervåg) Solution: Remove a message from the queue before dealing with it. (James Kolb) Files: src/if_xcmdsrv.c *** ../vim-7.4.896/src/if_xcmdsrv.c 2015-09-17

Patch 7.4.898

2015-10-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.898 Problem:The 'fixendofline' option is set on with ":edit". Solution: Don't set the option when clearing a buffer. (Yasuhiro Matsumoto) Files: src/buffer.c *** ../vim-7.4.897/src/buffer.c 2015-08-04 17:43:20.577543527 +0200 --- src/buffer.c2015-10-13

Re: fixendofline isn't copied from global variable

2015-10-13 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: > 1. add set nofixendofline into vimrc > 2. :e ~/.vimrc > 3. :verbose set fixendofline > > It should display > > nofixendofline >Last set from ~/.vimrc > > But > > fixendofline >Last set from ~/.vimrc > > Below is a patch to fix this. Thanks! --

Re: [Bug] Indentation of C++ constructor with initializer list

2015-10-13 Fir de Conversatie h_east
Hi Bram, 2015-10-12 (Mon) 0:18:12 UTC+9 h_east: > Hi > > 2015-10-7 (Wed) 10:26:08 UTC+9 h_east: > > Hi James and Bram, > > > > 2015-10-4 (Sun) 22:29:23 UTC+9 h_east: > > > Hi James! > > > > > > 2015-8-2 (Sun) 13:46:34 UTC+9 James McCoy: > > > > Given the file foo.cc > > > > > > > > -- >8 -- >

Re: Some changes to syntax/vhdl.vim

2015-10-13 Fir de Conversatie Daniel Kho
Hi Bram, Sure, you can remove the $ld line. Interestingly, it didn't show up on my system anyway. Best regards, Daniel On Tue, 13 Oct 2015 at 19:49 Bram Moolenaar wrote: > > Daniel Kho wrote: > > > Hi Bram, > > I've made some updates to vhdl.vim. Below is a list of the

Re: Some changes to syntax/vhdl.vim

2015-10-13 Fir de Conversatie Daniel Kho
Probably my mail client added it while attaching the file. I'm not sure. Best regards, Daniel On Wed, 14 Oct 2015 at 09:54 Daniel Kho wrote: > Hi Bram, > Sure, you can remove the $ld line. Interestingly, it didn't show up on my > system anyway. > > Best regards, > Daniel