... 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...
Nico Weber
nicolasweber@...
Apr 1, 2008 7:15 am
7077
... you also have environment.plist for each user in ~/Library/Preferences IIRC David ... --~--~---------~--~----~------------~-------~--~----~ You received...
Morel David
dmorel69@...
Apr 1, 2008 7:31 am
7078
... ~/.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...
Ben Schmidt
mail_ben_schmidt@...
Apr 1, 2008 8:16 am
7079
... Yup. I have CVSIGNORE, MANPATH, RSYNC_RSH and other stuff in there. PATH is duly squashed in /etc/profile David ... ...
Morel David
dmorel69@...
Apr 1, 2008 8:28 am
7080
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...
Nico Weber
nicolasweber@...
Apr 1, 2008 10:56 am
7081
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"....
Ted Pavlic
ted@...
Apr 1, 2008 12:14 pm
7082
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: ...
aireydc
david.c.airey@...
Apr 1, 2008 2:59 pm
7083
... 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...
Ben Schmidt
mail_ben_schmidt@...
Apr 1, 2008 3:10 pm
7084
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...
Axel Schlueter
axel@...
Apr 1, 2008 3:26 pm
7085
Hi Axel, ... there are a few vim plugins that do something similar. For example, there's the project plugin (...
Nico Weber
nicolasweber@...
Apr 1, 2008 3:31 pm
7086
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...
Axel Schlueter
axel@...
Apr 1, 2008 3:44 pm
7087
... 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...
björn
bjorn.winckler@...
Apr 1, 2008 4:07 pm
7088
... 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...
björn
bjorn.winckler@...
Apr 1, 2008 4:55 pm
7089
... 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...
Matt Tolton
matt@...
Apr 1, 2008 6:44 pm
7090
... 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...
Matt Tolton
matt@...
Apr 1, 2008 6:53 pm
7091
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...
aireydc
david.c.airey@...
Apr 1, 2008 7:23 pm
7092
... 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...
björn
bjorn.winckler@...
Apr 1, 2008 7:37 pm
7093
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...
Stefan Eletzhofer
stefan.eletzhofer@...
Apr 1, 2008 7:39 pm
7094
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...
Nico Weber
nicolasweber@...
Apr 1, 2008 9:53 pm
7095
... 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...
björn
bjorn.winckler@...
Apr 1, 2008 10:22 pm
7096
... 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 ...
Matt Tolton
matt@...
Apr 1, 2008 10:30 pm
7097
... 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...
Ted Pavlic
ted@...
Apr 2, 2008 2:06 am
7098
... 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...
Matt Tolton
matt@...
Apr 2, 2008 2:49 am
7099
Ok, so I have the basics done. Here is the current plugin protocol: @protocol PlugInAppMediator - (void)addPlugInMenuItem:(NSMenuItem *)menuItem; @end ...
Matt Tolton
matt@...
Apr 2, 2008 3:31 am
7100
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...
Axel Schlueter
axel@...
Apr 2, 2008 6:50 am
7101
Hi, ... this has been discussed yesterday: http://groups.google.com/group/vim_mac/msg/772a64e6bbcd3a4a Nico ...
Nico Weber
nicolasweber@...
Apr 2, 2008 7:05 am
7102
... 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...
Nico Weber
nicolasweber@...
Apr 2, 2008 7:27 am
7103
... For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---...
Matt Tolton
matt@...
Apr 2, 2008 7:54 am
7104
... Ok I have poked through the vim source code and I -think- that this is doable. I will work on it if Bjorn approves. ...
Matt Tolton
matt@...
Apr 2, 2008 9:09 am
7105
... 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...