Tirenvi_02/32.GitHub/reddit
をテンプレートにして作成
[
Front page
] [
New
|
Page list
|
Search
|
Recent changes
|
Help
]
Start:
- https://www.reddit.com/mail/all
* モデレーターに連絡 [#sf0003f9]
Hi mods,
My post seems to have been removed by Reddit’s filters.
It’s a demo of a Neovim plugin I developed for editing ta...
I’d appreciate it if you could take a quick look and appr...
Thanks!
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
----
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
* 対策版 [#xe2fb6bf]
I've been working on a Neovim plugin for editing tables i...
One thing I focused on is handling Markdown tables *insid...
Demo:
(ここにgif)
It keeps everything as plain text, but lets you edit tabl...
- works inside Markdown
- handles mixed text + tables
- supports multiline cells
- column width adjustment
Raw Markdown → structured edit → back to raw (lossless)
GitHub:
https://github.com/kibi2/tirenvi.nvim
* この投稿は Reddit のフィルターによって削除されました。 ...
[Plugin] Edit Markdown tables inside text in Neovim (with...
Demo:
Tirenvi lets you edit tables inside Markdown without brea...
- Works directly in normal buffers (no special mode)
- Keeps everything as plain text
- Handles mixed content (text + tables)
- Supports multiline cells
- Column width adjustment (set / grow / shrink)
Raw Markdown → structured view → edit → back to raw (loss...
https://github.com/kibi2/tirenvi.nvim
-----
Some implementation details for people interested.
Tirenvi keeps the buffer as pure text:
- no hidden metadata
- no shadow buffer
- no custom buffer type
Even when showing a structured table view, the underlying...
Architecture:
flat text (CSV / TSV / GFM / etc.)
↓
external parser
↓
TIR (Tabular Intermediate Representation)
↓
tirenvi
↓
structured editing view
The key idea is separating "structure" from "text".
One tricky part was handling mixed content:
documents where tables are embedded in normal text.
Tirenvi splits the document into text blocks and table bl...
and only applies structural editing to tables.
Another challenge was preserving Vim's undo tree.
If an edit temporarily breaks the table structure, Tirenv...
Feedback from Neovim users would be very welcome!
It also supports Pukiwiki-style tables (same internal rep...
End:
- https://www.reddit.com/mail/all
* モデレーターに連絡 [#sf0003f9]
Hi mods,
My post seems to have been removed by Reddit’s filters.
It’s a demo of a Neovim plugin I developed for editing ta...
I’d appreciate it if you could take a quick look and appr...
Thanks!
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
----
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
https://www.reddit.com/r/neovim/comments/1sruf0b/plugin_e...
* 対策版 [#xe2fb6bf]
I've been working on a Neovim plugin for editing tables i...
One thing I focused on is handling Markdown tables *insid...
Demo:
(ここにgif)
It keeps everything as plain text, but lets you edit tabl...
- works inside Markdown
- handles mixed text + tables
- supports multiline cells
- column width adjustment
Raw Markdown → structured edit → back to raw (lossless)
GitHub:
https://github.com/kibi2/tirenvi.nvim
* この投稿は Reddit のフィルターによって削除されました。 ...
[Plugin] Edit Markdown tables inside text in Neovim (with...
Demo:
Tirenvi lets you edit tables inside Markdown without brea...
- Works directly in normal buffers (no special mode)
- Keeps everything as plain text
- Handles mixed content (text + tables)
- Supports multiline cells
- Column width adjustment (set / grow / shrink)
Raw Markdown → structured view → edit → back to raw (loss...
https://github.com/kibi2/tirenvi.nvim
-----
Some implementation details for people interested.
Tirenvi keeps the buffer as pure text:
- no hidden metadata
- no shadow buffer
- no custom buffer type
Even when showing a structured table view, the underlying...
Architecture:
flat text (CSV / TSV / GFM / etc.)
↓
external parser
↓
TIR (Tabular Intermediate Representation)
↓
tirenvi
↓
structured editing view
The key idea is separating "structure" from "text".
One tricky part was handling mixed content:
documents where tables are embedded in normal text.
Tirenvi splits the document into text blocks and table bl...
and only applies structural editing to tables.
Another challenge was preserving Vim's undo tree.
If an edit temporarily breaks the table structure, Tirenv...
Feedback from Neovim users would be very welcome!
It also supports Pukiwiki-style tables (same internal rep...
Page: