From ca972f345a30a86bea7d0d328d9f6b0b5c36b8be Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Tue, 19 Jan 2016 08:51:43 +0000 Subject: [PATCH] Shorten the neosnippet mark to [ns] `[ns]` communicates that the completion came from neosnippet just as well as `[nsnip]` and is three characters shorter! --- rplugin/python3/deoplete/sources/neosnippet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rplugin/python3/deoplete/sources/neosnippet.py b/rplugin/python3/deoplete/sources/neosnippet.py index 323f16a..e0ad5fd 100644 --- a/rplugin/python3/deoplete/sources/neosnippet.py +++ b/rplugin/python3/deoplete/sources/neosnippet.py @@ -31,7 +31,7 @@ class Source(Base): Base.__init__(self, vim) self.name = 'neosnippet' - self.mark = '[nsnip]' + self.mark = '[ns]' self.rank = 200 def gather_candidates(self, context):