1
vote
2answers
26 views

Vim command window output closes automatically when the key mapped to :mark<CR> is pressed

So this is what I have nnoremap M :marks<CR> " show marks If I manually type the command and press enter, it shows up fine. Also other commands that does not have "Press Enter or type ...
1
vote
4answers
47 views

How to use prewritten commands in Vim

Sometimes it's boring to rewrite similar commands over and over again, so I want to prewrite all of them, saving them into one customized command and use it once and for all. However, as the new ...
-1
votes
1answer
70 views

VIM: Changing open command for NERDTree [duplicate]

Possible Duplicate: Is there any way to reduce the command in VIM? In vim to open your NERDTree menu you type :NERDTree, but that actually really annoys me, because it's long and mixed ...
1
vote
5answers
146 views

Keep vim always in command line mode with a “:”

Is there a way to make vim stuck in command mode with a : already typed in? In that way, for instance: I would type /fooEnter and the cursor would go to the beginning of the next line containing ...
0
votes
2answers
87 views

Vim: How to create a custom compound command with no timeout?

In Vim there are certain built-in compound commands which have no timeout, for example: g waits forever for the next keystroke. I would like to create my custom compound binding to behave like that. ...
1
vote
3answers
82 views

View only lines less / longer then … characters

I'm using a Sed script to view only lines less then or longer then .. characters. That script doesn't work with both together (when I want to view lines less then p.e. 80 characters and longer then 70 ...
2
votes
2answers
44 views

Escape command in a vimscrimpt

Can anyone help me how to put an <esc> command in a vimscript in order to switch from a insert visual mode (selection mode) to the visual mode? This is my script: if a:type == "'<,'>" ...
0
votes
3answers
192 views

How to disable vim commands in vimrc to secure vim [closed]

I'm trying to disable the 'r' and 'o' commands in vim so people who use it can't open other files from within vim. I tried to use the cmap r <Nop> and cmap o <Nop>, which work but have an ...
1
vote
2answers
147 views

How do I switch between command and insert mode in Vim?

I just started using Vim as an IDE. I was using it as a test editor for a while now, so I didn't have to go to command mode very often. But, since I program in java, I have to go to command mode to ...
1
vote
2answers
49 views

vim method to highlight longer lines

On this page, I've found this pattern /\%>80v.\+ that helps in identifying lines longer than 80 characters by highlighting the characters after column 80. I fail to understand its bit by bit ...
0
votes
0answers
62 views

howto: vimrc change part of file path and execute script

I would like to set up a command to execute launch the php script i am editing. :echo expand('%:p:h') yields: C:\xampp\htdocs\my my localhost path is C:\xampp\htdocs i would like to cut the ...
2
votes
1answer
74 views

Vim: how to make a macro/command that will wait for a key and use it?

For example, I want to temporarily map to fxsj. That is, when I press q, VIM will perform fxsqj. When I press k, VIM will perform fxskj. And so on.
2
votes
1answer
99 views

Executing vim command based on filetype?

I'm trying to have the command let b:match_words='<:>,<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' run every time I open an html file. I tried putting the line ...
0
votes
3answers
101 views

Vim: How to use unix command output as a filename to save to?

I want to use unix command on save. Command return file path. Like below: pseudo code :w !command # I name this command 'mami' $ MAMI_DIR=~/work echo $MAMI_DIR/$(date "+%Y-%m-%d-%H-%M-%S").txt ...
1
vote
1answer
64 views

Add a command into vimrc

I'd like to copy something that I selected with VISUAL mode to X clipboard using xclip. How can I create a mapping in my vimrc that uses the selected text? The command that I'd like to execute is ...
1
vote
1answer
151 views

How to switch from termtrans to !termtrans in vim with solarized colortheme?

When I toggle the colortheme in vim from the dark to the light background, I'd also like to switch the termtrans option to off (and back on again), since I cannot change the background-color of the ...
7
votes
2answers
130 views

I want to open vim and see my “:” commands from a previous session. Is that possible?

When i open a file in vim I usually press, by reflex, the colon to see a list of previous commands, but its empty. How can I get my previous command history.
2
votes
1answer
95 views

Use the :g command in vim with multiple actions

How can I use something like this? :g/^$/kJ Here kJ are two commands, instead of just one (like 'd') My concrete example: I have multiple lines looking like this queryBuilder .append("xyz"); ...
2
votes
3answers
258 views

Deleting few selected characters from a file in vi/vim editor

Below is the command to delete first N characters in vi: :%s/^.\{N}//g However, I don't understand the meaning of ^.\{N}; can anyone explain the meaning of each character by character? How to ...
4
votes
2answers
652 views

How to run a shell command through vimscript?

In my Vim setup I'd like to add a configuration that runs a shell command with a certain mapping. Is there any possible way to do this in Vimscript?
1
vote
2answers
228 views

Vim: multi-command for filtering out blocks of text

This is a follow-up to my question about using multi-line regex in Vim. A quick explanation: I have blocks of text tagged with #tags and separated by a blank line. I want to filter out all blocks ...
-5
votes
1answer
102 views

Regular expression in vi [closed]

I need a regular expression to a string in log file.i use vi to view the log file.I need to find "2012-05-07 time ERROR".This time can be any time.pls help me. ex :- /2012-05-07 * ERROR
0
votes
1answer
71 views

How to get the rails.vim-command :Rview working with .js.erb-views?

I want Rview to jump to .js.erb-views as well. It always says "Can't find file "app/views/examples/foo". The help says: rails-template-types Commands like :Rview use a hardwired list of ...
3
votes
5answers
132 views

Go to the next same word in Vim without using search

Is there a shortcut in Vim for going to the next word which is the same as the word cursor is on? It should work without typing the word with search command /.
1
vote
1answer
114 views

adding “cmap E e” in vimrc breaks plugins

I'm using lots of vim plugins like nerdtree, fugitive etc. recently I was adding some new mappings and some of the plugins broke I traced it down to the following line cmap E e WTF? :) why would ...
1
vote
1answer
154 views

w command in Vim doesn't work properly with Python

I get this weird problem when working in Python in my vim, when I hit w to move or delete for instance it won't move to the proper position. For instance, let's say I have the following: ...
4
votes
4answers
204 views

Vim replace two words with one another

How would one replace all instances of 'foo' with 'bar' and 'bar' with 'foo' in vim?
3
votes
2answers
198 views

Vim - Filter ONLY several words through external command :{Visual} ! titlecase

I'd like to use an external perl or python script to change a selection of text in vim into title case. Please visit wikipedia for the meaning of title case. As a user of these scripts you can select ...
2
votes
2answers
150 views

Display Vim intermediate commands

In vimtutor Lesson 2.1: DELETION COMMANDS, there is a note after the #4 item: The letter d will appear on the last line of the screen as you type it. Vim is waiting for you to type w. If you see ...
6
votes
3answers
446 views

Alternatives to using arrows when accessing vi command history

In vi/vim, when you execute commands or searches they get added to a list of previous commands. And, just like in shell, they can be retrieved via the up or down arrow keys. These are very ...
2
votes
2answers
92 views

Command Explanation [duplicate]

Possible Duplicate: How does the vim “write with sudo” trick work? Many times I have found myself in a condition where I end up editing file in vi editor for which I don't have ...
2
votes
2answers
520 views

Vim Command Mode

I'm using gVIM which defaults to insert mode. When I press the Esc key (or Ctrl+C) to enter command mode, nothing happens. I've searched for an alternative route to enter command mode. Does anyone ...
0
votes
3answers
73 views

How can I run this command in vim

I have the following command: export TERM='xterm-256color'. How can I run it in vim?
4
votes
2answers
1k views

Create a command shortcut for NERDTree in Vim editor

I'd like to create an abbreviation for NERDTree on the command-line. I find it annoying have to write :NERDTree every time I want to enable it. So I'd like to type :nr or something like that. Is that ...
0
votes
5answers
928 views

Vim command equivalent to TextMate's 'Command+T'/'Go to File'?

I have the directory of a Rails app open in Vim and would like to 'jump' to a particular file through a Vim command. In TextMate I would type 'Command+T' and then the target destination file name. ...
10
votes
2answers
373 views

Why does “d1j” delete two lines in vim?

The d{motion} command seems to work inconsistently: d1j " deletes 2 lines to the bottom d1l " deletes 1 character to the right Is it expected behaviour?
0
votes
1answer
75 views

How to put a normal command and a search command together in a vimscript?

I'm trying without success to put a normal command together with a search command in a function using vimscript: This is my command: d/\S (delete from current cursor position to next "not space" ...
3
votes
3answers
413 views

Abort keystroke sequence?

When using Vim I sometimes find myself midway through entering a key combination and change my mind or realise it's incorrect (I'm still learning). For example I may have typed d, 4 and be about to ...
2
votes
2answers
1k views

Learning Vim: Best way to remove space between words

I'm an experienced developer on the Windows platform and I'm trying to teach myself how to use Vim. I am pretty good with regular expressions and understand the principles of how to use Vim. However, ...
5
votes
2answers
1k views

How do I repeat any command in vim, like “C-x z” in emacs?

In Vim, is there any way to repeat the last command regardless of whether it was an edit or not, and without having the foresight to first record a macro? E.g. say I type ":bn", and want to do it ...
3
votes
3answers
1k views

Vim whole word search - but faster

I know that to search for a whole word in vim you need to type: /\<word\><CR> Now, what I would like to do is to map this behaviour to ? (as I never search backwards, and if needed I ...
4
votes
2answers
923 views

I can't map my command (Apple) key in vim

I'm having some trouble mapping my apple key in vim. I know that 'D' is the mapping symbol for the command button, but it doesn't work! I've tried with: map! <D-s> <Esc>:w<Enter>, ...
31
votes
5answers
8k views

Aliasing a command in vim

Vim is my preferred text editor when I program, and thus I always run into a particularly annoying issue. Frequently, when I quickly need to save the buffer and continue on to some other ...
1
vote
3answers
532 views

Any vim command to enter insert mode after paste?

If I use 'p' to paste, vim will remain at normal mode. Is there a command where I can paste and enter insert mode?
240
votes
3answers
23k views
1
vote
1answer
2k views

How come I get 'E492: Not an editor command' when trying to run :RmVimball in VIM?

So I installed the Command-T VIM plugin but it did not work. In fact it made VIM not work. I installed Ruby 1.8.x like it asked. I followed the install instructions to a tee but nothing. So I tried to ...
27
votes
4answers
7k views

VIM - multiple commands on same line

I've been trying to find something that will let me run multiple commands on the same line in vim, akin to using semicolons to separate commands in *nix systems or & in windows. Is there a way to ...
5
votes
3answers
2k views

What does the :compiler command do in Vim?

I recently found that there is a command in Vim called compiler. You can call it with any common compiler (for example, :compiler gcc, :compiler php, etc.), but it doesn't seem to have any immediate ...
2
votes
2answers
292 views

Open file from complete path under cursor in Vim

If I have a file that contains a complete path for a file, is there a way to highlight the filename (using visual mode) and open the file (preferably in a split screen)? Here is the behavior I would ...
4
votes
2answers
571 views

Vim: Redefine a command

In vim, in my .vimrc, how can I redefine a command (i.e. :e) as something else? I want to redefine :e * as :tabe *.

1 2