diff --git a/UltiSnips/markdown.snippets b/UltiSnips/markdown.snippets index 7754974..64cfd90 100644 --- a/UltiSnips/markdown.snippets +++ b/UltiSnips/markdown.snippets @@ -1,5 +1,5 @@ snippet link "Link to something" -[${1:${VISUAL:Text}}](${3:http://schnick.duckdns.org}})$0 +[${1:${VISUAL:Text}}](${3})$0 endsnippet snippet img "Image" @@ -44,4 +44,3 @@ endsnippet snippet ,m "Math equation" A \$\$ $1 \$\$ $0 endsnippet - diff --git a/viml/legacyconf.vim b/viml/legacyconf.vim index 29d66f9..8a3b4e4 100644 --- a/viml/legacyconf.vim +++ b/viml/legacyconf.vim @@ -89,6 +89,8 @@ function! Build() execute 'cargo run' elseif l:filetype == 'S' execute 'make' + elseif l:filetype == 'verilog' + execute 'verilator --binary %' else echo "Unsupported file type: " . l:filetype endif