1
0
mirror of https://github.com/amix/vimrc synced 2025-07-03 22:25:32 +08:00

updated plugins and added eslint goodies

This commit is contained in:
Max Alcala
2016-02-19 10:35:36 -06:00
parent a1deb28314
commit f3143286d3
402 changed files with 14389 additions and 4024 deletions

View File

@ -70,7 +70,7 @@ snippet defma
${0}
end
snippet defmo
defmodule ${1:module_name} do
defmodule ${1:`substitute(vim_snippets#Filename(), '\(_\|^\)\(.\)', '\u\2', 'g')`} do
${0}
end
snippet defp
@ -95,6 +95,8 @@ snippet mdoc
@moduledoc """
${0}
"""
snippet mdocf
@moduledoc false
snippet rec
receive do
${1} ->
@ -123,3 +125,7 @@ snippet try try .. rescue .. end
snippet pry
require IEx; IEx.pry
${0}
snippet qu
quote do
${1}
end