Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manaspatil0967/mailwoman
A Postman like non feature-rich plugin for Neovim
https://github.com/manaspatil0967/mailwoman
nvim nvim-plugin postman
Last synced: 3 months ago
JSON representation
A Postman like non feature-rich plugin for Neovim
- Host: GitHub
- URL: https://github.com/manaspatil0967/mailwoman
- Owner: ManasPatil0967
- License: gpl-3.0
- Created: 2024-08-04T07:44:38.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-04T08:12:52.000Z (5 months ago)
- Last Synced: 2024-09-29T06:03:27.367Z (3 months ago)
- Topics: nvim, nvim-plugin, postman
- Language: Lua
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mailwoman
This is a Neovim plugin to send curl requests right from an UI and see the output.# Installation
Using packer:
```lua
use {
'ManasPatil0967/mailwoman'
requires = {
{ 'nvim-lua/plenary.nvim' }
}
}
```
# Keymaps
```vim
nmap mw :lua require('mailwoman').send_request()
```
# Usage
- Press the keymap to open the UI.
- Enter the URL, method, headers and body. For each input, press > to submit and move to the next input.
- At last > will send the request and show the output in a new buffer.
- Press q to close the output buffer. Press s to save the output buffer to a file.