... Putting the branch on forked repository is really simple. Git was desinged to make this simple. Matt can create a fork of MacVim.git (that's how the...
7077
Morel David
dmorel69@...
Apr 1, 2008 7:31 am
... you also have environment.plist for each user in ~/Library/Preferences IIRC David ... --~--~---------~--~----~------------~-------~--~----~ You received...
7078
Ben Schmidt
mail_ben_schmidt@...
Apr 1, 2008 8:16 am
... ~/.MacOSX/Environment.plist, I believe. But any PATH set in this file is usually overridden by the /etc/profile or similar file when you start a shell, so...
7079
Morel David
dmorel69@...
Apr 1, 2008 8:28 am
... Yup. I have CVSIGNORE, MANPATH, RSYNC_RSH and other stuff in there. PATH is duly squashed in /etc/profile David ... ...
7080
Nico Weber
nicolasweber@...
Apr 1, 2008 10:56 am
Hi all, I've written a patch that rotates the vim window 90 degree to the left when you hit the toggle toolbar button in the upper right corner. The idea is...
7081
Ted Pavlic
ted@...
Apr 1, 2008 12:14 pm
As discussed elsewhere, I think you'll be much happier with MacVim: http://code.google.com/p/macvim/ If you'd like, you can alias "gvim" to "mvim"....
7082
aireydc
david.c.airey@...
Apr 1, 2008 2:59 pm
Thank you all, for the kind and informative help.I have resolved my problem. I used vim to create a ~/.profile file (I did not have one) containing the lines: ...
7083
Ben Schmidt
mail_ben_schmidt@...
Apr 1, 2008 3:10 pm
... I expect you know, but it may be worth noting, that this will only work for the one user. In particular, if you sudo vim, you will still run the OS X...
7084
Axel Schlueter
axel@...
Apr 1, 2008 3:26 pm
Hi, I'd like to have a TextMate style project drawer for MacVim. To prevent myself from reinventing the wheel I just wanted to ask if anybody implemented...
7085
Nico Weber
nicolasweber@...
Apr 1, 2008 3:31 pm
Hi Axel, ... there are a few vim plugins that do something similar. For example, there's the project plugin (...
7086
Axel Schlueter
axel@...
Apr 1, 2008 3:44 pm
Hi, ... I tried and used some of them and they are fine when working remotely on another machine, but they kinda lack some style when working on a beautiful...
7087
björn
bjorn.winckler@...
Apr 1, 2008 4:07 pm
... As always, it is very nice to see more developers wanting to work on extending MacVim, but please hear me out before you start working away: The point of a...
7088
björn
bjorn.winckler@...
Apr 1, 2008 4:55 pm
... I think you are right. We could do quite a lot without messing with views inside the window. The reason I started thinking "views in a window" was that...
7089
Matt Tolton
matt@...
Apr 1, 2008 6:44 pm
... I was thinking that the object we handed the plugin would have some kind of addDrawer method. Are you saying we should just give the plugin a reference to...
7090
Matt Tolton
matt@...
Apr 1, 2008 6:53 pm
... Hi, This is one of the plugins that I'd like to see available for MacVim, as the TextMate one is very useful. I will probably be developing something...
7091
aireydc
david.c.airey@...
Apr 1, 2008 7:23 pm
I understand. I have changed my user profile, not the system profile, and even if I'm administrator, those user changes affect only the user. To change all...
7092
björn
bjorn.winckler@...
Apr 1, 2008 7:37 pm
... Hmmm...somehow it seems unnecessary to wrap Cocoa functionality in the "mediator object", but you'll have to decide when and where it is suitable. In this...
7093
Stefan Eletzhofer
stefan.eletzhofer@...
Apr 1, 2008 7:39 pm
Hi, I'd very much like that, too. I've begun to start to wrap my head around the tree controller of cocoa using python. I'm a heavy user of vim, and use the...
7094
Nico Weber
nicolasweber@...
Apr 1, 2008 9:53 pm
Hi, ... Drawers are dead (as in "no longer cool") as of Leopard. What about a sidebar area (as in Leopard's Preview) where plugins could add a view? Perhaps...
7095
björn
bjorn.winckler@...
Apr 1, 2008 10:22 pm
... Yeah, this is how i pictured it at first as well. Once Matt's got something going I might look into this since it is a bit more involved (due to view...
7096
Matt Tolton
matt@...
Apr 1, 2008 10:30 pm
... Ah Mediator is definitely a better name...I was trying to think of something better than Controller. Thanks. ... Hmm...ok. I'll look into this. Matt ...
7097
Ted Pavlic
ted@...
Apr 2, 2008 2:06 am
... Once I got used to it, I found vim's buffer handling much more useful than drawers like these. Of course, they're texty, but they keep my hands on the...
7098
Matt Tolton
matt@...
Apr 2, 2008 2:49 am
... The drawer doesn't replace vim's buffer handling, IMO. Buffer handling is for switching among files you already have open. The drawer helps you...
7099
Matt Tolton
matt@...
Apr 2, 2008 3:31 am
Ok, so I have the basics done. Here is the current plugin protocol: @protocol PlugInAppMediator - (void)addPlugInMenuItem:(NSMenuItem *)menuItem; @end ...
7100
Axel Schlueter
axel@...
Apr 2, 2008 6:50 am
Hi, ... I don't think gui plugins should be limited to just drawers or their own panels and dialogs. Apple itself tries to ditch drawers as a UI concept from...
7101
Nico Weber
nicolasweber@...
Apr 2, 2008 7:05 am
Hi, ... this has been discussed yesterday: http://groups.google.com/group/vim_mac/msg/772a64e6bbcd3a4a Nico ...
7102
Nico Weber
nicolasweber@...
Apr 2, 2008 7:27 am
... A vim expression can return a string, array, dict, or number. If evaluateVimExpression: returns an NSString, each plugin has to include code to parse an...
7103
Matt Tolton
matt@...
Apr 2, 2008 7:54 am
... For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---...
7104
Matt Tolton
matt@...
Apr 2, 2008 9:09 am
... Ok I have poked through the vim source code and I -think- that this is doable. I will work on it if Bjorn approves. ...
7105
brettc
brett.calcott@...
Apr 2, 2008 10:54 am
... I'm new to Mac and Cocoa, so I'm not sure how possible this is, but I wonder whether anyone has considered the following for plugins: Python and Ruby are...