diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-03-25 11:32:58 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-03-25 11:32:58 -0400 |
commit | aaf2af3e3b0c159a64609c82811662d7253c3a96 (patch) | |
tree | 6483a96d2adabed2f34508a02882ca9d2de22b01 /vim/ftplugin/stap.vim | |
parent | 481963c741b440fec7724426f12b268cfad199b3 (diff) | |
download | systemtap-steved-aaf2af3e3b0c159a64609c82811662d7253c3a96.tar.gz systemtap-steved-aaf2af3e3b0c159a64609c82811662d7253c3a96.tar.xz systemtap-steved-aaf2af3e3b0c159a64609c82811662d7253c3a96.zip |
rebased unwind_branch on top of current master
Diffstat (limited to 'vim/ftplugin/stap.vim')
-rw-r--r-- | vim/ftplugin/stap.vim | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vim/ftplugin/stap.vim b/vim/ftplugin/stap.vim deleted file mode 100644 index de49a4f1..00000000 --- a/vim/ftplugin/stap.vim +++ /dev/null @@ -1,25 +0,0 @@ -" Vim filetype plugin file -" Language: SystemTap -" Maintainer: Josh Stone <joshua.i.stone@intel.com> -" Last Change: 2005 Dec 15 - -" Only do this when not done yet for this buffer -if exists("b:did_ftplugin") - finish -endif - -" Don't load another plugin for this buffer -let b:did_ftplugin = 1 - -set cpo-=C - -let b:undo_ftplugin = "setl cin< fo< com<" - -setlocal cindent - -" Set 'formatoptions' to break comment lines but not other lines, -" and insert the comment leader when hitting <CR> or using "o". -setlocal fo-=t fo+=croql - -" Set 'comments' to format dashed lists in comments. -setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://,:# |