0
votes
1answer
35 views
vi editor query
I use vi quite often to edit files.
Usually I need the file to appear on screen with line numbers.
For this I do
set nu in edit mode.
What a drag! Can I automate this? Is there an …
3
votes
1answer
35 views
What is the most useable VI/VIM plugin for eclipse?
I used to be a huge fan of Intelli-J and there is a fantastic VI plugin for Idea. Now I'm shifting to the Spring Source Tool Suite for my primary IDE and need to find a VI plugin …
1
vote
1answer
32 views
In gVim, is there a way to display a macro list similar to displaying your mappings?
I know there is a way to list mappings via :map (or :imap, :cmap etc.), but I can't find a way to list macros I have stored in my vimrc file (as in let @a = 'blahblah').
Is there …
8
votes
11answers
214 views
Opening files in the same folder as the current file, in vim
In vim, when I have a buffer open, I often need to load another file in the same directory that file is in, but since I don't usually cd into it, the pwd is a parent folder, so I h …
103
votes
53answers
8k views
What are the dark corners of Vim your mom never told you about?
There is a plethora of questions where people talk about common tricks, notably this one.
However, I don't refer to commonly used shortcuts that a noob would find cool. I am talk …
2
votes
6answers
82 views
code completion in vi editor
is there an autocomplete feature for vi. ctrl p looks for keywords already used in the document. but suppose i want a.funcname to automatically show members of object a. is it poss …
4
votes
13answers
394 views
Post your Vim config.
Please share and vote for the best!
Please do not close this. This is a subjective question, but is programming related and can be beneficial to people.
2
votes
6answers
173 views
Make Vim show ALL white spaces as a character
I can't find a way to make Vim show all white spaces as a character.
All I found was about tabs, trailing spaces etc.
0
votes
2answers
26 views
vim regexps from the perl’s point of view: which special characters to escape with backslash
Imagine, we have to construct a regexp in vi/vim. Which special characters we have to escape with backslash?
By special characters I mean the following chars: {}|()-[]+*.^$?
See …
1
vote
0answers
132 views
How to make a global ~/.vimrc? [closed]
Right now, I make everyone do ~/.vimrc and put their settings there.
How can I make a global, default .vimrc for new users?
Edit: I am using CentOS
1
vote
4answers
112 views
Highlight text ranges in Vim
Is it possible to mark a range of text in Vim and change the highlight color of it (to red) than select another range of text and change that color (to green) keeping the previous …
1
vote
5answers
66 views
what’s the syntax for telling VI to read/write a source file with soft-tabs and a specified indentation?
Someplace I saw a snippet of code which told vi to use soft tabs and set the size of a tab. If you put this snippet at the bottom of a source file, then vi would magically use thos …
1
vote
3answers
81 views
Moving a block of code by a tabspace
I am currently visually selecting the code and typing ">" which moves the code by 2 tabs. But I only want to move it by one tab.
Is there any alternate command in VIM to move the …
46
votes
58answers
4k views
What is the best way to force yourself to master vi?
A good while ago, I read an article by the creator of viemu, clearing up a lot of the misconceptions about vi, as well as explaining why it's a good idea (and why it's been very po …
2
votes
2answers
75 views
Using vi how to obtain a number of time a word or pattern occur in the file
How do calculate the number from inside the vim?
