branch: externals/cape commit 116063b9ee912cbaa7318dbe6597ade4a62b3f59 Author: Mattias Bengtsson <mattias.jc.bengts...@gmail.com> Commit: GitHub <nore...@github.com>
cape-keyword: Fix python match/case keywords (#94) Fix a sloppy typo in #93. --- cape-keyword.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cape-keyword.el b/cape-keyword.el index ec445a2c27..48a8015acc 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?"