|
Enhanced cj/--arrayify with optional prefix/suffix parameters for flexible formatting:
- prefix: string to prepend (e.g., "[" or "(")
- suffix: string to append (e.g., "]" or ")")
Added convenience functions:
- cj/listify: unquoted list (a, b, c)
- cj/arrayify-json: JSON array ["a", "b", "c"]
- cj/arrayify-python: Python list ["a", "b", "c"]
Updated keybindings:
- C-; o l → cj/listify
- C-; o j → cj/arrayify-json
- C-; o p → cj/arrayify-python
- C-; o L → cj/comma-separated-text-to-lines (moved from 'l')
|