mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 08:29:37 +02:00
SynEdit: Python-HL, add some keywords. Issue #40585
This commit is contained in:
parent
183907b58d
commit
9a0b5f6a68
@ -187,11 +187,13 @@ const
|
||||
// No need to localise keywords!
|
||||
|
||||
// List of keywords
|
||||
KEYWORDCOUNT = 29;
|
||||
KEYWORDCOUNT = 33;
|
||||
KEYWORDSIdents: array [1..KEYWORDCOUNT] of string =
|
||||
(
|
||||
'and',
|
||||
'assert',
|
||||
'async',
|
||||
'await',
|
||||
'break',
|
||||
'class',
|
||||
'continue',
|
||||
@ -210,6 +212,7 @@ const
|
||||
'in',
|
||||
'is',
|
||||
'lambda',
|
||||
'nonlocal',
|
||||
'not',
|
||||
'or',
|
||||
'pass',
|
||||
@ -218,6 +221,7 @@ const
|
||||
'return',
|
||||
'try',
|
||||
'while',
|
||||
'with',
|
||||
'yield'
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user