vim-snipmate 0.90-2 source package in Ubuntu

Changelog

vim-snipmate (0.90-2) unstable; urgency=medium

  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Andrea Capriotti <email address hidden>  Wed, 10 Jan 2024 00:59:44 +0100

Upload details

Uploaded by:
Andrea Capriotti
Uploaded to:
Sid
Original maintainer:
Andrea Capriotti
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
vim-snipmate_0.90-2.dsc 1.8 KiB 89d7fed7f64aa7add7738cfe8df1e5cc3949f311bc93fde937d6886500e6a994
vim-snipmate_0.90.orig.tar.gz 32.0 KiB 49e93914edd849f9caa8a4e140423f57b21d2f45acf936996bce12ffa53c4e55
vim-snipmate_0.90-2.debian.tar.xz 3.2 KiB 45b6cd735a66439e49117173ed65e39d93ba4039105080c6878e77d913594e44

Available diffs

No changes file available.

Binary packages built by this source

vim-snipmate: 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++) {
 .
 }
 .
 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.