Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/uga-rosa/denippet.vim

A snippet plugin for Vim/Neovim, powered by TypeScript
https://github.com/uga-rosa/denippet.vim

denops nvim-plugin vim-plugin

Last synced: 17 days ago
JSON representation

A snippet plugin for Vim/Neovim, powered by TypeScript

Awesome Lists containing this project

README

        

[![integration](https://github.com/uga-rosa/denippet.vim/actions/workflows/integration.yml/badge.svg)](https://github.com/uga-rosa/denippet.vim/actions/workflows/integration.yml)

# denippet.vim

Denippet is a Vim/Neovim snippet plugin extended from VSCode's snippets.
Powered by [denops.vim](https://github.com/vim-denops/denops.vim).

See [doc](./doc/denippet.txt) for details.

Click [here](https://zenn.dev/uga_rosa/articles/494805861d774a) to read the introduction article in Japanese.

## Requirements

- [denops.vim](https://github.com/vim-denops/denops.vim)

## Features

- Full JS regular expression support
- Snippets can be defined in json/toml/yaml/TypeScript
- Dynamic snippets using TypeScript functions.
- Nested placeholders
- You can define snippet like `console.log($1${2:, $1})$0`
- Nested snippet expansion
- You can expand snippet even if you already activated other snippet.

## GIF

```toml
[usestate]
prefix = 'usestate'
body = "const [${1:state}, set${1/(.*)/${1:/capitalize}/}] = useState($2)"
```
![useState](https://github.com/uga-rosa/denippet.vim/assets/82267684/b771c997-41ee-45df-ac14-c62780ca1911)

```toml
[if]
prefix = 'if'
body = """
if ($1) {
$0
}\
"""
```
![nested-expand](https://github.com/uga-rosa/denippet.vim/assets/82267684/73c5b6ff-a6af-4877-a674-83d3bd6fe36d)

```typescript
import { TSSnippet } from "https://deno.land/x/[email protected]/loader.ts";
import { fn } from "https://deno.land/x/[email protected]/deps/denops.ts";

export const snippets: Record = {
"autoload function": {
prefix: "fn",
body: async (denops) => {
const path = await fn.expand(denops, "%:p") as string;
const match = path.match(/autoload\/(.+)\.vim$/);
const prefix = match ? match[1].replaceAll("/", "#") + "#" : "";
return [
`function ${prefix}$1($2) abort`,
"\t$0",
"endfunction",
];
},
},
};
```
![autoload-function](https://github.com/uga-rosa/denippet.vim/assets/82267684/463df60e-f1d3-4e7d-acb3-1f4d8e9566d4)