Overview
Comment: | vim: Add of_mutable_file_attributes_t to syntax |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6bfe1f0f90ec8fc22ccab8320a87222c |
User & Date: | js on 2020-06-02 20:29:25 |
Other Links: | manifest | tags |
Context
2020-06-04
| ||
22:01 | zshrc: Add cross() command like in fish check-in: 4a2279477c user: js tags: trunk | |
2020-06-02
| ||
20:29 | vim: Add of_mutable_file_attributes_t to syntax check-in: 6bfe1f0f90 user: js tags: trunk | |
2020-06-01
| ||
09:34 | zshrc: Add fl2git command to export Fossil -> Git check-in: 65f43c9c86 user: js tags: trunk | |
Changes
Modified vim/syntax/objc.vim from [64ed51db8c] to [4f02b6462a].
︙ | ︙ | |||
132 133 134 135 136 137 138 139 140 141 142 143 144 145 | syn keyword objcType of_dimension_t of_mutex_t of_rmutex_t of_rectangle_t syn keyword objcType of_string_encoding_t of_time_interval_t syn keyword objcType of_resolver_result_t of_udp_socket_address_t of_offset_t syn keyword objcType of_socket_t of_spinlock_t syn keyword objcType of_options_parser_option_t of_http_request_method_t syn keyword objcType of_http_request_protocol_version_t of_socket_address_t syn keyword objcType of_file_attribute_key_t of_file_type_t of_file_attributes_t syn keyword objcConstant YES NO TRUE FALSE syn region objcImp start='@implementation' end='@end' transparent syn region objcHeader start='@interface' end='@end' transparent syn match objcSubclass '\(@implementation\|@interface\)\@<=\s*\k\+' display contained containedin=objcImp,objcHeader syn match objcSuperclass '\(@\(implementation\|interface\)\s*\k\+\s*:\)\@<=\s*\k*' display contained containedin=objcImp,objcHeader | > | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | syn keyword objcType of_dimension_t of_mutex_t of_rmutex_t of_rectangle_t syn keyword objcType of_string_encoding_t of_time_interval_t syn keyword objcType of_resolver_result_t of_udp_socket_address_t of_offset_t syn keyword objcType of_socket_t of_spinlock_t syn keyword objcType of_options_parser_option_t of_http_request_method_t syn keyword objcType of_http_request_protocol_version_t of_socket_address_t syn keyword objcType of_file_attribute_key_t of_file_type_t of_file_attributes_t syn keyword objcType of_mutable_file_attributes_t syn keyword objcConstant YES NO TRUE FALSE syn region objcImp start='@implementation' end='@end' transparent syn region objcHeader start='@interface' end='@end' transparent syn match objcSubclass '\(@implementation\|@interface\)\@<=\s*\k\+' display contained containedin=objcImp,objcHeader syn match objcSuperclass '\(@\(implementation\|interface\)\s*\k\+\s*:\)\@<=\s*\k*' display contained containedin=objcImp,objcHeader |
︙ | ︙ |