From accdab4bf2c270e27883d2e44b7d520dbccb67f5 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Tue, 26 Nov 2013 16:25:22 +0900 Subject: [PATCH] Fix (neosnippet_jump) --- autoload/neosnippet/mappings.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/neosnippet/mappings.vim b/autoload/neosnippet/mappings.vim index 776cd17..243e846 100644 --- a/autoload/neosnippet/mappings.vim +++ b/autoload/neosnippet/mappings.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: mappings.vim " AUTHOR: Shougo Matsushita -" Last Modified: 21 Nov 2013. +" Last Modified: 26 Nov 2013. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -201,7 +201,7 @@ function! neosnippet#mappings#expand_impl() return s:trigger(s:SID_PREFIX().'snippets_expand') endfunction function! neosnippet#mappings#jump_impl() - return s:trigger('neosnippet#jump') + return s:trigger('neosnippet#view#_jump') endfunction let &cpo = s:save_cpo