diff options
| author | Mattias Bengtsson <mattias.jc.bengtsson@gmail.com> | 2023-09-30 07:37:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-30 07:37:03 +0200 |
| commit | 116063b9ee912cbaa7318dbe6597ade4a62b3f59 (patch) | |
| tree | 9391f5633866b864a12123a73835fdaa68db8d4b /cape-keyword.el | |
| parent | 01af6c1f9fbf19b753ed2a69f9cd716864fa4c8d (diff) | |
cape-keyword: Fix python match/case keywords (#94)
Fix a sloppy typo in #93.
Diffstat (limited to 'cape-keyword.el')
| -rw-r--r-- | cape-keyword.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cape-keyword.el b/cape-keyword.el index ec445a2..48a8015 100644 --- a/cape-keyword.el +++ b/cape-keyword.el @@ -259,9 +259,9 @@ "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" + "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" + "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?" |
