|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if exists("b:did_ftplugin") | finish | endif |
|
|
|
|
|
|
|
|
let b:did_ftplugin = 1 |
|
|
|
|
|
|
|
|
let s:cpo_save = &cpoptions |
|
|
set cpoptions&vim |
|
|
|
|
|
|
|
|
|
|
|
setlocal include=\\<\\cINPUT\\s*= |
|
|
|
|
|
|
|
|
setlocal includeexpr=substitute(v:fname,'.\\{-}=','','') |
|
|
|
|
|
|
|
|
|
|
|
setlocal isfname-=, |
|
|
|
|
|
|
|
|
setlocal comments=:** |
|
|
setlocal commentstring=**\ %s |
|
|
|
|
|
|
|
|
|
|
|
setlocal define=^\\*\\a.*\\c\\(NAME\\\|NSET\\\|ELSET\\)\\s*= |
|
|
|
|
|
|
|
|
setlocal iskeyword+=- |
|
|
|
|
|
let b:undo_ftplugin = "setlocal include< includeexpr< isfname<" |
|
|
\ . " comments< commentstring< define< iskeyword<" |
|
|
|
|
|
if has("folding") |
|
|
|
|
|
setlocal foldexpr=getline(v:lnum)[0]!=\"\*\" |
|
|
setlocal foldmethod=expr |
|
|
let b:undo_ftplugin .= " foldexpr< foldmethod<" |
|
|
endif |
|
|
|
|
|
|
|
|
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
|
|
let b:browsefilter = "Abaqus Input Files (*.inp *.inc)\t*.inp;*.inc\n" . |
|
|
\ "Abaqus Results (*.dat)\t*.dat\n" . |
|
|
\ "Abaqus Messages (*.pre, *.msg, *.sta)\t*.pre;*.msg;*.sta\n" |
|
|
if has("win32") |
|
|
let b:browsefilter .= "All Files (*.*)\t*\n" |
|
|
else |
|
|
let b:browsefilter .= "All Files (*)\t*\n" |
|
|
endif |
|
|
let b:undo_ftplugin .= "|unlet! b:browsefilter" |
|
|
endif |
|
|
|
|
|
|
|
|
if exists("loaded_matchit") && !exists("b:match_words") |
|
|
let b:match_ignorecase = 1 |
|
|
let b:match_words = |
|
|
\ '\*part:\*end\s*part,' . |
|
|
\ '\*assembly:\*end\s*assembly,' . |
|
|
\ '\*instance:\*end\s*instance,' . |
|
|
\ '\*step:\*end\s*step' |
|
|
let b:undo_ftplugin .= "|unlet! b:match_ignorecase b:match_words" |
|
|
endif |
|
|
|
|
|
if !exists("no_plugin_maps") && !exists("no_abaqus_maps") |
|
|
|
|
|
nnoremap <silent><buffer> ]] :call <SID>Abaqus_NextKeyword(1)<CR> |
|
|
nnoremap <silent><buffer> [[ :call <SID>Abaqus_NextKeyword(-1)<CR> |
|
|
function! <SID>Abaqus_NextKeyword(direction) |
|
|
.mark ' |
|
|
if a:direction < 0 |
|
|
let flags = 'b' |
|
|
else |
|
|
let flags = '' |
|
|
endif |
|
|
let l:count = abs(a:direction) * v:count1 |
|
|
while l:count > 0 && search("^\\*\\a", flags) |
|
|
let l:count -= 1 |
|
|
endwhile |
|
|
endfunction |
|
|
|
|
|
" Map \\ to toggle commenting of the current line or range |
|
|
noremap <silent><buffer> <LocalLeader><LocalLeader> |
|
|
\ :call <SID>Abaqus_ToggleComment()<CR>j |
|
|
function! <SID>Abaqus_ToggleComment() range |
|
|
if strpart(getline(a:firstline), 0, 2) == "**" |
|
|
" Un-comment all lines in range |
|
|
silent execute a:firstline . ',' . a:lastline . 's/^\*\*//' |
|
|
else |
|
|
" Comment all lines in range |
|
|
silent execute a:firstline . ',' . a:lastline . 's/^/**/' |
|
|
endif |
|
|
endfunction |
|
|
|
|
|
" Map \s to swap first two comma separated fields |
|
|
noremap <silent><buffer> <LocalLeader>s :call <SID>Abaqus_Swap()<CR> |
|
|
function! <SID>Abaqus_Swap() range |
|
|
silent execute a:firstline . ',' . a:lastline . 's/\([^*,]*\),\([^,]*\)/\2,\1/' |
|
|
endfunction |
|
|
|
|
|
let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]" |
|
|
\ . "|unmap <buffer> <LocalLeader><LocalLeader>" |
|
|
\ . "|unmap <buffer> <LocalLeader>s" |
|
|
endif |
|
|
|
|
|
" Undo must be done in nocompatible mode for <LocalLeader>. |
|
|
let b:undo_ftplugin = "let b:cpo_save = &cpoptions|" |
|
|
\ . "set cpoptions&vim|" |
|
|
\ . b:undo_ftplugin |
|
|
\ . "|let &cpoptions = b:cpo_save" |
|
|
\ . "|unlet b:cpo_save" |
|
|
|
|
|
" Restore saved compatibility options |
|
|
let &cpoptions = s:cpo_save |
|
|
unlet s:cpo_save |
|
|
|