diff options
| author | Shachaf Ben-Kiki <shachaf@gmail.com> | 2018-06-16 20:30:40 -0700 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2018-07-05 07:54:28 +1000 |
| commit | 1b9474cd442b19355b991a680fb41f7161b1bca8 (patch) | |
| tree | 0763a5eba5b1e68779fb6a8f57c485c7cf8623ef /rc/core/python.kak | |
| parent | 7abf04babdf9074232a3dac61a66979076558a55 (diff) | |
Fix remaining static_words and spell.kak for the new list syntax
Diffstat (limited to 'rc/core/python.kak')
| -rw-r--r-- | rc/core/python.kak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc/core/python.kak b/rc/core/python.kak index de6aa479..9551ba85 100644 --- a/rc/core/python.kak +++ b/rc/core/python.kak @@ -103,8 +103,8 @@ evaluate-commands %sh{ # Add the language's grammar to the static completion list printf %s\\n "hook global WinSetOption filetype=python %{ - set-option window static_words '${values}:${meta}:${attributes}:${methods}:${exceptions}:${keywords}:${types}:${functions}' - }" | tr '|' ':' + set-option window static_words ${values} ${meta} ${attributes} ${methods} ${exceptions} ${keywords} ${types} ${functions} + }" | tr '|' ' ' # Highlight keywords printf %s " |
