Tagged Questions
13
votes
2answers
1k views
Vim: Highlight keyword pairs in Ruby (def/end, do/end, etc)
In one of the Eclipse-based editors that I tried out recently (I think it was RubyMine), when a Ruby keyword that either opened or closed a method or block was selected, the corresponding open/close ...
8
votes
1answer
1k views
Vim cursor shape question
I currently use MacVim for a lot of my editor needs but occasionally I need to edit files remotely over ssh. In MacVim the shape of the cursor varies depending on your current mode, i.e. command mode ...
6
votes
2answers
362 views
Vim auto complete
So I know you can get Vim autocompletion with Ctrl-X, Ctrl-O but I'm wondering if you could rework it so it works with just pressing Tab (more like Textmate's snippets), or even just how I could remap ...
4
votes
1answer
62 views
Defining my own command
I'm trying to define my own command in MacVim to turn a c statement or range of statements into comments. So I put this in my vimrc:
command -range Com :<line1>,<line2>s?^.*$?/*&*/?
...
4
votes
9answers
598 views
VIM: highlight all occurrence of a selected word?
How can I highlight all occurrence of a selected word in gvim?
(like notepad++..)
4
votes
3answers
795 views
I need to test something by changing vimrc
However already opened mvim windows do not load changed done to vimrc until I close all mvim windows and start fresh.
Is there a way I can tell existing mvim windows to load new vimrc file without ...
3
votes
1answer
77 views
vim autocommand doesn't run when opening file
I'm using QuickCursor for entering text to forms.
My problem with that is I always have MacVim open, and with hidden enabled, so when I :wq from the temp file QuickCursor make, the buffer stays in ...
2
votes
2answers
54 views
VIM - How do I assign different mappings for a key depending on whether the line is empty?
I want to assign different commands depending on context.
I'm trying to do something like this:
if line is empty:
map x key to y command
else
map x key to z command
2
votes
1answer
95 views
Move lines in Vim
I'm trying to replicate TextMate's move selection command in Vim.
I've come up with this:
map <C-D-Up> ddkP
map <C-D-Down> ddp
vmap <C-D-Up> dkP
vmap <C-D-Down> dp
Single ...
2
votes
1answer
200 views
Can't get my <Insert> key to remap
I'm new to VIM and using the Janus plugin collection on MacVim.
For whatever reason the key is mapped to :help. And I can't figure out how the heck to get it remapped. I want it to remap so that ...
2
votes
2answers
144 views
How do I get a specific file extension to behave as if .html in .vimrc file?
I am using MacVim and have colours set on .html documents. I working on various projects that are using the Sparkview Engine for .Net MVC. These files end in .spark. How do I in my .vimrc file set the ...
2
votes
1answer
519 views
vimrc is not loading when I run mvim
I just switched to using vim, and am working on my vimrc. My problem is MacVim is not loading my vimrc when it opens, I have to explicitly run :source ~/.vimrc for my settings to be applied. Any ideas ...
2
votes
1answer
467 views
Remapping 'wq' to save and close buffer instead of save and quit
Vim newbie here.
when I ':wq' I want it to save and delete the buffer instead of save and quit.
Similarly hitting ':q' would execute ':bd' instead.
Any suggestions? Thanks!
2
votes
1answer
71 views
How can I see the file or directory named passed to Vim from the command line?
I'd like to set up my .vimrc so that NERDTree is open whenever vim (or MacVim) is called from the command line with a directory argument, but closed when vim is called with a file argument. I looked ...
2
votes
1answer
221 views
Disable Vim plugin for certain filetypes
I'd like to disable a plugin for certain filetypes in Vim. I'm a Vim newbie, so take it slow with me :)
I have the autocomplpop plugin, and I really like it. However, if I'm editing a LaTeX file, it ...
2
votes
1answer
1k views
vim indenting a block of code inward and outward
I am using mvim . I am trying to map keys so that I could visually select elements then I could indent the code inward or outward. However while doing outward work after every keystroke one more line ...
1
vote
1answer
44 views
MacVim command + $KEY shortcuts & behavior in GVIM under Ubuntu
I have been using MacVim & have gotten used to it but my main development computers are all Linux(Ubuntu)
I'd like MacVim like shortcuts and behavior
I know you can get windows like behavior ...
1
vote
1answer
37 views
How do I get NERDCommenter to add comments in a particular column?
NERDCommenter works like this by default:
//level1
//level2
//level3
How do I get to work like this?
//level1
// level2
// level3
1
vote
2answers
70 views
highlight sub-match in vim
I'm trying to figure out how to highlight a specific portion of a match in vim.
Given the following example rule (taken from the coffeescript syntax file source):
syn match coffeeExtendedOp ...
1
vote
3answers
59 views
Mapping a command with another command in vim
Just trying to remap the command to open bufferexplorer (\be) with the shorter version (\b).
My try is:
map <leader>b <ESC><leader>be<CR>
Needless to say, this does not ...
1
vote
2answers
80 views
Displaying Vim variables [closed]
Possible Duplicate:
Get current value of a setting in Vim
I know that you can use :set to change Vim settings and that you can set up a configuration file ~/.vimrc but I'm running into some ...
1
vote
1answer
168 views
No syntax highlighting after session restore in terminal
I'm using Mac Lion 10.7.1, MacVim Snapshot 61, Vim version 7.3
I want to save the session on quit and restore the last session on Vim start without any arguments.
So I added this code in my .vimrc ...
1
vote
2answers
228 views
Matchit not working
I am using Macvim 7.3 snapshot 57. I can't seem to get matchit to work in any of my files.
I press % on an opening tag. It doesn't take me to the closing tag...
My vimrc file:
" Pathogen settings
...
1
vote
1answer
225 views
How to define my own highlight colors to use with matchadd() in vim?
I recently found this little piece of code for my .vimrc
if has("autocmd")
" Highlight TODO, FIXME, NOTE, etc.
if v:version > 701
autocmd Syntax * call matchadd('Todo', ...
1
vote
3answers
211 views
MacVim remember my old settings
I have deleted my old .vimrc and .vim to configure vim from scratch. I have done it. But MacVim remembers my old settings, e.g. maps. Does it cache settings and plugins somewhere?
1
vote
1answer
584 views
How to config MacVim to support command/control key + arrow key to switch between windows?
here is the config file of my vimrc, but it doesn't work on my mac ,
"ctrl + left
imap <silent> <C-left> <esc><C-W><left>
vmap <silent> <C-left> ...
1
vote
3answers
193 views
How can I escape the % and # characters in a Vim command?
I'm using Ack (https://github.com/mileszs/ack.vim) with the --literal flag to search through projects in Vim. I noticed that whenever I search for a string with the % or # characters, the search ...
1
vote
7answers
1k views
VIM: problem with arrow keys in insert mode in mac terminal.app
I've installed the latest vim using homebrew and also installed mac-vim from the google code homepage.
in mac-vim everything works fine. but when I run vim in terminal.app in mac and go to insert mode ...
0
votes
1answer
33 views
Removing tab colouring in MacVim
I am new to using Vim/MacVim environments and under a pre-existing configuration handed to me by a friend (sort of a newbie-starter-kit), there is a marked tab character which has not been followed ...
0
votes
1answer
100 views
vim make arrow keys work like most normal programs
I recently found VIM and started using it. I found the arrows and backspace to be flawed.
so I did this to the backspace
set backspace+=indent,eol,start
how can this be done to the arrow key to ...
0
votes
1answer
38 views
Ctrl + S is not working as a horizontal split in VIM when using CommandT
I've been tweaking my ~/.vim quite a lot lately, and it seems that I broke something.
I'm using the CommandT plugin, which when the search is open allows for the following:
enter - open the file in ...
0
votes
1answer
56 views
Vim can't indent (>>) lines, if first character starts with a #
Vim can't indent (>>) lines, if line starts with a #.
The problem is evident in all file types. I tried disabling smartindent in vimrc. But still no go.
Any ideas?
0
votes
3answers
60 views
Preventing a plugin from remapping a key in vim
I have a bunch of plugins installed for vim, and one of them is breaking the dw command. I'm not sure which one it is though. Basically dw is now deleting everything up through the next bit of ...
0
votes
1answer
147 views
Debugging Vim PlugIn Loading
I am using MacVim on OSX 10.6 and I started getting a strange error message when I open certain files and directories with vim in the terminal. The vim command is just a symlink to the mvim script ...
0
votes
1answer
98 views
Vim - Backspace moves cursor
When in select mode (used mouse to select some text) if I delete a chunk of text with the backspace the postion of the cursor moves backwards a few places which is very annoying. I know I should ...
0
votes
1answer
111 views
coffescript custom folding
For "standard" JavaScript, I have this custom folding function which I like a lot:
function! JavaScriptFold()
setl foldmethod=syntax
setl foldlevelstart=1
set fillchars=fold:\
syn ...
0
votes
2answers
283 views
Function keys replacement for vim in a mac?
I would like to know which keys (or keystrokes) would you use to replace the function keys for command mapping. I'm using vim in a macbook pro and the function keys are used for some ...
0
votes
1answer
162 views
how to launch chrome/chromium from vim?
I'm looking for a shortcut in vim that would launch chrome/chromium and have it always open the same local file ?
ps: on ubuntu
0
votes
1answer
185 views
How to set .vimrc for c programs?
How should I set up my .vimrc so that macvim will set my tab to 4 spaces for c programs?
0
votes
1answer
304 views
project.vim and commands using the shift key
I'm trying to get up and running using project.vim but for some reason, none of the keybinding requiring a capital letter seem to be working.
For example \C, which should create new project fold ...