-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add snippet, zencoding, XDebug for PHP and some spell data
- Loading branch information
Showing
8 changed files
with
74 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule XDebug-DBGp-client-for-PHP
added at
2a721e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,11 +76,11 @@ let g:pdv_cfg_CommentSingle = "//" | |
|
||
" Default values | ||
let g:pdv_cfg_Type = "mixed" | ||
let g:pdv_cfg_Package = "" | ||
let g:pdv_cfg_Version = "1.5" | ||
let g:pdv_cfg_Author = "Romain THERRAT <[email protected]" | ||
let g:pdv_cfg_Copyright = "1997-2005 The PHP Group" | ||
let g:pdv_cfg_License = "BSD" | ||
let g:pdv_cfg_Package = "Administrateur-linux.com" | ||
let g:pdv_cfg_Author = "Romain THERRAT <[email protected]>" | ||
let g:pdv_cfg_Copyright = "2012 Romain THERRAT" | ||
let g:pdv_cfg_License = "LGPL http://www.gnu.org/copyleft/lesser.html" | ||
let g:pdv_cfg_Version = "Release: 0.1" | ||
|
||
let g:pdv_cfg_ReturnVal = "void" | ||
|
||
|
@@ -421,10 +421,10 @@ func! PhpDocClass() | |
exe l:txtBOL . g:pdv_cfg_Commentn . "@final" . g:pdv_cfg_EOL | ||
endif | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@package " . g:pdv_cfg_Package . g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@version " . g:pdv_cfg_Version . g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@copyright " . g:pdv_cfg_Copyright . g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@author " . g:pdv_cfg_Author g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@copyright " . g:pdv_cfg_Copyright . g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@license " . g:pdv_cfg_License . g:pdv_cfg_EOL | ||
exe l:txtBOL . g:pdv_cfg_Commentn . "@version " . g:pdv_cfg_Version . g:pdv_cfg_EOL | ||
|
||
" Close the comment block. | ||
exe l:txtBOL . g:pdv_cfg_CommentTail . g:pdv_cfg_EOL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# \item | ||
snippet it | ||
\item ${1} | ||
snippet fsub | ||
\subsection{${1:section name}} % (fold) | ||
\begin{frame} | ||
\frametitle{${3:$1}} | ||
${4} | ||
\end{frame} | ||
% subsection $2 (end) | ||
snippet fsec | ||
\section{${1:section name}} % (fold) | ||
\begin{frame} | ||
\frametitle{${2:$1}} | ||
${4} | ||
\end{frame} | ||
% section $1 (end) | ||
snippet fsubs | ||
\subsubsection{${1:section name}} % (fold) | ||
\begin{frame} | ||
\frametitle{${2:$1}} | ||
${4} | ||
\end{frame} | ||
% subsubsection $1 (end) | ||
snippet frame | ||
\begin{frame} | ||
\frametitle{${1:frame title}} | ||
${2} | ||
\end{frame} | ||
snippet block | ||
\begin{block}{${1:block title}} | ||
${2} | ||
\end{block} | ||
snippet emph | ||
\emph{${1}} | ||
snippet vblock | ||
\begin{block}{${1:block title}} | ||
\scriptsize\verbatiminput{${2}} | ||
\end{block} | ||
snippet script | ||
\scriptsize ${1}\normalsize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters