Mercurial > vim
view runtime/syntax/avra.vim @ 34684:faf891660963 v9.1.0223
patch 9.1.0223: code duplication in loop to add active text properties
Commit: https://github.com/vim/vim/commit/1134fdd1b369119d0d6992e3120bb5f7c788b697
Author: Dylan Thacker-Smith <dylan.ah.smith@gmail.com>
Date: Thu Mar 28 11:49:46 2024 +0100
patch 9.1.0223: code duplication in loop to add active text properties
Problem: There are two dense conditions with duplication that needs to
be kept in sync between the while loop break condition and the
condition to skip certain text properties.
Solution: Refactor the loop by moving while loop conditions into the
body of the while loop so they can be shared with skip
conditions. `break` and an `active` variable are used to
handle the outcome of these merged conditions.
(Dylan Thacker-Smith)
closes: #14307
Signed-off-by: Dylan Thacker-Smith <dylan.ah.smith@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 28 Mar 2024 12:00:05 +0100 |
parents | bdd7fc1a38c0 |
children |
line wrap: on
line source
" Vim syntax file " Language: AVR Assembler (AVRA) " AVRA Home: http://avra.sourceforge.net/index.html " AVRA Version: 1.3.0 " Last Update: 2016 Oct 7 " Maintainer: Marius Ghita <mhitza@gmail.com> let s:cpo_save = &cpo set cpo&vim syn case ignore syn keyword avraRegister r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 syn keyword avraRegister r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 syn keyword avraRegister r28 r29 r30 r31 syn keyword avraInstr add adc adiw sub subi sbc sbci sbiw and andi or ori eor syn keyword avraInstr com neg sbr cbr inc dec tst clr ser mul muls mulsu fmul syn keyword avraInstr fmuls fmulsu des rjmp ijmp eijmp jmp rcall icall eicall syn keyword avraInstr call ret reti cpse cp cpc cpi sbrc sbrs sbic sbis brbs syn keyword avraInstr brbc breq brne brcs brcc brsh brlo brmi brpl brge brlt syn keyword avraInstr brhs brhc brts brtc brvs brvc brie brid mov movw ldi lds syn keyword avraInstr ld ldd sts st std lpm elpm spm in out push pop xch las syn keyword avraInstr lac lat lsl lsr rol ror asr swap bset bclr sbi cbi bst bld syn keyword avraInstr sec clc sen cln sez clz sei cli ses cls sev clv set clt syn keyword avraInstr seh clh break nop sleep wdr syn keyword avraDirective .byte .cseg .db .def .device .dseg .dw .endmacro .equ syn keyword avraDirective .eseg .exit .include .list .listmac .macro .nolist syn keyword avraDirective .org .set .define .undef .ifdef .ifndef .if .else syn keyword avraDirective .elif .elseif .warning syn keyword avraOperator low high byte2 byte3 byte4 lwrd hwrd page exp2 log2 syn match avraNumericOperator "[-*/+]" syn match avraUnaryOperator "!" syn match avraBinaryOperator "<<\|>>\|<\|<=\|>\|>=\|==\|!=" syn match avraBitwiseOperator "[~&^|]\|&&\|||" syn match avraBinaryNumber "\<0[bB][0-1]*\>" syn match avraHexNumber "\<0[xX][0-9a-fA-F]\+\>" syn match avraDecNumber "\<\(0\|[1-9]\d*\)\>" syn region avraComment start=";" end="$" syn region avraString start="\"" end="\"\|$" syn match avraLabel "^\s*[^; \t]\+:" hi def link avraBinaryNumber avraNumber hi def link avraHexNumber avraNumber hi def link avraDecNumber avraNumber hi def link avraNumericOperator avraOperator hi def link avraUnaryOperator avraOperator hi def link avraBinaryOperator avraOperator hi def link avraBitwiseOperator avraOperator hi def link avraOperator operator hi def link avraComment comment hi def link avraDirective preproc hi def link avraRegister type hi def link avraNumber constant hi def link avraString String hi def link avraInstr keyword hi def link avraLabel label let b:current_syntax = "avra" let &cpo = s:cpo_save unlet s:cpo_save