From 3888654f0c5d350c1bd9a053e4dfaa6f919a501f Mon Sep 17 00:00:00 2001 From: Gregory Leeman Date: Sun, 3 Apr 2022 18:17:04 +0100 Subject: [PATCH] lazygit 2022-04-03 18:17 --- autoload/notecrate.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/notecrate.vim b/autoload/notecrate.vim index 0e97e14..3a6f776 100644 --- a/autoload/notecrate.vim +++ b/autoload/notecrate.vim @@ -215,7 +215,7 @@ function! notecrate#follow_link() " {{{ if l:link['dest'] =~ '^.*\.md$' call notecrate#open_note(l:link['dest']) else - silent execute "open " . l:link['dest'] + silent execute "!open " . l:link['dest'] endif endif endfunction