diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2025-08-07 23:38:28 +0200 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2025-08-07 23:38:28 +0200 |
| commit | 97641dcd1ebca1007badd26b2fb9269b86934c22 (patch) | |
| tree | 5b7ccb6963ea3a957e2aa51f091cd37fccccacb3 | |
| parent | e8e0fc7bf7b2f13a2bf4f21c63eb9c07cbe412a5 (diff) | |
cape-keyword: Add async and await to python keywords (Python 3.7)
| -rw-r--r-- | cape-keyword.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cape-keyword.el b/cape-keyword.el index 12e46cf..bf709f6 100644 --- a/cape-keyword.el +++ b/cape-keyword.el @@ -266,10 +266,10 @@ "in" "infix" "infixl" "infixr" "instance" "let" "module" "newtype" "of" "then" "type" "where") (python-mode ;; https://docs.python.org/3/reference/lexical_analysis.html#keywords - "False" "None" "True" "and" "as" "assert" "break" "case" "class" "continue" - "def" "del" "elif" "else" "except" "exec" "finally" "for" "from" "global" - "if" "import" "in" "is" "lambda" "match" "nonlocal" "not" "or" "pass" - "print" "raise" "return" "try" "while" "with" "yield") + "False" "None" "True" "and" "as" "assert" "async" "await" "break" "case" + "class" "continue" "def" "del" "elif" "else" "except" "exec" "finally" + "for" "from" "global" "if" "import" "in" "is" "lambda" "match" "nonlocal" + "not" "or" "pass" "print" "raise" "return" "try" "while" "with" "yield") (ruby-mode "BEGIN" "END" "alias" "and" "begin" "break" "case" "class" "def" "defined?" "do" "else" "elsif" "end" "ensure" "false" "for" "if" "in" "module" "next" |
