= Vimscript = Note that the language was re-engineered for Vim 9+. For details on the new language, see [[Vim/9Script|Vim9script]] <> ---- == Example == With an interactive `vim(1)` session, try typing: {{{ :echo "Hello, world!" }}} The leading colon (`:`) triggers command-line mode, which exposes traditional [[Ed|ex]] commands ''and'' the Vimscript REPL. ---- == Language == * [[Vim/Script/Functions|Functions]] ---- == See also == [[https://learnvimscriptthehardway.stevelosh.com/|Learn Vimscript the Hard Way]], the definitive reference for Vimscript ---- CategoryRicottone