-1
votes
1answer
44 views

How to expand number ranges in specific pattern in file using vim script

While search the list, there are threads showing how to expand a visual block of number range. But my requirement is different. While cleaning LaTeX files, I used to get patterns like ...
-1
votes
4answers
115 views

Getting the current row number?

Is there any key mapping that outputs the current row number of the line being edited? Or, even better yet, can we do formulas based on the output of the key mapping? I want to get the row number ...
2
votes
1answer
170 views

Vim syntax highlighting for special comments

Is there a simple way in Vim to extend the syntax highlighting for a language to allow for important comments to stand out? For instance, if a line that starts with // denotes a regular comment in a C ...
3
votes
3answers
134 views

vi sequence number generation

I need to create a file in vi with this pattern. Is there a way to auto generate these lines using the first line run 1 end run 2 end run 3 end run 4 end run 5 end run 6 end I can always do this in ...
1
vote
4answers
82 views

convert var(a,b) to var(b,a) in VI

Is it possible with any command to convert this flux(1,i) flux(2,i) flux(3,i) flux(4,i) flux(5,i) to this in VI? flux(i,1) flux(i,2) flux(i,3) flux(i,4) flux(i,5) In general i want to convert ...
2
votes
1answer
133 views

Vim: toggle comments while keeping indentation?

Current I'm using the EnhancedCommentify plugin for toggling comments, in particular those two commands map <M-c> <plug>Comment map <M-d> <plug>DeComment But the problem is, ...
3
votes
2answers
172 views

What does 's' in visual mode do?

I have downloaded a new version of Tim Pope's surround plugin. I noticed he deprecated 's' in favor of uppercase 'S'. He said this was to prevent interference with a lot of Vim user's muscle memory ...
5
votes
1answer
138 views

How do I expand a range into a list in vimscript?

I'd like to automatically take a visually selected block of text, such as 51-100, and have it expanded into 51,52,53,...,99,100. Is there an easy way to do this in vimscript?
1
vote
1answer
322 views

Tab completion like in Textmate?

I want to be able to use tab completion in Vim like in Textmate. Like this. Running <Tab> should switch between words in the current document, starting with the closest one. Suggestions ...
1
vote
1answer
326 views

using variable and expressions in search and replace command

I am trying to set some key mapping/macros to comment/uncomment blocks of text in my .vimrc but I can't manage to make it work. I define some variables: let g:comment_id='~' autocmd ...
3
votes
3answers
473 views

Is there a command in Vimscript to get the current Operating System?

What the title says. I can think of some hackish ways to do it, but is there a correct way to do this?