0
votes
3answers
51 views

vim, ed or sed multiple search and replace on a given file

I want do a series of "search and replace" on a given file, say file.txt. For example, s/foo/bar/g s/abc/xyz/g s/pqr/lmn/ g/string-delete/d and so on. How shuld I write all these actions in a ...
2
votes
4answers
127 views

how to do vi search and replace within a range in sublime text

I enabled vintage mode on sublime text.. but there are some important vim commands that are lacking.. so let's say I want to do a search and replace like so :10,25s/searchedText/toReplaceText/gc ...
1
vote
1answer
32 views

Do certain characters need to be escaped to be searchable in vim?

I'm having what seems to me bizarre behavior with vim search functionality. As far as I can tell the problem is only with capital 'W'. Typing this character in the search bar as /W will instantly ...
0
votes
1answer
43 views

How to extend block with one character and return to initial block after search?

I'm trying to do a search within a visual block, (from a vimscript). This is my code: aaaaaaaaaaaa a26 text tea atext text a atext 27 12a a11 text 25a aaaaaaaaaaaa Let say my block selection is ...
2
votes
2answers
60 views

How to use vim's 'f' command (find) to find the next tab

I use vim's f command all the time, but I can't figure out how to find special characters (like tabs). E.g., hitting f\t searches for \. I know you can use digraphs in conjunction with the f ...
0
votes
2answers
50 views

Regex (search/replace/add) VIM

