Overview
Comment: | objc.vim: Add OF_ALIGN |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6b95b87e3e88f24a16e47a1b27338fe9 |
User & Date: | js 2023-11-03 00:21:02 |
Context
2023-11-26
| ||
23:20 | setup.sh: Set legacy theme check-in: e75925c32d user: js tags: trunk | |
2023-11-03
| ||
00:21 | objc.vim: Add OF_ALIGN check-in: 6b95b87e3e user: js tags: trunk | |
2023-10-28
| ||
15:21 | Add mpv/input.conf to disable touchpad scrolling check-in: 9ce3c75b36 user: js tags: trunk | |
Changes
Changes to vim/syntax/objc.vim.
︙ | ︙ | |||
33 34 35 36 37 38 39 | syn keyword objcType id Class SEL IMP BOOL objc_property_t Ivar syn keyword objcType nonnull nullable null_unspecified syn keyword objcTypeModifier bycopy in out inout oneway OF_GENERIC OF_INLINE syn keyword objcTypeModifier OF_KINDOF OF_CONST_FUNC OF_NO_RETURN syn keyword objcTypeModifier OF_RETURNS_INNER_POINTER OF_NULLABLE_PROPERTY syn keyword objcTypeModifier OF_NULL_RESETTABLE_PROPERTY OF_UNAVAILABLE syn keyword objcTypeModifier OF_DESIGNATED_INITIALIZER OF_METHOD_FAMILY | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | syn keyword objcType id Class SEL IMP BOOL objc_property_t Ivar syn keyword objcType nonnull nullable null_unspecified syn keyword objcTypeModifier bycopy in out inout oneway OF_GENERIC OF_INLINE syn keyword objcTypeModifier OF_KINDOF OF_CONST_FUNC OF_NO_RETURN syn keyword objcTypeModifier OF_RETURNS_INNER_POINTER OF_NULLABLE_PROPERTY syn keyword objcTypeModifier OF_NULL_RESETTABLE_PROPERTY OF_UNAVAILABLE syn keyword objcTypeModifier OF_DESIGNATED_INITIALIZER OF_METHOD_FAMILY syn keyword objcTypeModifier OF_REQUIRES_SUPER OF_ALIGN OF_ALIGNOF OF_ALIGNAS syn keyword objcTypeModifier OF_SENTINEL OF_SUBCLASSING_RESTRICTED syn keyword objcTypeModifier OF_DIRECT OF_DIRECT_MEMBERS syn keyword objcTypeModifier _Nonnull _Nullable _Null_unspecified __kindof syn keyword objcConstant nil Nil OFNotFound " Match the ObjC #import directive (like C's #include) syn region objcImported display contained start=+"+ skip=+\\\\\|\\"+ end=+"+ |
︙ | ︙ |