Merge pull request #43 from choptastic/vim-patch

Add vi modelines to files. Ignore vim backup files
This commit is contained in:
Jordan Wilberding 2013-09-17 05:12:02 -07:00
commit 615d788cab
14 changed files with 14 additions and 0 deletions

1
.gitignore vendored
View file

@ -10,5 +10,6 @@ ebin/*
_build _build
erl_crash.dump erl_crash.dump
*.pyc *.pyc
*~
src/ec_semver_parser.peg src/ec_semver_parser.peg

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @author Eric Merritt <ericbmerritt@gmail.com> %%% @author Eric Merritt <ericbmerritt@gmail.com>
%%% @copyright 2011 Erlware, LLC. %%% @copyright 2011 Erlware, LLC.

View file

@ -1,3 +1,4 @@
%% vi:ts=4 sw=4 et
%% @copyright Dale Harvey %% @copyright Dale Harvey
%% @doc Format dates in erlang %% @doc Format dates in erlang
%% %%

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @author Eric Merritt <ericbmerritt@gmail.com> %%% @author Eric Merritt <ericbmerritt@gmail.com>
%%% @copyright 2011 Erlware, LLC. %%% @copyright 2011 Erlware, LLC.

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @author Eric Merritt <ericbmerritt@gmail.com> %%% @author Eric Merritt <ericbmerritt@gmail.com>
%%% @copyright 2011 Erlware, LLC. %%% @copyright 2011 Erlware, LLC.

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2011, Erlware LLC %%% @copyright (C) 2011, Erlware LLC
%%% @doc %%% @doc

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @author Eric Merritt <ericbmerritt@gmail.com> %%% @author Eric Merritt <ericbmerritt@gmail.com>
%%% @copyright 2011 Erlware, LLC. %%% @copyright 2011 Erlware, LLC.

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2011, Erlware LLC %%% @copyright (C) 2011, Erlware LLC
%%% @doc %%% @doc

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @author Eric Merritt <ericbmerritt@gmail.com> %%% @author Eric Merritt <ericbmerritt@gmail.com>
%%% @copyright 2011 Erlware, LLC. %%% @copyright 2011 Erlware, LLC.

View file

@ -1,4 +1,5 @@
%%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*- %%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
%%% vi:ts=4 sw=4 et
%%% The MIT License %%% The MIT License
%%% %%%
%%% Copyright (c) 2007 Stephen Marsh %%% Copyright (c) 2007 Stephen Marsh

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%% Copyright (c) 2008 Robert Virding. All rights reserved. %%% Copyright (c) 2008 Robert Virding. All rights reserved.
%%% %%%
%%% Redistribution and use in source and binary forms, with or without %%% Redistribution and use in source and binary forms, with or without

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
%%%------------------------------------------------------------------- %%%-------------------------------------------------------------------
%%% @copyright (C) 2011, Erlware LLC %%% @copyright (C) 2011, Erlware LLC
%%% @doc %%% @doc

View file

@ -1,3 +1,4 @@
%%% vi:ts=4 sw=4 et
-module(ec_semver_parser). -module(ec_semver_parser).
-export([parse/1,file/1]). -export([parse/1,file/1]).
-compile({nowarn_unused_function,[p/4, p/5, p_eof/0, p_optional/1, p_not/1, p_assert/1, p_seq/1, p_and/1, p_choose/1, p_zero_or_more/1, p_one_or_more/1, p_label/2, p_string/1, p_anything/0, p_charclass/1, p_regexp/1, p_attempt/4, line/1, column/1]}). -compile({nowarn_unused_function,[p/4, p/5, p_eof/0, p_optional/1, p_not/1, p_assert/1, p_seq/1, p_and/1, p_choose/1, p_zero_or_more/1, p_one_or_more/1, p_label/2, p_string/1, p_anything/0, p_charclass/1, p_regexp/1, p_attempt/4, line/1, column/1]}).

View file

@ -1,4 +1,5 @@
%% -*- mode: Erlang; fill-column: 79; comment-column: 70; -*- %% -*- mode: Erlang; fill-column: 79; comment-column: 70; -*-
%% vi:ts=4 sw=4 et
%%%--------------------------------------------------------------------------- %%%---------------------------------------------------------------------------
%%% Permission is hereby granted, free of charge, to any person %%% Permission is hereby granted, free of charge, to any person
%%% obtaining a copy of this software and associated documentation %%% obtaining a copy of this software and associated documentation