in reply to Learn vi/vim in 50 lines and 15 minutes
I have a shell script named 'dbvi' (which filters the input before sending it to dbaccess or elsewhere), and when the cursor is in any block delimited by braces, it sends the contents of the block to the shell script, and the results appear following the current block. E.g. Hitting F1 in the first block produces the next block:map #1 ma/^}/^M:?^{?,.t.^Mk:?^{?+1,.!dbvi^M'a map #2 ma:/^{/;/^}/d^M'a
Hitting F2 in the current block deletes the following block. I did have to mess with terminfo to get the F-keys to work. In the vim version, I open new windows, so I don't have to deal with this block stuff...{ select * from some_table } { <results of query> }
|
---|