From 281787969cce14a5f540e93504c2a8b39e7c8fb7 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Wed, 23 Jul 2014 09:40:37 -0300 Subject: [PATCH] added import snippet --- UltiSnips/python.snippets | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets index a5b0bef..b50dfca 100644 --- a/UltiSnips/python.snippets +++ b/UltiSnips/python.snippets @@ -17,3 +17,8 @@ endsnippet snippet lint "Start a lint-disable comment" # pylint:disable=${0:lint code} endsnippet + +snippet from "Import a module from another" +from ${1:source} import ${2:module} +$0 +endsnippet