1 May 2007 11:35
1 May 2007 20:29
Open in tab - was: Vim.app universal - +clientserver?
Hello, Begin forwarded message: > From: Benji Fisher >>>> I would like to humbly request adding +clientserver to your >>>> precompiled package. >> >>> I would if I could. This is a programming problem, not a >>> configuration option. >> >> Is there another 'mac'-way to replace --remote-tab ? That is, to open >> a file in a new tab in the currently open Vim.app-instance? > > You can open a file in an existing instance of Vim.app using > > $ open -a Vim foo.c > > (I think it is a little more complicated. If the running instance was > started from the Finder or using open, this should work. If it was > started from the command line, I think a new instance is started.) > > That is only half the battle. I do not know how to get vim to > open > a new tab in this situation. Perhaps some autocommand event is > triggered. You might ask on the vim-mac mailing list for further > ideas. As Benji suggested, I'm trying my luck here...(Continue reading)
4 May 2007 19:22
Fix gui_mch_set_winpos()
Hi all,
Try :winpos 0 0 and :winpos 0 22 with current mac vim, then you will
see the problem. The following patch provides a solution, please
review it and tell me what do you think.
Thanks macmania for reporting this.
- jjgod
Index: gui_mac.c
===================================================================
--- gui_mac.c (revision 254)
+++ gui_mac.c (working copy)
<at> <at> -124,6 +124,8 <at> <at>
ControlActionUPP gScrollAction;
ControlActionUPP gScrollDrag;
+static int gTitleBarHeight = 0;
+
/* Keeping track of which scrollbar is being dragged */
static ControlHandle dragged_sb = NULL;
<at> <at> -2984,6 +2986,8 <at> <at>
InstallReceiveHandler((DragReceiveHandlerUPP)receiveHandler,
gui.VimWindow, NULL);
SetPortWindowPort(gui.VimWindow);
+ GetWindowBounds(gui.VimWindow, kWindowTitleBarRgn, &titleRect);
+ gTitleBarHeight = titleRect.bottom - titleRect.top;
(Continue reading)
5 May 2007 10:00
Compilation fails since 7.0.239
Up to 7.0.238, everything compiled fine (on 10.4.9, w/ & w/o the
atsui patch). Ever since then, all I get is:
-----------------
gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_MAC -fno-common -fpascal-strings -Wall
-Wno-unknown-pragmas -mdynamic-no-pic -pipe -I. -Iproto -arch ppc -DMACOS_X_UNIX -no-cpp-precomp
-I/Developer/Headers/FlatCarbon -Os -o objects/buffer.o buffer.c
In file included from /usr/include/mach/host_info.h:62,
from /usr/include/mach/mach_types.h:68,
from /System/Library/Frameworks/IOKit.framework/Headers/IOKitLib.h:38,
from /System/Library/Frameworks/DiskArbitration.framework/Headers/DADisk.h:28,
from /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Files.h:62,
from /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Components.h:32,
from /System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/CarbonCore.h:81,
from /System/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h:21,
from /System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.h:20,
from /Developer/Headers/FlatCarbon/Quickdraw.h:1,
from os_mac.h:26,
from vim.h:304,
from buffer.c:28:
/usr/include/mach/message.h:115: error: stray ‘\14’ in program
/usr/include/mach/message.h:115: error: stray ‘\251’ in program
/usr/include/mach/message.h:115: error: stray ‘\147’ in program
/usr/include/mach/message.h:115: error: stray ‘\147’ in program
/usr/include/mach/message.h:115: error: stray ‘\134’ in program
/usr/include/mach/message.h:115: error: stray ‘\24’ in program
/usr/include/mach/message.h:115: error: stray ‘\165’ in program
/usr/include/mach/message.h:115: error: parse error before ‘aZ’
[snip]
(Continue reading)
5 May 2007 18:37
Vim version 7.1a BETA has been released
Announcing: Vim (Vi IMproved) version 7.1a BETA This is a BETA release of Vim 7.1. It consists of Vim 7.0 plus all patches and updated runtime files. I expect this to be stable, since the patches have been used by many people already. This BETA is mainly to check that the files has been setup properly. It's been almost a year since the last one! Please report every problem you find! It will only be a few days until the 7.1 release, so please take a little time right now to check it out. Once you have installed Vim 7.1a BETA you can find details about the changes since Vim 7.0 with ":help version-7.1". Testing ------- This is a BETA test version. Please give it a good test and report anything that isn't right. That includes a crash but also a typo in the documentation. I will not make an Amiga or OS/2 binary for Vim 7.1a. A Mac version is hopefully available soon on http://macvim.org/ Where to get it --------------- All files can be found below this directory:(Continue reading)
5 May 2007 20:42
Re: Compilation fails since 7.0.239
On 5 May 2007, at 11:00, Andre Berger wrote: > Up to 7.0.238, everything compiled fine (on 10.4.9, w/ & w/o the > atsui patch). Ever since then, all I get is: Earlier today I successfully compiled svn revision 254 w/o the atsui patch. So I would suggest the problems you are seeing are probably not related to vim. > /usr/include/mach/message.h:115: error: stray ‘\14’ in program > /usr/include/mach/message.h:115: error: stray ‘\251’ in program > /usr/include/mach/message.h:115: error: stray ‘\147’ in program > /usr/include/mach/message.h:115: error: stray ‘\147’ in program > /usr/include/mach/message.h:115: error: stray ‘\134’ in program > /usr/include/mach/message.h:115: error: stray ‘\24’ in program > /usr/include/mach/message.h:115: error: stray ‘\165’ in program > /usr/include/mach/message.h:115: error: parse error before ‘aZ’ If I am reading this correctly the stray characters are in /usr/ include/mach/message.h, not in the vim files. Have you checked the file around row 115? does it seem ok? Greetings, Jussi -- -- Jussi Hagman, jhagman@..., iChat/AIM: jussihagman, ICQ: 54004113 Studentbyn 4 D 33, 20540 Åbo, Finland +358 50 56 51 170(Continue reading)
5 May 2007 20:47
RE: Compilation fails since 7.0.239
> /usr/include/mach/message.h:115: error: stray '\14' in program > /usr/include/mach/message.h:115: error: stray '\251' in program > /usr/include/mach/message.h:115: error: stray '\147' in program > /usr/include/mach/message.h:115: error: stray '\147' in program > /usr/include/mach/message.h:115: error: stray '\134' in program > /usr/include/mach/message.h:115: error: stray '\24' in program > /usr/include/mach/message.h:115: error: stray '\165' in program > /usr/include/mach/message.h:115: error: parse error before 'aZ' On my OS X system, /usr/include/mach/message.h is a blank line. Sincerely, --Eljay
5 May 2007 21:42
Re: Compilation fails since 7.0.239
* Jussi Hagman (2007-05-05): > > On 5 May 2007, at 11:00, Andre Berger wrote: > > > Up to 7.0.238, everything compiled fine (on 10.4.9, w/ & w/o the > > atsui patch). Ever since then, all I get is: > > Earlier today I successfully compiled svn revision 254 w/o the atsui patch. So I would suggest > the problems you are seeing are probably not related to vim. > > > /usr/include/mach/message.h:115: error: stray ‘\14’ in program > > /usr/include/mach/message.h:115: error: stray ‘\251’ in program > > /usr/include/mach/message.h:115: error: stray ‘\147’ in program > > /usr/include/mach/message.h:115: error: stray ‘\147’ in program > > /usr/include/mach/message.h:115: error: stray ‘\134’ in program > > /usr/include/mach/message.h:115: error: stray ‘\24’ in program > > /usr/include/mach/message.h:115: error: stray ‘\165’ in program > > /usr/include/mach/message.h:115: error: parse error before ‘aZ’ > > If I am reading this correctly the stray characters are in /usr/include/mach/message.h, not in > the vim files. Have you checked the file around row 115? does it seem ok? No, there's garbage in it. Looks like filesystem corruption to me! -André -- -- May as well be hung for a sheep as a lamb Linux Kernel 2.6/PPC for Linkstation/KuroBox/HG/HS from http://hvkls.dyndns.org(Continue reading)
8 May 2007 16:27
vim from terminal?
hi, I installed the universal binary for vim 7.0.188 downloaded from http://macvim.org/OSX/index.php. It perfectly installed it in /Application, but I'd like to use that version in the Terminal as well (/usr/bin/vim is still version 6.2). How can I do it? thank you -- -- View this message in context: http://www.nabble.com/vim-from-terminal--tf3709941.html#a10376870 Sent from the Vim - Mac mailing list archive at Nabble.com.
8 May 2007 16:37
Re: vim from terminal?
If this doesn't give any clues: http://wiki.macvim.org/wiki/FAQ#head-6bd8d5c8aab5246bbeb93eff40ef6d4a8a0f7559 feel free to ask again. Maybe we can polish that FAQ item a bit. On 5/8/07, jujul <jujulj@...> wrote: > > hi, > > I installed the universal binary for vim 7.0.188 downloaded from > http://macvim.org/OSX/index.php. It perfectly installed it in /Application, > but I'd like to use that version in the Terminal as well (/usr/bin/vim is > still version 6.2). How can I do it? > > thank you > > > -- > View this message in context: http://www.nabble.com/vim-from-terminal--tf3709941.html#a10376870 > Sent from the Vim - Mac mailing list archive at Nabble.com. > > -- -- Panos Laganakos
RSS Feed