MacVim as (a kind of) Framework, part II

2014-01-26 Thread Tae Won Ha
Hi, guys. Some time ago, I did some code-massaging exercise and extracted a Framework part of MacVim: MacVimFramework target in https://github.com/qvacua/macvim I (finally) found some time and included an absolute minimal proof-of-concept App that uses the Framework: MinimalMacVim target in the

Re: MacVim as (a kind of) Framework

2013-06-14 Thread Eric Weir
On Jun 10, 2013, at 3:48 AM, Tae wrote: > I think that one cannot get the perfect solution—if it exists at all—at the > first time. I like more the iterative approach: first get a working > version—even it is crappy—collect feedback and gradually improve it. When the > direction should be comp

Re: MacVim as (a kind of) Framework

2013-06-10 Thread Tae
> Unfortunately, getting things to compile as a framework is the easy > part I agree. However, it's the first part. :) > how to deal with the fact that Vim is an application and not just a > view will require more thought (I have no good solution, and I've > spent some time thinking on this). Y

Re: MacVim as (a kind of) Framework

2013-06-09 Thread björn
On Tue, Jun 4, 2013 at 9:29 PM, Tae Won Ha wrote: > Hi. > > About a month ago, I started to factor out a framework part from MacVim: > > https://github.com/qvacua/macvim > > I now can build a MacVim app which consists of two parts: a Vim framework > (with vim+runtime and supporting classes like MMV

Re: MacVim as (a kind of) Framework

2013-06-05 Thread Tae
Hi. The crash may have been caused because of the deployment target being 10.8 (well, I'm not sure, maybe I just broke something...). Try to build it on your machine: first do the CC=clang-configure-make-thing and then build the target in App- or Xcode. Tae Dave Land wrote: > Hello, > > Bina

Re: MacVim as (a kind of) Framework

2013-06-04 Thread Tae
> Binary below crashes on launch on Mac OS X 10.7.5. Was it expected to > work? Well, probably no on 10.7... I think that I've set the deployment target to 10.8 (or to default which would be 10.8 on my machine). When I get back from work, I'll check. As for 10.8, I checked that the binary at leas

Re: MacVim as (a kind of) Framework

2013-06-04 Thread Dave Land
Hello, Binary below crashes on launch on Mac OS X 10.7.5. Was it expected to work? I can send you the crash info that pops up if it is of use to you. Dave On Jun 4, 2013, at 12:29 PM, Tae Won Ha wrote: > Hi. > > About a month ago, I started to factor out a framework part from MacVim: > > htt

MacVim as (a kind of) Framework

2013-06-04 Thread Tae Won Ha
Hi. About a month ago, I started to factor out a framework part from MacVim: https://github.com/qvacua/macvim I now can build a MacVim app which consists of two parts: a Vim framework (with vim+runtime and supporting classes like MMVimView) and an app which uses that framework. There are two new