The ex tag has no wiki summary.
4
votes
2answers
83 views
Vim command for “edit a copy of this file”
A pattern I seem to be following right now is:
edit a file until I like it
:w another-file to use it as a starting point for another-file
:e another-file to polish up another-file
Is there an ...
3
votes
1answer
94 views
Vim ex knowing number typed before
I'm making a shortcut that places a # at the front of each line, in the next x lines. x is a number I type before entering the shortcut, like typing 11dd deletes the next eleven lines.
The command is ...
2
votes
4answers
78 views
How can I select part of a line in Vim
I have a line of text that looks like this
foo bar http://www.example.com -> baz
I want yank the url part using ex. Anyone have any ideas on how to do this?
To clarify. I want to do something ...
1
vote
3answers
88 views
Getting text that is on a different line, with ex in Vim
Let's say I have the following text in Vim:
file1.txt
file2.txt
file3.txt
renamed1.txt
renamed2.txt
renamed3.txt
I want a transformation as follows:
file1.txt renamed1.txt
file2.txt renamed2.txt
...
0
votes
1answer
31 views
How to pipe the output of `program` directly to `ex` without saving it as a temp file?
I have a program which print to stdout.
$ ./program > log.txt
$ cat log.txt
[A]
00: efbb bf52 454d 2047 454e 5245 204f 7065
10: 7261 0d0a 5245 4d20 4441 5445 2032 3031
20: 310d 0a52 454d 2044 4953 ...
0
votes
1answer
484 views
Vim: Call an ex command (set) from function?
Drawing a blank on this, and google was not helpful.
Want to make a function like this:
function JakPaste()
let tmp = :set paste?
if tmp == "paste"
set nopaste
...