It would be awesome if you could add in some kind of package manager like sublime text has.
VimR – Refined Vim Experience for OS X
41–50 of 69 posts
Re: VimR – Refined Vim Experience for OS X
#42For those confused, this project uses a fork of macvim that the author himself turned into a framework(osx library) to be used in third party programs. [1] (Kinda how some linux projects used xembed to embed gvim into their apps, eclim also used to have a mode to embed gvim into eclipse) Think of it as a proof of concept implementation for a vim editor based on the macvim framework version. At worst, you don't really…
Re: VimR – Refined Vim Experience for OS X
#43Re: VimR – Refined Vim Experience for OS X
#44Hey, there are some great things in here. I've used it for a bit this morning, and have a couple of comments: 1. I could not figure out how to change the font. I'd love a smaller font. 2. The "show" and "hide" side bar shortcuts should be merged into a single "toggle" shortcut 3. Generally, shortcuts should be more vim-y. If I wanted to do cmd + } I would be using emacs :) 4. could not find a keyboard shortcut to cha…
Re: VimR – Refined Vim Experience for OS X
#45Does anybody know how to really close a tab in vim? When I type t on a file to open it in a tab and then type :q, it looks like ist closed. But when I type :ls I see that its still open.
Re: VimR – Refined Vim Experience for OS X
#46Does anybody know how to really close a tab in vim? When I type t on a file to open it in a tab and then type :q, it looks like ist closed. But when I type :ls I see that its still open.
When you write `:ls` you see all the buffers, not tabs. To remove the buffer you can use `:bd :bdel :bdelete` (see `:help :bdel`) which unloads a buffer and deletes it from the bugger list.
1) in the shell run "vim ."
2) hit "t" on a file
3) type ":bd"
You still have 2 tabs open. One with the file explorer and one with an empty file. Probably because the file explorer has type "nofile" or something, so vim things the buffer you just closed was the last one. Im not sure why its not closing the tab. It might be a bug.
Is there a way to tell vim "When I type :bd close the frickin tab, even if its the last one!"?
Re: VimR – Refined Vim Experience for OS X
#47Doesn't work for me on either macbook or imac, running mavericks.
Re: VimR – Refined Vim Experience for OS X
#48Hey, there are some great things in here. I've used it for a bit this morning, and have a couple of comments: 1. I could not figure out how to change the font. I'd love a smaller font. 2. The "show" and "hide" side bar shortcuts should be merged into a single "toggle" shortcut 3. Generally, shortcuts should be more vim-y. If I wanted to do cmd + } I would be using emacs :) 4. could not find a keyboard shortcut to cha…
Thanks for the feedback! ⌘1 is what you want to focus the sidebar, and will take you back to your buffer. We're working on some improvements to the View menu.