Package: 3270-common
Description-md5: a1fad8fe7f911b2c01164ff75d013e53
Description-nb: Common files for IBM 3270 emulators and pr3287
 3270-common inneholder filer som har referanser i andre 3270-pakker

Package: 6tunnel
Description-md5: 860002e3477a2706be336a14451bba8e
Description-nb: TCP-proxy for applikasjoner som ikke bruker IPv6
 6tunnel allows you to use services provided by IPv6 hosts with IPv4-only
 applications and vice versa. It can bind to any of your IPv4 or IPv6
 addresses and forward all data to IPv4 or IPv6 host.
 .
 Tunnelling for application that don't speak IPv6. It can be used for
 example as an IPv6-capable IRC proxy in other network.

Package: vim-snipmate
Description-md5: b32d99279c72a1dbfce80f206863cd65
Description-nb: Vim script that implements some of TextMate's snippets features.
 SnipMate.vim aims to be an unobtrusive, concise vim script that implements
 some of TextMate's snippets features in Vim. A snippet is a piece of
 often-typed text that you can insert into your document using a trigger
 word followed by a <tab>.
 .
 For instance, in a C file using the default installation of snipMate.vim,
 if you type "for<tab>" in insert mode, it will expand a typical for loop
 in C:
 .
 for (i = 0; i < count; i++) {
 .
 Project-Id-Version: PACKAGE VERSION
 Report-Msgid-Bugs-To: 
 PO-Revision-Date: 2024-10-03 00:00+0000
 Last-Translator: FULL NAME <EMAIL@ADDRESS>
 Language-Team: LANGUAGE <LL@li.org>
 MIME-Version: 1.0
 Content-Type: text/plain; charset=UTF-8
 Content-Transfer-Encoding: 8bit
 X-Launchpad-Export-Date: 2024-10-03 21:04+0000
 X-Generator: Launchpad (build 6341c735b243a0768c3cb66edf85737937cab327)
 .
 To go to the next item in the loop, simply <tab> over to it; if there is
 repeated code, such as the "i" variable in this example, you can simply
 start typing once it's highlighted and all the matches specified in the
 snippet will be updated.
 .
 snipMate.vim has the following features among others:
 .
  - The syntax of snippets is very similar to TextMate's, allowing easy
    conversion.
  - The position of the snippet is kept transparently (i.e., it does not use
    marks/placeholders inserted into the buffer), allowing you to escape out
    of an incomplete snippet, something particularly useful in Vim.
  - Variables in snippets are updated as-you-type.
  - Snippets can have multiple matches.
  - Snippets can be out of order. For instance, in a do...while loop, the
    condition can be added before the code.