Vim Tips Wiki
(Change to TipImported template + severe manual clean)
(Change <tt> to <code>, perhaps also minor tweak.)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=1370
 
|id=1370
 
|previous=1369
 
|previous=1369
 
|next=1373
 
|next=1373
|created=October 26, 2006
+
|created=2006
 
|complexity=intermediate
 
|complexity=intermediate
 
|author=Marian Csontos
 
|author=Marian Csontos
 
|version=5.7
 
|version=5.7
 
|rating=93/24
 
|rating=93/24
  +
|category1=
  +
|category2=
 
}}
 
}}
 
Do you ever wanted to append lines from various sources (or to copy data from some application without any reasonable export method) to one file?
 
Do you ever wanted to append lines from various sources (or to copy data from some application without any reasonable export method) to one file?
Line 34: Line 35:
 
" autowrite and redraw every cca 5s
 
" autowrite and redraw every cca 5s
 
let timer1 += 1
 
let timer1 += 1
if timer1 &gt;= 100
+
if timer1 >= 100
if &amp;modified
+
if &modified
 
write
 
write
 
redraw
 
redraw
Line 47: Line 48:
 
endfunction
 
endfunction
 
</pre>
 
</pre>
  +
  +
==Related scripts==
  +
*{{script|id=3246|text=CaptureClipboard}} contains a greatly enhanced plugin that is based on this tip. It offers feedback on the number of captures, trimming of white space, append as well as prepend not just to the end of the buffer, arbitrary delimiters and many configurable defaults.
   
 
==Comments==
 
==Comments==
Line 53: Line 57:
 
:set autosave
 
:set autosave
 
</pre>
 
</pre>
  +
:The 'autosave' option is in the todo list, but as of Vim 7.3.000 not yet implemented. -- [[User:Inkarkat|Inkarkat]] 13:19, September 20, 2010 (UTC)
   
 
----
 
----
Use <tt>:set paste</tt> to avoid autoindent applying to pasted text, in a terminal.
+
Use <code>:set paste</code> to avoid autoindent applying to pasted text, in a terminal.
  +
 
Also, you may need <code>:set noexpandtab</code> to stop Vim from expanding tabs to spaces.
   
  +
:This is not necessary; the :put command that is used in the function already inserts the text literally. -- [[User:Inkarkat|Inkarkat]] 13:19, September 20, 2010 (UTC)
Also, you may need <tt>:set noexpandtab</tt> to stop Vim from expanding tabs to spaces.
 
   
 
----
 
----

Latest revision as of 06:23, 13 July 2012

Tip 1370 Printable Monobook Previous Next

created 2006 · complexity intermediate · author Marian Csontos · version 5.7


Do you ever wanted to append lines from various sources (or to copy data from some application without any reasonable export method) to one file?

Here is a pretty simple solution for Vim. Just copy all you need to the clipboard and Vim can do the rest.

First you need to start Vim, open desired buffer (named buffer required as script do autosave) and run TrackClipboard function:

:call TrackClipboard('==============================================================')

The function monitors the clipboard; when it is changed, add data to clipboard (or do whatever you want).

function! TrackClipboard(delim)
  let timer1 = 0
  let temp = @*
  while @*!='EOF'
    if temp != @*
      let temp = @*
      $put =a:delim
      $put =temp
    else
      " autowrite and redraw every cca 5s
      let timer1 += 1
      if timer1 >= 100
        if &modified
          write
          redraw
        endif
        let timer1 = 0
      else
        sleep 50ms
      endif
    endif
  endwhile
endfunction

Related scripts[]

  • CaptureClipboard contains a greatly enhanced plugin that is based on this tip. It offers feedback on the number of captures, trimming of white space, append as well as prepend not just to the end of the buffer, arbitrary delimiters and many configurable defaults.

Comments[]

" to automatically save modified buffer, and simplify your function.
:set autosave
The 'autosave' option is in the todo list, but as of Vim 7.3.000 not yet implemented. -- Inkarkat 13:19, September 20, 2010 (UTC)

Use :set paste to avoid autoindent applying to pasted text, in a terminal.

Also, you may need :set noexpandtab to stop Vim from expanding tabs to spaces.

This is not necessary; the :put command that is used in the function already inserts the text literally. -- Inkarkat 13:19, September 20, 2010 (UTC)