Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shougo/pum.vim
Original popup completion menu framework library
https://github.com/shougo/pum.vim
ddc-vim neovim vim
Last synced: 11 days ago
JSON representation
Original popup completion menu framework library
- Host: GitHub
- URL: https://github.com/shougo/pum.vim
- Owner: Shougo
- License: mit
- Created: 2021-10-03T07:17:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T20:50:25.000Z (6 months ago)
- Last Synced: 2024-05-02T00:33:00.425Z (6 months ago)
- Topics: ddc-vim, neovim, vim
- Language: Vim Script
- Homepage:
- Size: 322 KB
- Stars: 103
- Watchers: 6
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pum.vim
[![Doc](https://img.shields.io/badge/doc-%3Ah%20pum-orange.svg)](doc/pum.txt)
Please read [help](doc/pum.txt) for details.
- [Introduction](#introduction)
- [Install](#install)
- [Configuration](#configuration)
- [Screenshots](#screenshots)## Introduction
pum.vim is the framework library to implement original popup menu completion.
It works both insert mode and command line mode.
## Install
**Note:** pum.vim requires Neovim (0.8.0+ and of course, **latest** is
recommended) or Vim 9.0.1276+.pum.vim detects if "noice.nvim" is installed.
https://github.com/folke/noice.nvim## Configuration
```vim
inoremap call pum#map#insert_relative(+1)
inoremap call pum#map#insert_relative(-1)
inoremap call pum#map#confirm()
inoremap call pum#map#cancel()
inoremap call pum#map#insert_relative_page(+1)
inoremap call pum#map#insert_relative_page(-1)
```## Screenshots