diff options
Diffstat (limited to 'mnv/runtime/indent/sql.mnv')
| -rw-r--r-- | mnv/runtime/indent/sql.mnv | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mnv/runtime/indent/sql.mnv b/mnv/runtime/indent/sql.mnv new file mode 100644 index 0000000000..ebfce325d9 --- /dev/null +++ b/mnv/runtime/indent/sql.mnv @@ -0,0 +1,39 @@ +" MNV indent file loader +" Language: SQL +" Maintainer: David Fishburn <fishburn at ianywhere dot com> +" Last Change: Thu Sep 15 2005 10:27:51 AM +" Version: 1.0 +" Download: http://mnv.sourceforge.net/script.php?script_id=495 + +" Description: Checks for a: +" buffer local variable, +" global variable, +" If the above exist, it will source the type specified. +" If none exist, it will source the default sqlanywhere.mnv file. + + +" Only load this indent file when no other was loaded. +if exists("b:did_indent") + finish +endif + +" Default to the standard MNV distribution file +let filename = 'sqlanywhere' + +" Check for overrides. Buffer variables have the highest priority. +if exists("b:sql_type_override") + " Check the runtimepath to see if the file exists + if globpath(&runtimepath, 'indent/'.b:sql_type_override.'.mnv') != '' + let filename = b:sql_type_override + endif +elseif exists("g:sql_type_default") + if globpath(&runtimepath, 'indent/'.g:sql_type_default.'.mnv') != '' + let filename = g:sql_type_default + endif +endif + +" Source the appropriate file +exec 'runtime indent/'.filename.'.mnv' + + +" mnv:sw=4: |
