From: Kiran N. M. <kir...@ya...> - 2004-11-24 15:55:16
|
Hello: On my AIX 5100-04 machine, I see two copies of vim: I /usr/local/bin/vim (apparently open source compiled by someone in-house on 2002Dec5) II /opt/freeware/bin/vim (most likely from IBM Provided CD, compiled on 2002 Apr 23) Both executables have a problem wherein apart from moving the cursor around no significant editing operation is possible (yields the error "E363: pattern caused out-of-stack error"). $ rpm -qa | grep vim yields: vim-common-6.0.147-1 vim-minimal-6.0.147-1 vim-enhanced-6.0.147-1 vim-X11-6.0.147-1 $ ulimit -a | grep stack shows: stack(kbytes) 4194304 Any help/clues? Thanks, Kiran __________________________________ Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone. http://mobile.yahoo.com/maildemo |
From: Aaron M. <aar...@gm...> - 2004-11-24 21:33:59
|
I'm seeing the same issue on a few of my 5200-03 boxes, but not all. Even though I get the error, my editing operations succeed. On Wed, 24 Nov 2004 04:55:04 -0800 (PST), Kiran N. Mehta <kir...@ya...> wrote: > Hello: > > On my AIX 5100-04 machine, I see two copies of vim: > I /usr/local/bin/vim > (apparently open source compiled by someone in-house on 2002Dec5) > II /opt/freeware/bin/vim > (most likely from IBM Provided CD, compiled on 2002 Apr 23) > Both executables have a problem wherein apart from moving the > cursor around no significant editing operation is possible (yields > the error "E363: pattern caused out-of-stack error"). > > $ rpm -qa | grep vim yields: > vim-common-6.0.147-1 > vim-minimal-6.0.147-1 > vim-enhanced-6.0.147-1 > vim-X11-6.0.147-1 > > $ ulimit -a | grep stack shows: > stack(kbytes) 4194304 > > Any help/clues? > > Thanks, > Kiran > > __________________________________ > Do you Yahoo!? > Take Yahoo! Mail with you! Get it on your mobile phone. > http://mobile.yahoo.com/maildemo > _______________________________________________ > aixtoolbox-list mailing list > aix...@ww... > http://www-124.ibm.com/developerworks/oss/mailman/listinfo/aixtoolbox-list > |
From: Philip K W. <pk...@us...> - 2004-11-24 22:14:03
|
Please try downloading vim 6.0.147-5, which was just updated the other day to include a fix for this issue. You can get it from the following location: ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/vim/ -- Philip K. Warren pk...@us... Phone: 512.838.8924 T/L 678.8924 aix...@ww... wrote on 11/24/2004 12:32:23 PM: > I'm seeing the same issue on a few of my 5200-03 boxes, but not all. > Even though I get the error, my editing operations succeed. > _______________________________________________ > aixtoolbox-list mailing list > aix...@ww... > http://www-124.ibm.com/developerworks/oss/mailman/listinfo/aixtoolbox-list |
From: Kiran N. M. <kir...@ya...> - 2004-11-26 13:39:22
|
--- Philip K Warren <pk...@us...> wrote: > Please try downloading vim 6.0.147-5, which was just updated the > other day to include a fix for this issue. Thanks Philip, this worked! However, I don't see gvim in this bundle and vim --version says it's a "Huge Version, without GUI." Is any release schedule about the GUI version known? Thanks. Regards, Kiran __________________________________ Do you Yahoo!? The all-new My Yahoo! - Get yours free! http://my.yahoo.com |
From: David C. <cl...@au...> - 2004-11-29 19:30:49
|
vim is split into different packages depending on whether you want the graphical version or not. You can get gvim in the "vim-X11" package. $ rpm -qa |grep vim vim-enhanced-6.0.147-5 vim-minimal-6.0.147-5 vim-X11-6.0.147-5 vim-common-6.0.147-5 vim-enhanced contains the "Huge version, without GUI" ("vim"). vim-minimal contains the "Tiny version without GUI." ("vi"). vim-X11 contains the "Huge version with GTK GUI." ("gvim"). vim-common has common files required for all of the above packages, and must be installed as a requirement for any of the other three. On Fri, Nov 26, 2004 at 02:39:16AM -0800, Kiran N. Mehta wrote: > --- Philip K Warren <pk...@us...> wrote: > > Please try downloading vim 6.0.147-5, which was just updated the > > other day to include a fix for this issue. > > Thanks Philip, this worked! However, I don't see gvim in this > bundle and vim --version says it's a "Huge Version, without GUI." > Is any release schedule about the GUI version known? Thanks. > > Regards, > Kiran > > _______________________________________________ > aixtoolbox-list mailing list > aix...@ww... > http://www-124.ibm.com/developerworks/oss/mailman/listinfo/aixtoolbox-list -- David Clissold cl...@au... |
From: Kiran N. M. <kir...@ya...> - 2004-11-29 20:56:02
|
--- David Clissold <cl...@au...> wrote: > $ rpm -qa |grep vim > vim-enhanced-6.0.147-5 > vim-minimal-6.0.147-5 > vim-X11-6.0.147-5 > vim-common-6.0.147-5 Thanks David, I do see all four packages listed but I don't see gvim under /opt/freeware/bin the way I do see vim et.al. Regards, Kiran __________________________________ Do you Yahoo!? All your favorites on one personal page Try My Yahoo! http://my.yahoo.com |
From: David C. <cl...@au...> - 2004-11-29 21:13:21
|
You're right; I didn't realize that. It's actually in /usr/bin/X11/gvim, so you will want /usr/bin/X11 in your path. If you are running X applications like xterm (etc) that directory is usually in your path already, but if not you can add it. On Mon, Nov 29, 2004 at 09:55:56AM -0800, Kiran N. Mehta wrote: > --- David Clissold <cl...@au...> wrote: > > $ rpm -qa |grep vim > > vim-enhanced-6.0.147-5 > > vim-minimal-6.0.147-5 > > vim-X11-6.0.147-5 > > vim-common-6.0.147-5 > > Thanks David, I do see all four packages listed but I don't see > gvim under /opt/freeware/bin the way I do see vim et.al. > > Regards, > Kiran -- David Clissold cl...@au... |
From: Kiran N. M. <kir...@ya...> - 2004-11-30 15:27:55
|
--- David Clissold <cl...@au...> wrote: > It's actually in /usr/bin/X11/gvim, Thanks David, this worked. Regards, Kiran Postscript: > so you will want /usr/bin/X11 in your path. If you are > running X applications like xterm (etc) that directory > is usually in your path already, but if not you can add it. Correct. I was trying to locate the executable using vanilla telnet (that is before starting the resource intensive ReflectionX on my laptop) and hence not seeing it. __________________________________ Do you Yahoo!? Yahoo! Mail - You care about security. So do we. http://promotions.yahoo.com/new_mail |