I am trying to search and replace in my file. example: [{"pk": 1, "model": "blog.post", "fields": {"text": "asdadasdasd", "genre": 8, "image": "image/test.jpg", "created_at": ...
0
votes
1answer
41 views

How to highlight all matches using a backreference?

I have this: /\(\d\{4}_\d\{2}_\d\{2}\).*\1 to find double dates in the same line. I would like to highlight (as in a normal search) all matches found (not only the first one as in above regex). ...
0
votes
2answers
66 views

How to replace <e9> by é in vim

I want to search and replace "<e9>" by "é". :%s/<e9>/é/g Doesn't works but <e9> seems vim special char / ctrl+v xe9 find only the correct "é" but not "<e9>" If i'm on <e9> ...
0
votes
4answers
41 views

Vim - Capture strings on Search and use on Replace

I have a css selector such as: #page-site-index .toolbar .items { How do I capture the ".toolbar .items" part and use it on Replace part of Vim S&R, so this selector can turn into: ...
0
votes
2answers
52 views

How to change the output message of a search?

I would like to change the output message when a search is done. p.e. when I do a search with a very long regex and nothing has been found vim returns the message E486: Pattern not found: .... very ...
1
vote
3answers
80 views

Regex to search a multi-line field in a text file

I have a text file of logs. In it I am interested in searching a field using some regular expression (I use notepad++ on Win, but even use vim on Ubuntu to parse/read this log text file so either one ...
0
votes
5answers
136 views

Using backspace on VIM search and replace

What character do I use for the newline on Vim search and replace commands? I'm trying to make this: 1, 2, 3, 4, 5 to this: 1, 2, 3, 4 ,5 So i thought of writing something like: :%s/$/\b/g ...
1
vote
3answers
139 views

Search a string in vim and output like grep

How can I search for a particular strings in a text file using VIM then it will output all the lines with the instance of the search string? Please advise. Thanks!
1
vote
3answers
93 views

Find files in vim: how to do a partial filename match with Explore **/*

I've recently discovered the following to find files in Vim. :Explore **/[pattern] Finding files is pretty important to me, and I can't believe I've done without it for 8 years. I can relate to ...
0
votes
0answers
36 views

Hightlight keywords automatically in Vim/Gvim [duplicate]

Possible Duplicate: In vim, how do I highlight TODO: and FIXME:? Is there anyway to highlight certain keywords(Like TODO,BOZO,FIXME,CUSTOM_KEYWORD ..) in Vim/Gvim without explicitly ...
1
vote
1answer
61 views

jEdit Hypersearch like results in VIM?

In jEdit, you can do what is called a hyper search, which lists all of the search results in one pane, and allows you to click on them to jump to that place in the text. Does vim have a similar ...
5
votes
2answers
84 views

pipe search result to other tab/window/buffer in VIM

I found a nice feature of VIM search, i.e. listing all search results and the corresponding line numbers. For example: :g/for.*bar/# Question: Is there an "easy" way to pipe/put this into another ...
0
votes
1answer
50 views

vim search and replace with the effect of reformatting some middle characters

So, so I have this in some file: ABCxxx.yyyDEF and I want to change it to be: HELLOxxx.yyyWORLD Is there a way to do this? / How? I was playing with using wildcards, e.g. ...
2
votes
1answer
57 views

Replacing one line of code with another in vim?

I have one line of code that I need to replace in Vim. I need to replace one line of code errors += 1; to errors++; just to simplify it. When I do :%s/errors += 1;/errors++;/a I get E488:Trailing ...
1
vote
2answers
135 views

VIM - how to paste search register without special characters?

In insert mode, Ctrlr/ (see :h "/) will paste the contents of the search register. However, if you search for a word with * and paste the search register, it will put in the special word boundary ...
2
votes
2answers
87 views

Finding duplicate consecutive strings in vim using vim regex

So let's say I have this in my search file Foo Bez, Bez Foobar Foo I want to search for Bez, Bez by using a regex. This is what I have and I know it's not even remotely correct. ...
3
votes
5answers
156 views

How do I search the open buffers in Vim?

I'd like to search for text in all files currently open in vim and display all results in a single place. There are two problems, I guess: I can't pass the list of open files to :grep/:vim, ...
0
votes
2answers
92 views

VIM search forward and back re-select searched text

I currently am using this to function like in Geany (my old editor) when I select text and press F3: vnoremap <silent> * :<C-U> \let old_reg=getreg('"')<Bar>let ...
2
votes
1answer
771 views

How to include forward slash in vi search & replace

I have a file that contains the string usrbin. I want to search for usrbin and replace it with /usr/bin/. I tried :%s/usrbin/usr/bin/g, but it's showing error E488: Trailing characters. How do I ...
2
votes
2answers
101 views

Do a visual select on search in Vim

What is a simple way to do a visual select on the item I searched for in Vim? I would like to map my n key to not only go to the next search item but also select it. Similarly for p, * and #. ...
1
vote
1answer
167 views

How to escape search patterns or regular expressions in vimscript?

I am writing a vim plugin in vimscript where I need to search another file for the word currently under the cursor using following command: exec 'vimgrep /' . expand('<cword>') . '/g filename' ...
1
vote
4answers
174 views

Search for a regex in vim

Is it possible to search a string that's a regex without escaping all fancy caracters ? Example: I want to find this string in my source file : ^[\d\| *]$ without escaping \, $... I would want to ...
1
vote
1answer
96 views

Grep-ing classes / functions from projects

Is there a way in grep (or vim) to print out a named function/class? i.e. From: class InternalTimer(Sim.Process): def __init__(self, fsm): Sim.Process.__init__(self, ...
1
vote
1answer
68 views

number of occurences of a word in a part of file in vim

Suppose I would like to find the number of occurrences of the word 'asd' in a part of file, eg., from line 21 to line 234. How would I do that in VIM?
0
votes
3answers
111 views

Is there a way to move within a file in Vim similar to Emacs' Isearch?

I've been using Vim for some time and I feel that I'm finally becoming somehow 'fluent' with it, but some of the feature listings, videos and other stuff I've seen (particularly Tim Visher's Vimgolf ...
3
votes
1answer
292 views

vim incremental search stop at end of file

In Vim, when I'm doing an incremental search for "x" by entering /x I then press n to jump to the next occurrence. If I have just matched the last occurrence at the file, when I press n the cursor ...
2
votes
3answers
259 views

gvim search match multiple characters using regex

I am trying to search in gvim for the following pattern: arrayA[*].entryx hoping it would match the following: arrayA[size].entryx arrayA[i].entryx arrayA[index].entryx but it prints ...
1
vote
2answers
94 views

How do I use a map in combination with search matches?

How do I use a map on every match found after a search? I have created various functions which I invoke using a map. I would like to use the maps on every search matches found. If I search for ...
1
vote
2answers
177 views

How do I visual select a calculation backwards?

I would like to visual select backwards a calculation p.e. 200 + 3 This is my text -300 +2 + (9*3) |-------------|* This is text 0,25 + 2.000 + sqrt(15/1.5) ...
1
vote
1answer
58 views

Highlighting and functions

Let say I have this function in menu.vim: function! s:Test() let search = '\d\+' let @/ = search return "normal n" endfunction Why doesn't this highlight the search matches? Only ...
2
votes
2answers
74 views

Capturing repeated expressions with vim

Following problem in vim: I want to capture each match of a subpattern in a diffent match group. An example: for the line: #abcONE# #abcTWO# and the search pattern \(#abc...#\)* I want to ...
2
votes
1answer
180 views

How to go to any buffer directly by searching the contents of all buffers in Vim, like pressing Ctrl+P in Sublime Text?

In Sublime Text 2, when I have a bunch of files opening, I can go to any opened file by 3 following steps: Hit <Ctrl>+P. Enter the pattern to search for. The editor immediately display the ...
3
votes
3answers
771 views

Turn on Ack in MacVIm

I'm new to MacVim and have installed Janus. I can't figure out how to search my project using Ack.vim. For janus it says "Customizations: Janus rebinds command-shift-f () to bring up :Ack." But when ...
2
votes
3answers
226 views

Increment and decrements numbers

I have this text with numbers: My numbers are 04, and 0005 My numbers are 05, and 0006 My numbers are 06, and 0035 My numbers are 07, and 0007 My numbers are 08, and 0009 This is the code I always ...
1
vote
2answers
98 views

Indicator to see from which function a search string comes

I have a number of functions that create search strings @/ I would like to know from which functions comes the search string. Is it possible to add an indicator to the search string that ...
3
votes
2answers
151 views

Substitute all non matching characters between certain columns

I'm trying to substitute all non matching characters in a single line between certain columns (after a search). Example: The search can be everything In example below the search = test The substitute ...
2
votes
3answers
103 views

Substitute certain characters but not the one found in matches

Yesterday I tried to substitute all ( ) in my text but not the one found in matches from a previous search. I couldn't find a good solution. I did it changing one by one. This is my original text: ...
1
vote
1answer
154 views

Search all numbers

I want to highlight all numbers (not single digits!) in VIM: all numbers (wherever in document) with/without "." or "," all numbers (wherever in document) with negative value p.e. 8.20 ...
1
vote
0answers
184 views

Search range of Numbers (using real numbers in the search)

I want to search for a range of numbers (in VIM) but don't know how: example: search numbers > 450,20 search numbers > 1200 (or 1.200) search numbers > 10.000 AND < 1.000.000 search ...
4
votes
2answers
327 views

Vim CommandT- like search for strings

Is there a way in vim to search (grep/ack etc..) for strings in files in a similar fashion like one would do in CommandT? So say that I invoke the search window. Possible matches for the string I ...
4
votes
1answer
273 views

Emacs style highlighting for inc-search in vim

I realize that this question has been posed before on this forum, but I didn't find an answer so here goes.. In Vim, is there a way to enable on-the-fly highlighting for all matches when searching? ...
4
votes
3answers
133 views

Searching nth match in a line in vim

I am editing a wiki file and I want to add a new column in between two columns. | *No* | *Issue* | *File* | *Status* | | 1 | blah | foo | open | | 2 | blah1 | foo1 | close | now between 3rd and ...
3
votes
2answers
273 views

In vim, how do I make a custom word boundary motion?

As I understand, w recognizes word boundaries by splitting text into 3 groups: 1) characters that are specified in the iskeyword setting (alphabetic, digits, and underscore) 2) other non-printable ...
0
votes
1answer
107 views

vim search for \\ not \

I editing a latex file into html and I want to change all \\ with a <br /> -tag. :%s@\\@<br />@g Vim uses the first character after the :%s as delimiter so that not a problem. But I ...
1
vote
4answers
76 views

Use search and replace to move contents outside of curly braced command (Vim)

I have commands like this: \bold{Foo Bar} \bold{Foo Bars} \bold{Foos Bar} .... \bold{Zoo Cars} and I want to turn them into Foo Bar Foo Bars Foos Bar ... Zoo Cars :%s/\bold{*}//gc does not even ...

1 2 3