vim doesn't work properly after upgrade ubuntu to 12.04

2012-05-10 Fir de Conversatie stone
Hi there! After I upgraded my ubuntu to 12.0.4, vim version 7.3.429 behaves kinda weird. 1. vim file1; 2. :vsp ./browse and open file2 --- everything is cool; 3. move cursor to window file1; 4. :vsp ./try to split and browse again, new browsing window opened, good, but the cursor is moved

Re: vim doesn't work properly after upgrade ubuntu to 12.04

2012-05-10 Fir de Conversatie James McCoy
On May 10, 2012 7:11 AM, stone zmst...@gmail.com wrote: Hi there! After I upgraded my ubuntu to 12.0.4, vim version 7.3.429 behaves kinda weird. 1. vim file1; 2. :vsp ./browse and open file2 --- everything is cool; 3. move cursor to window file1; 4. :vsp ./try to split and browse

Re: vim doesn't work properly after upgrade ubuntu to 12.04

2012-05-10 Fir de Conversatie stone
Great! thanks! On Thu, May 10, 2012 at 5:44 PM, James McCoy james...@jamessan.com wrote: On May 10, 2012 7:11 AM, stone zmst...@gmail.com wrote: Hi there! After I upgraded my ubuntu to 12.0.4, vim version 7.3.429 behaves kinda weird. 1. vim file1; 2. :vsp ./browse and open

Build 7.3.502 StatusLine Highlighting seems to be broken (gvim) Motif X11

2012-05-10 Fir de Conversatie Bovy, Stephen
.gvimrc Set nice colors background for normal text is light grey Text below the last line is darker grey Cursor is green, Cyan when :lmap mappings are active Constants are not underlined but have a slightly lighter background highlight Normal guibg=grey90 highlight Cursor

RE: Build 7.3.502 StatusLine Highlighting seems to be broken (gvim) Motif X11

2012-05-10 Fir de Conversatie Bovy, Stephen
Further Clarification :hi StatusLine guibg=darkblue StatusLine HighLighting is only working when the window is split Is this new behavior or a bug ?? I could swear on a dozen bibles that this used to work From: vim_dev@googlegroups.com [mailto:vim_dev@googlegroups.com] On Behalf Of Bovy,

RE: Build 7.3.502 StatusLine Highlighting seems to be broken (gvim) Motif X11

2012-05-10 Fir de Conversatie James McCoy
On May 10, 2012 1:11 PM, Bovy, Stephen stephen.b...@teradata.com wrote: Further Clarification :hi StatusLine guibg=darkblue StatusLine HighLighting is only working when the window is split See :help 'laststatus'. -- You received this message from the vim_dev maillist. Do not

RE: Build 7.3.502 StatusLine Highlighting seems to be broken (gvim) Motif X11

2012-05-10 Fir de Conversatie Bovy, Stephen
Thanks So what does this do ??? set stal=1 And actually the status line is visible but the background color is not being set From: vim_dev@googlegroups.com [mailto:vim_dev@googlegroups.com] On Behalf Of James McCoy Sent: Thursday, May 10, 2012 11:23 AM To: vim_dev@googlegroups.com

Added support for spelling checking in runtime/syntax/cmake.vim

2012-05-10 Fir de Conversatie Dominique Pellé
Hi Attached patch adds @Spell to the runtime/syntax/cmake.vim file so that Vim only highlights spelling mistakes in comments when editing a CMakeFile with those settings: :syntax on :set spell There are still several syntax files which do not contain support for spelling checker yet. It

Re: Added support for spelling checking in runtime/syntax/cmake.vim

2012-05-10 Fir de Conversatie Thilo Six
Hello Dominique, Excerpt from Dominique Pellé: Hi Attached patch adds @Spell to the runtime/syntax/cmake.vim file so that Vim only highlights spelling mistakes in comments when editing a CMakeFile with those settings: :syntax on :set spell There are still several syntax files

Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie Bovy, Stephen
I apologize for posting a usage question to this forum But I do not have the time bandwidth and recourses to monitor two mailing lists I have searched using google and looked at various vim comments here and there And I cannot figure this out I have tried using this source

make less.{vim,sh} behave more like 'less'

