blob: 956b002ecd09d1ae4d727201b344d0c870c06f52 [file] [log] [blame]
Bram Moolenaarbf884932013-04-05 22:26:15 +02001" Vim filetype plugin file
2" Language: ABAP
3" Author: Steven Oliver <oliver.steven@gmail.com>
4" Copyright: Copyright (c) 2013 Steven Oliver
5" License: You may redistribute this under the same terms as Vim itself
6" --------------------------------------------------------------------------
7
8" Only do this when not done yet for this buffer
9if (exists("b:did_ftplugin"))
10 finish
11endif
12let b:did_ftplugin = 1
13
14let s:cpo_save = &cpo
15set cpo&vim
16
17setlocal softtabstop=2 shiftwidth=2
18setlocal suffixesadd=.abap
19
20" Windows allows you to filter the open file dialog
21if has("gui_win32") && !exists("b:browsefilter")
22 let b:browsefilter = "ABAP Source Files (*.abap)\t*.abap\n" .
23 \ "All Files (*.*)\t*.*\n"
24endif
25
26let &cpo = s:cpo_save
27unlet s:cpo_save
28
29" vim: set sw=4 sts=4 et tw=80 :