项目作者: jbyuki

项目描述 :
Draw ASCII diagrams in Neovim
高级语言: Lua
项目地址: git://github.com/jbyuki/venn.nvim.git
创建时间: 2021-06-01T15:00:41Z
项目社区:https://github.com/jbyuki/venn.nvim

开源协议:MIT License

下载


venn.nvim

Draw ASCII diagrams in Neovim.

Installation

Install using your prefered method:

Usage

  • set virtualedit=all or set ve=all. This will allow you to freely move the cursor in the buffer. (see help virtualedit).

  • Enter in Visual Block mode using <C-v> or <C-q>. Select the region where the box should be.

  • Invoke :VBox. This will draw a rectangle. In case, it has a width or a height of 1, it will draw a line.

Key Mapping

Using hydra.nvim

Any modal keymapping system would work to get additional keys usable for drawing
and moving selections, since there are many options to draw and move around pieces.

Draw diagrams

A relative complete configuration to draw diagrams with boxes, lines and arrows
in utf can be found
in the hydra wiki
and the more extensive version including explanations
in this repo wiki.

Moving selection

Drawing and text repositioning is a frequent operation on more complex
graphics. While gR allows to overwrite text from left to right, it does not
allow to move (text) selections around.
Using mini.move
works with for now main usability restriction of
no correct fixup after collisions
and an example configuration can be found
in the hydra wiki
and the more extensive version including explanations
in this repo wiki.

Using toggle command

You can map :VBox commands to allow different ways of drawing lines.

Use the following function in your neovim config to toggle drawing lines on HJKL directional keys to allow for faster creation of diagrams:

  1. -- venn.nvim: enable or disable keymappings
  2. function _G.Toggle_venn()
  3. local venn_enabled = vim.inspect(vim.b.venn_enabled)
  4. if venn_enabled == "nil" then
  5. vim.b.venn_enabled = true
  6. vim.cmd[[setlocal ve=all]]
  7. -- draw a line on HJKL keystokes
  8. vim.api.nvim_buf_set_keymap(0, "n", "J", "<C-v>j:VBox<CR>", {noremap = true})
  9. vim.api.nvim_buf_set_keymap(0, "n", "K", "<C-v>k:VBox<CR>", {noremap = true})
  10. vim.api.nvim_buf_set_keymap(0, "n", "L", "<C-v>l:VBox<CR>", {noremap = true})
  11. vim.api.nvim_buf_set_keymap(0, "n", "H", "<C-v>h:VBox<CR>", {noremap = true})
  12. -- draw a box by pressing "f" with visual selection
  13. vim.api.nvim_buf_set_keymap(0, "v", "f", ":VBox<CR>", {noremap = true})
  14. else
  15. vim.cmd[[setlocal ve=]]
  16. vim.api.nvim_buf_del_keymap(0, "n", "J")
  17. vim.api.nvim_buf_del_keymap(0, "n", "K")
  18. vim.api.nvim_buf_del_keymap(0, "n", "L")
  19. vim.api.nvim_buf_del_keymap(0, "n", "H")
  20. vim.api.nvim_buf_del_keymap(0, "v", "f")
  21. vim.b.venn_enabled = nil
  22. end
  23. end
  24. -- toggle keymappings for venn using <leader>v
  25. vim.api.nvim_set_keymap('n', '<leader>v', ":lua Toggle_venn()<CR>", { noremap = true})

veenDemo