From 58a8296b2abf2dba9492ef7d6f9b00fdc8aacdab Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Thu, 7 Aug 2014 05:39:12 +0900 Subject: [PATCH] Remove backticks --- autoload/neosnippet/commands.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/neosnippet/commands.vim b/autoload/neosnippet/commands.vim index bf349a1..f80b826 100644 --- a/autoload/neosnippet/commands.vim +++ b/autoload/neosnippet/commands.vim @@ -86,7 +86,7 @@ function! neosnippet#commands#_edit(args) "{{{ endif try - edit `=filename` + execute 'edit' fnameescape(filename) catch /^Vim\%((\a\+)\)\=:E749/ endtry endfunction"}}}