From 00e9415ae7976bf2cf1a0914313635772d7a873a Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sun, 8 Oct 2023 19:49:45 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 209a1b7..de870b7 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,24 @@ Using [packer](https://github.com/wbthomason/packer.nvim): use "Myzel394/easytables.nvim" ``` -### Setup +### Tutorial + +#### Inserting a new table + +Go to the place where you want to insert your table and either call: + +* `:EasyTablesCreateNew x` - Creates a new table with `` columns and `` rows +* `:EasyTablesCreateNew ` - Creates a square table with the size of `` (eg. `:EasyTablesCreateNew 5` -> Creates a `5x5` table) +* `:EasyTablesCreateNew x` - Creates a table with `` columns and **one** row +* `:EasyTablesCreateNew x` - Creates a table with **one** column and `` rows + +#### Editing an existing table + +Go to your table (doesn't matter where, can be at a border or inside a cell) and type: + +`:EasyTablesImportThisTable` + +### Custom Setup **Make sure to call the `setup` function!** @@ -215,6 +232,10 @@ This is the default configuration: } ``` +## Limitations + +* This plugin currently does not work well with very bid tables + ## This project is stupid, the code is awful, go away I know that the code is probably not the best, it's my first ever written neovim plugin. From fd52aac32aa16cc4d9d5c0d912d6454367ebd8e8 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sun, 8 Oct 2023 19:50:25 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de870b7..0c1d1ff 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ This is the default configuration: ## Limitations -* This plugin currently does not work well with very bid tables +* This plugin currently does not work well with big tables ## This project is stupid, the code is awful, go away