22 lines · plain
1" Vim filetype plugin file2" Language: LLVM Assembly3" Maintainer: The LLVM team, http://llvm.org/4 5if exists("b:did_ftplugin")6 finish7endif8let b:did_ftplugin = 19 10setlocal softtabstop=2 shiftwidth=211setlocal expandtab12setlocal comments+=:;13setlocal commentstring=;\ %s14" We treat sequences of the following characters as forming 'keywords', with15" the aim of easing movement around LLVM identifiers:16" * identifier prefixes: '%' and '@' (@-@)17" * all characters where isalpha() returns TRUE (@)18" * the digits 0-9 (48-57)19" * other characters that may form identifiers: '_', '.', '-', '$'20" Comment this out to restore the default behaviour21setlocal iskeyword=%,@-@,@,48-57,_,.,-,$22