Skip to main content

Syncs Ultisnips snippets to Intelij

Project description

snipsync

PyPI Version Build Status Code Coverage

Syncs your UltiSnips snippets to JetBrain IDE (see blog).

snipsync is based on UltiSnips to parse UltiSnips snippets and transforms them into JetBrains XML LiveTemplate syntax.

Usage

  • JetBrains must not be running during the update because is holds LiveTemplates in memory and saves them to disk at shutdown. So any external changes to LiveTemplates will be overwritten.
# sync Ultisnip snippets based on static configuration
snipsync auto-sync

# sync Ultisnip snippets based on CLI arguments
snipsync sync -c "Python" "~/dev/binx/vim-config/UltiSnips/python.snippets" "~/Library/Application Support/JetBrains/PyCharm2020.3/jba_config/templates/user.xml"

Configuration

Configuration File

  • static configuration allows you to set all relevant parameters via config file
  • if init = no then an existing user.xml LiveTemplate file will only be updated and existing LiveTemplates preserved
  • if init = yes a new user.xml LiveTemplate file will be created. This is the right option, if you want to have only UltiSnips snippet in your user.xml.

Example:

[DEFAULT]
#live_templates_path = ~/Library/Application Support/JetBrains/PyCharm2020.3/jba_config/templates
live_templates_path = ~/xxx
ultisnips_path = ~/dev/binx/vim-config/UltiSnips

[GLOBAL]
init = yes

[SNIP.SHELL]
ultisnips = %(ultisnips_path)s/sh.snippets
live_templates = %(live_templates_path)s/user.xml
live_templates_contexts = ["SHELL_SCRIPT", "Bash"]

[SNIP.PYTHON]
ultisnips = %(ultisnips_path)s/python.snippets
live_templates = %(live_templates_path)s/user.xml
live_templates_contexts = ["Python"]

Configuration Location

the configuration file's default location is:

  • Mac OS X: ~/Library/Application Support/snipsync
  • Mac OS X (POSIX): ~/.snipsync
  • Unix: ~/.config/snipsync
  • Unix (POSIX): ~/.snipsync

Attention: Your configuration paths will change with major JetBrain upgrades

Target Location of JetBrain LiveTemplates

In order to have the generated LiveTemplate user.xml file available in your JetBrains IDE, you need to provide the correct target directory for user defined snippets. This depends on your IDE configuration, i.e. when you have setting sync activated this would be:

If your settings are synchronized through JetBrains IDE Settings Sync plugin, these subfolders are located under jba_config in the configuration directory.

How does it work?

  • Creates/updates a user.xml live template file for intelij IDE from UltiSnip sources.
  • Overwrites existing user.xml.
  • Interprets UltiSnips syntax ${1}/${1:name} as Tabstop (variable to replace) and $1 (without brackets) as Mirror.

Limitations

  • Bespoke user-implemented Python functionality cannot be translated to LiveTemplate format
  • Nested Tabstop's are not translated correctly (but are valid Ultisnips syntax)

Gotchas

  • make sure that Tabstops use always the format: ${1:default}, curly brackets
  • make sure that Mirrors never use curly brackets: $1 instead of ${1} (would be interpreted as Tabstop)

Development

  • additionally, generated xml tags do not result in error, but are being overwritten when JetBrain app closes, so there is no way to extend the JetBrains XML format
  • for development install package locally with: pipenv install -e .
  • lexer.py, text.py, ultisnip.py are used from Ultisnips directly, so no tests are provided here

Changelog

  • 0.2.0 Check for latest JetBrain software to ensure that latest user.xml will be updated
  • 0.1.0 Increase test coverage, update documentation
  • 0.0.9 Inital release

...

BSD 3-Clause License

Copyright (c) 2021, sysid All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

snipsync-0.2.1.tar.gz (21.5 kB view hashes)

Uploaded Source

Built Distribution

snipsync-0.2.1-py3-none-any.whl (23.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page