How to Install and Uninstall vim-snipmate Package on Kali Linux

Last updated: May 15,2024

1. Install "vim-snipmate" package

Here is a brief guide to show you how to install vim-snipmate on Kali Linux

$ sudo apt update $ sudo apt install vim-snipmate

2. Uninstall "vim-snipmate" package

This tutorial shows how to uninstall vim-snipmate on Kali Linux:

$ sudo apt remove vim-snipmate $ sudo apt autoclean && sudo apt autoremove

3. Information about the vim-snipmate package on Kali Linux

Package: vim-snipmate
Version: 0.90-2
Installed-Size: 129
Maintainer: Andrea Capriotti
Architecture: all
Depends: vim-addon-mw-utils, vim-tlib, vim (>= 2:8.1.0693-2~) | neovim (>= 0.2.2-1~)
Suggests: vim-snippets
Size: 31536
SHA256: 644ebebffb6de3135f0f91b0493302e5683d0f3b3ee5c4ebeced7ec9a8d23ba3
SHA1: 644675683dfae95493559dd746b685755ae8767c
MD5sum: ccdfb6861b873f530600ddc171798815
Description: 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 .
.
For instance, in a C file using the default installation of snipMate.vim, if
you type "for" 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 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.
Description-md5:
Homepage: https://github.com/msanders/snipmate.vim
Section: editors
Priority: optional
Filename: pool/main/v/vim-snipmate/vim-snipmate_0.90-2_all.deb