2012-05-10 Fir de Conversatie Ken Takata
Hi, I wanted less.vim and less.sh to behave more like 'less'. The attached patch changes the following behavior: 1. Do not quit Vim automatically at the end of file. (less.vim) 'more' quits at the end of file, but 'less' does not. 2. Do not wait the input of user, if no arguments were given

VIM ( IBM on z/OS ) { with Motif 2.1 } { Linking with DLL support causes Fatal SEGV }

2012-05-10 Fir de Conversatie Bovy, Stephen
cc -Wl,EDIT=NO,xplink -W l,dll -o vim objects/buffer.o objects/blowfish.o objects/charset.o objects/diff.o objects/digraph.o objects/edit.o objects/eval.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/fold.o

Re: When completefunction returns -2, still in Ctrl-X mode

2012-05-10 Fir de Conversatie mattn
Bram, I reviewed this patch in few weeks ago, and confirmed this patch is working well. On Friday, May 11, 2012 8:39:11 AM UTC+9, Shougo wrote: This issue is related to 7.3.418(https://groups.google.com/forum/#!topic/vim_dev/_w4mI5MQITs/discussion) changes. If completefunc returns -2, Vim

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie John Beckett
Bovy, Stephen wrote: I have tried using this source $VIMRUNTIME/mswin.vim But I cannot get the copy and cut to put anything on the clipboard First step is to check output of :version to see if you have +clipboard (feature supported) or -clipboard (not enabled during build). I do not know

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie Bovy, Stephen
Thanks John Actually Paste works great I can copy something into the clip-boardusing note-pad And I can past it into vim The problem Is I cannot copy/cut from vim and past it into notepad And for reference purpose ( I have verified that this is not an Xming problem

helptags doesn't extract multi-byte tags if encoding=cp932

2012-05-10 Fir de Conversatie mattn
Hi. helptags_one extract help tag like '*foo*'. it's used vim_strchr() to find second '*'. But vim_strchr() depend on current encoding. Help file should be latin-1 or utf-8 encoding. So if DBCS is used for encoding, it may not extract second '*'. Below is a patch. Please check and include.

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie Bovy, Stephen
Let me clarify Further research has uncovered the following I can copy something to the clip-board with vim ( but I can only paste the result into WORD !!! ) And each line gets an extra blank line added I cannot paste the result into Microsoft Notepad Or into notepad++

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie Bovy, Stephen
Ok (one more for the gipper ) I hate Micky-Soft Windows !! If I Press C-V and Keep Pressing the V key eventually the paste starts working in Note-Pad ( and I end up getting multiple copies ) In word the above action is not required ( but I do get extra blank lines in word ) And (

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie Bovy, Stephen
Dang !! ( My deepest Apologies ) AND I should have known better!!! When I use a Different X-Window Server this strange esotericproblem completely disappears If I use Reflection-X as My X-Window Manager (then no more problems ) Sweeet :) Xming is so

VIM: gvim ( IBM PORT ) ( with NEW Motif 2.1 Support ) Successful

2012-05-10 Fir de Conversatie Bovy, Stephen
Full Featured Tool-Bar Support with Motif 2.1 ON IBM z/OS( works great !! ) I sure wish I could send you a screen shot !!! $ vim --version VIM - Vi IMproved 7.3 (2010 Aug 15, compiled May 10 2012 16:07:48) Included patches: 1-502 Compiled by sb18...@mvs9.td.teradata.com Big version

RE: Remote Motif X11 gvim on windows using Xming ( copy cut ) ClipBoard

2012-05-10 Fir de Conversatie John Beckett
Bovy, Stephen wrote: When I use a Different X-Window Server this strange esoteric problem completely disappears I'm glad you have fixed the issue but for the future please use the customs of this mailing list. Your last message includes five copies of the standard email footer which includes:

Re: Build 7.3.502 StatusLine Highlighting seems to be broken (gvim) Motif X11

2012-05-10 Fir de Conversatie Sergey Khorev
StatusLine  HighLighting is only working when the window is split An obvious question: have you tried this on other platforms including different versions of X server and Motif? -- You received this message from the vim_dev maillist. Do not top-post! Type your reply below the text you are