exercism / vimscript

Exercism exercises in Vim script.
https://exercism.org/tracks/vimscript
MIT License
20 stars 24 forks source link

[Track]: Added First Pass at Key Features and Icons. #168

Closed BethanyG closed 1 year ago

BethanyG commented 1 year ago

May or may not need some massaging. Pulled from various resources and articles. Including vim9.txt, Softpanorama, and Effective VimScript, as well as 8thlight.

  1. Extensible: Looking for certain functionality? It can be easily created and deployed.
  2. Deep Vim Integration: Productivity win! Access and manipulate Vim internal data structures and settings with ease.
  3. Expressive syntax: Do a lot with a little. Write compact scripts that are highly readable.
  4. Multi-paradigm: Supports writing imperatively or functionally.
  5. Highly interoperable: Access files, shells, & other programs. All the power of external tooling without leaving Vim.
  6. Event-driven programming: Automatic code execution based on certain events or conditions like file opens or buffer saves.
kotp commented 11 months ago

closes: #92