diff options
| author | Maxime Coste <mawww@kakoune.org> | 2020-07-31 15:45:34 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2020-07-31 15:45:34 +1000 |
| commit | 5292990a0d5a37982caa2a22bf30472433811fc1 (patch) | |
| tree | 0f2a15a5859736119be5a3971b3e00562db52b96 /rc/filetype/python.kak | |
| parent | 1c9e460053c0495419fd17a84346f60d48da12b7 (diff) | |
Fix invalid quoting in python.kak
Diffstat (limited to 'rc/filetype/python.kak')
| -rw-r--r-- | rc/filetype/python.kak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc/filetype/python.kak b/rc/filetype/python.kak index db62c8db..b4f79dec 100644 --- a/rc/filetype/python.kak +++ b/rc/filetype/python.kak @@ -158,7 +158,7 @@ define-command -hidden python-indent-on-new-line %< # indent after line ending with : try %{ execute-keys -draft <space> k <a-x> <a-k> :$ <ret> j <a-gt> } # deindent closing brace/bracket when after cursor (for arrays and dictionaries) - try %[ execute-keys -draft <a-x> <a-k> ^\h*[}\]] <ret> gh / [}\]] <ret> m <a-S> 1<a-&> ] + try %< execute-keys -draft <a-x> <a-k> ^\h*[}\]] <ret> gh / [}\]] <ret> m <a-S> 1<a-&> > > > |
