vim-snipmate 0.87-7 source package in Ubuntu

Changelog

vim-snipmate (0.87-7) unstable; urgency=low

  * Migrate to dh_vim-addon (Closes: #1015947)
    + Thanks Nicholas Guriev
  * Bump Standards-Version to 4.6.1, no changes needed.
  * Bump debhelper-compat to 13, no changes needed.
  * Bump watch version to 4, no changes needed.
  * d/copyright: Update debian copyright file
  * Add Rules-Requires-Root

 -- Andrea Capriotti <email address hidden>  Sun, 14 Aug 2022 18:18:23 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
vim-snipmate_0.87-7.dsc 1.8 KiB 3f0c63bd25ae2f02ba78083c4a2955929fc268d97622dc741eb984fbdcb3836f
vim-snipmate_0.87.orig.tar.gz 20.1 KiB 4ee93136a378ff3037bd2992f028cb475231d1f589c4c700ebb0e3f9af2cb0de
vim-snipmate_0.87-7.debian.tar.xz 3.0 KiB f78385ce4a5075cac1bdfc5ca31f30dd8c4a651411b69d528fad88061a87f027

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.