* Added s3 support * Save work * Various bug fixes * Minor cleanup * Minor bug fixes * Fix typo * Update following feedback + minor bug fix * Fix CI * Cleanup and remove bucket entry_type * Make suggested changes * Better aws existence check * Fix typo * refactor: don't bother caching aws executable status --------- Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
15 lines
377 B
VimL
15 lines
377 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syn match oilCreate /^CREATE\( BUCKET\)\? /
|
|
syn match oilMove /^ MOVE /
|
|
syn match oilDelete /^DELETE\( BUCKET\)\? /
|
|
syn match oilCopy /^ COPY /
|
|
syn match oilChange /^CHANGE /
|
|
" Trash operations
|
|
syn match oilRestore /^RESTORE /
|
|
syn match oilPurge /^ PURGE /
|
|
syn match oilTrash /^ TRASH /
|
|
|
|
let b:current_syntax = "oil_preview"
|