summaryrefslogtreecommitdiff
path: root/editors/parinfer-rust/files (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-01-18editors/parinfer-rust: Update to latest git snapshotAshish SHUKLA1-13/+0
- Explicitly enable support for Emacs - Remove the already upstream-ed vim support patch PR: 261221 Approved by: mikael (maintainer)
2020-01-05editors/parinfer-rust: Update to v0.4.2Tobias Kortkamp1-3/+3
Changes: https://github.com/eraserhd/parinfer-rust/blob/v0.4.2/CHANGELOG.adoc
2019-09-21editors/parinfer-rust: Update to v0.4.0Tobias Kortkamp1-11/+0
Changes: https://github.com/eraserhd/parinfer-rust/blob/v0.4.0/CHANGELOG.adoc
2019-01-26editors/parinfer-rust: Fix Kakoune plugin for Lisp and Scheme filesTobias Kortkamp1-0/+11
Add patch to not immediately remove all key hooks after adding them
2019-01-26New port: editors/parinfer-rustTobias Kortkamp1-0/+13
A full-featured, super fast implementation of Shaun Lebron's parinfer. Parinfer is a proof-of-concept editor mode for Lisp programming languages. It simplifies the way we write Lisp by auto-adjusting parens when indentation changes and vice versa. The hope is to make basic Lisp-editing easier for newcomers and experts alike, while still allowing existing plugins like Paredit to satisfy the need for more advanced operations. Parinfer-rust comes with plugins for Kakoune, Vim8, and Neovim. The Rust library can be called from other editors that can load dynamic libraries. This plugin implements "smart" mode. Rather than switching between "paren" mode and "indent" mode, parinfer uses information about how the user is changing the file to decide what to do. WWW: https://github.com/eraserhd/parinfer-rust