Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim-mac · Vim (Vi IMproved) text editor Macintosh list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 13581 - 13610 of 13677   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
13581 Niels Kobschätzki
niels@... Send Email
Feb 12, 2013
7:51 pm
... <MacVim doesn't open windows anymore; no vim-process running> After using Onyx and all cleaned all caches, rebuilding launchd-database - essentially...
13582 björn
bjorn.winckler@... Send Email
Feb 12, 2013
8:42 pm
Very interesting to hear that you managed to work around this issue. I've added your comment at https://code.google.com/p/macvim/issues/detail?id=363 Björn On...
13583 David Gillooly
david.gillooly@... Send Email
Feb 18, 2013
4:38 am
Somehow I have gotten MacVim to capitalize the first word in a new line.I dont want this! I may have played around with some bash script too as iin bash I get...
13584 björn
bjorn.winckler@... Send Email
Feb 19, 2013
8:01 pm
Hi David, Usually when things like this happen the cause is a plugin (although that does not explain why it happens in bash). Moving your customizations out...
13585 David Gillooly
david.gillooly@... Send Email
Feb 20, 2013
1:34 am
... Thanks for the suggestion (s). I will do the other post too. Yes it is strange that the same action shows upo in the mac terminal. When I type in MacVim I...
13586 David Gillooly
david.gillooly@... Send Email
Feb 20, 2013
4:15 am
... Some additional information: I did try this. Issued :set compatible ... No idea where this coming from when the first character is capitalized. -- -- You...
13587 David Gillooly
david.gillooly@... Send Email
Feb 20, 2013
5:20 am
Your suggestion paid off! A week ago I changed my setting preference on Text Expander to capitalize sentences! I had forgotten about this change. ... -- -- You...
13588 Hyrum Tanner
cavendar@... Send Email
Feb 22, 2013
2:03 am
Anyone know a way to have a match found with cmd -t open in a new tab instead of clobbering the file already opened in the tab? -- -- You received this message...
13589 WenMin Tu
shoeme.us@... Send Email
Feb 22, 2013
10:21 am
using visual block mode to select few lines(I tried CTRL+v, v, V, CTRL+q), and I tried to using "i" to insert some chars in front of every selected line, but...
13590 björn
bjorn.winckler@... Send Email
Feb 22, 2013
10:29 am
I think "I" (capital I) is what you're looking for. Björn ... -- -- You received this message from the "vim_mac" maillist. Do not top-post! Type your reply...
13591 WenMin Tu
shoeme.us@... Send Email
Feb 22, 2013
2:29 pm
no, björn, I think u don't get it. capital I or i are both for insertion except they insert at different place. I know this, but what I'm trying to do is...
13592 WenMin Tu
shoeme.us@... Send Email
Feb 22, 2013
2:34 pm
在 2011å¹´12月1日星期四UTC+8上åˆ9æ—¶22分28秒,Drew Yeaton写é“: ... this is great, they should use it in the next snapshot build -- -- You...
13593 David Henderson
dp.chaoswerks@... Send Email
Feb 22, 2013
2:37 pm
... Björn’s advice is correct. In column-wise visual selection, one needs to use shift-i to cause insertion to occur on every line before the cursor. i and...
13594 Barrie Stott
zen146410@... Send Email
Feb 22, 2013
4:00 pm
... In Normal mode type ctrl-v to get visual block mode. Type characters to move the cursor to get to the end of the Visual-Block and the whole block should be...
13595 WenMin Tu
shoeme.us@... Send Email
Feb 22, 2013
4:15 pm
在 2013å¹´2月22日星期五UTC+8下åˆ11æ—¶59分55秒,Barrie写é“: ... oh mama mia. a huge thank u to u, buddy. it works. It just works for the CTRL+v...
13596 Barrie Stott
zen146410@... Send Email
Feb 22, 2013
5:23 pm
... It was my pleasure. No reply needed. Barrie. -- -- You received this message from the "vim_mac" maillist. Do not top-post! Type your reply below the text...
13597 Philip Woods
elzairthesorcerer@... Send Email
Feb 22, 2013
7:52 pm
Currently, my editing set-up is an 177x32 MacVim window and a 176x17 iTerm2 session (for doing shell operations more efficiently). I am using MacVim both...
13598 Jang-hwan Kim
janghwan@... Send Email
Feb 22, 2013
8:45 pm
... Do you mean mapping the `CTRL-W_gf` (Open a new tab page and edit the file name under the cursor) to CMD-t, replacing the original "New-Tab" action MacVim...
13599 Phil Dobbin
phildobbin@... Send Email
Feb 22, 2013
9:58 pm
... I, personally, just map: 'nnoremap <leader>rt :tabnew<cr>' in my vimrc Cheers, Phil... -- -- You received this message from the "vim_mac" maillist. Do not...
13600 Chris Patti
cpatti@... Send Email
Feb 22, 2013
10:17 pm
Hi Bradford; I don't personally mind NERDTree's current behavior, I always found the TextMate file drawer painful to use because you couldn't easily adjust the...
13601 Tim Johnson
tim@... Send Email
Feb 26, 2013
1:51 am
Hello: How can set syntax highlighting for .profile on the mac os 10.7, as I would for .bashrc or .bash_profile? thanks -- Tim tim at tee jay forty nine dot...
13602 Phil Dobbin
phildobbin@... Send Email
Feb 26, 2013
5:46 am
... I use: 'au BufRead,BufNewFile {*.cfg,*.profile,*.log} set ft=syslog' in my vimrc. syslog.vim is a syntax plugin available from the scripts page on:...
13603 Zhiyue Zu
zuzhiyue@... Send Email
Feb 26, 2013
6:11 am
add the line below at the beginning of .bashrc, .profile ....... #vim: set filetype=bash or use autocmd in the vimrc. tell vim when filename is one of ...
13604 Tim Johnson
tim@... Send Email
Feb 26, 2013
4:39 pm
... Thanks for the replies. I have followed both suggestions, and neither worked, even as I could see ft change to syslog or bash. But I noted that from...
13605 Charles Campbell
Charles.E.Campbell@... Send Email
Feb 26, 2013
5:36 pm
... syn on should have enabled syntax highlighting for .profile (with ft == sh). Does this not work? Since you indicated .bashrc, etc; I'm guessing that you're...
13606 Tim Johnson
tim@... Send Email
Feb 26, 2013
7:23 pm
... Yes, as I have indicated above, autocommand with ft=sh gives me syntax highlighting. ... That's a good tip, thanks, but if I change au BufRead,BufNewFile...
13607 Charles Campbell
Charles.E.Campbell@... Send Email
Feb 27, 2013
2:59 pm
... Its because bash isn't a distribution-supported filetype; sh is. Putting "let g:is_bash=1" into your .vimrc tells syntax/sh.vim to do bash-style syntax...
13608 Chris Lott
chris@... Send Email
Feb 27, 2013
6:00 pm
Can anyone help me completely disable arrow keys in any mode in MacVim? No matter what I do the arrow keys still move between windows in normal mode, for...
13609 Chris Schneider
chris@... Send Email
Feb 27, 2013
6:24 pm
Arrow keys moving between windows is weird. Take a look at your mappings. I bet you have something there already. To disable them, a global map should do it: ...
13610 carljv@... Send Email Feb 28, 2013
8:15 pm
Hi, I was wondering if it would be possible to add to the Build section of the Wiki (or somewhere else similarly official) instructions on how to build MacVim...
Messages 13581 - 13610 of 13677   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help