Skip to content

idbrii/vim-uniformsnippets

 
 

Repository files navigation

Consistent UltiSnip Snippets

Build Status

This is a fork of honza/vim-snippets that focuses making snippet triggers uniform across all languages.

Current priority is making snippets consistent which will break backwards-compatibility.

For snippets to be useful when switching languages, we should have the same triggers for them:

if:   if without else
ife:  if $1 else $2
else: else ..
wh:   while (cond) ...
sw:   switch (var) ...
fun:  function/method

We generally don't need elseif because it's just else if<Tab>. But for languages that use a single token for elseif, we should have an elseif snippet.

While this repo is still young and has no other contributors, I'm rebasing it on top of honza/vim-snippets.

Contents

  • UltiSnips/*: snippets using UltiSnips format

Snippet engines supporting vim-uniformsnippets

vim-uniformsnippets provides snippets for github.com/SirVer/ultisnips.

Vendor Snippets

Additional library and framework snippets are available for UltiSnips users in the UltiSnips/ directory. These files are removed from the default language namespaces to prevent them from all being loaded automatically. If there is a separate library, framework, or package you would like to support open a pull request!

Additional snippets can be added to the current buffer with the :UltiSnipsAddFiletypes command followed by the snippet name without the "snippets" ending. For example, to add the JavaScript Jasmine snippets, run: :UltiSnipsAddFiletypes javascript-jasmine. To have this snippet loaded everytime a JavaScript file is opened or created you can add the command to your -.vim/ftplugin/javascript.vim file. Another way is to add autocmd FileType js UltiSnipsAddFiletypes javascript-jasmine in your .vimrc.

For more see the UltiSnips docs (:help UltiSnips).

Getting help

If you still have trouble getting this to work, please create a GitHub issue.

Things to consider when contributing

Avoid placeholder text that doesn't add value. Use ${VISUAL} for any trigger that might wrap other code.

Bad:

if (${1:condition}){
  ${0:some code here}
}

Good:

if (${1}) {
  ${2:${VISUAL}}
}

Function arguments and other hints make for good placeholder text (such as Vim's matchall(), matchstr() functions which case hints may be helpful to remember order).

For conditions (while, if ..) and block bodies just use ${N}.

No snippets for oneliners (if else endif on one line).

Open questions:

  • Which policies can we encourage upstream?
  • Discuss at: honza#230

Currently all snippets from UltiSnips have been put into UltiSnips - some work on merging should be done (dropping duplicates etc). Also see engines section above.

For new snippets, also try contributing to vim-snippets!

Related repositories

We also encourage people to maintain sets of snippets for particular use cases so that all users can benefit from them. People can list their snippet repositories here:

Versions / dialects / ..

Language maintainers

The original vim-snippets has maintainers for different languages:

License

Just as the original snipMate plugin, all the snippets are licensed under the terms of the MIT license.

About

A consistent library of snippets

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Snippet 99.1%
  • Other 0.9%