Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/franckrasolo/luasnip4k.nvim
Neovim plugin providing LuaSnip snippets for Kotlin and for an opinionated selection of Kotlin libraries
https://github.com/franckrasolo/luasnip4k.nvim
http4k kotlin lua luasnip neovim neovim-plugin
Last synced: about 2 months ago
JSON representation
Neovim plugin providing LuaSnip snippets for Kotlin and for an opinionated selection of Kotlin libraries
- Host: GitHub
- URL: https://github.com/franckrasolo/luasnip4k.nvim
- Owner: franckrasolo
- License: mit
- Created: 2024-10-08T19:15:57.000Z (3 months ago)
- Default Branch: trunk
- Last Pushed: 2024-10-21T22:24:42.000Z (2 months ago)
- Last Synced: 2024-10-22T18:36:32.116Z (2 months ago)
- Topics: http4k, kotlin, lua, luasnip, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 173 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LuaSnip snippets for Kotlin and select libraries
![banner](banner.png)
[luasnip4k.nvim](https://github.com/franckrasolo/luasnip4k.nvim) is a Neovim plugin
providing [LuaSnip](https://github.com/L3MON4D3/LuaSnip) snippets for Kotlin and an _opinionated_
selection of Kotlin libraries only.Starting with [http4k](https://www.http4k.org/) and IntelliJ IDEA live templates for Kotlin,
it will eventually cover _some_ of the foundational libraries
of [forkhandles](https://github.com/fork-handles/forkhandles) as the need arises.The initial `http4k` snippets cover the same ground _and_ are functionally identical
to these [live templates](https://github.com/http4k/intellij-settings#how-to-use-the-live-templates)
for IntelliJ IDEA.Of particular note, _**required import statements are automatically inserted**_
if they are not already present in the active Neovim buffer.## 📦 Installation
For [lazy.nvim](https://lazy.folke.io/), simply configure this plugin as follows:
```lua
return {
"franckrasolo/luasnip4k.nvim"
}
```## 🚀 Available Snippets
In all snippets below, the underscore character `_` indicates the position of
the cursor immediately after a snippet is expanded.
IntelliJ IDEA / JetBrains Fleet
> We refer you to JetBrains Fleet's
> [List of Kotlin live templates](https://www.jetbrains.com/help/fleet/live-templates-list-kotlin.html)
> as `luasnip4k.nvim` already supports most of them out of the box.
http4k
### General
| Trigger | Expands to | Description |
| :--------: | ------------------------------------- | -------------------------------------- |
| `fil` | `Filter { next -> { _; next(it) } }` | Template for a request/response filter |
| `hh` | `{ req: Request -> Response(OK)_ }` | Snippet for a request/response handler |### Requests
| Trigger | Expands to | Description |
| :--------: | ------------------------ | -------------------------------- |
| `head` | `Request(HEAD, "/_")` | Template for a `HEAD` request |
| `get` | `Request(GET, "/_")` | Template for a `GET` request |
| `post` | `Request(POST, "/_")` | Template for a `POST` request |
| `put` | `Request(PUT, "/_")` | Template for a `PUT` request |
| `delete` | `Request(DELETE, "/_")` | Template for a `DELETE` request |
| `options` | `Request(OPTIONS, "/_")` | Template for a `OPTIONS` request |
| `trace` | `Request(TRACE, "/_")` | Template for a `TRACE` request |
| `patch` | `Request(PATCH, "/_")` | Template for a `PATCH` request |
| `purge` | `Request(PURGE, "/_")` | Template for a `PURGE` request |### Responses
| Trigger | Expands to | Description |
| :--------: | ------------------------------- | --------------------------------- |
| `100` | `Response(CONTINUE)_` | Snippet for a HTTP `100` response |
| ... | | |
| `202` | `Response(ACCEPTED)_` | Snippet for a HTTP `202` response |
| ... | | |
| `307` | `Response(TEMPORARY_REDIRECT)_` | Snippet for a HTTP `307` response |
| ... | | |
| `401` | `Response(UNAUTHORIZED)_` | Snippet for a HTTP `401` response |
| ... | | |
| `504` | `Response(GATEWAY_TIMEOUT)_` | Snippet for a HTTP `504` response |
| ... | | |