diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d55844b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +2022-05-13 Version 0.1.0 +------------------------ + + - Add: creating checkboxes and radio buttons + - Add: toggle checkboxes and radio buttons + - Add: setting indents diff --git a/LICENSE b/LICENSE index 2071b23..e4db850 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) +Copyright (c) 2022 Andrew Nechaev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 4be5459..0a97982 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,35 @@ Vim Markdown ============ -ftplugin для работы c markdown разметкой. +ftplugin to work with markdown. -Возможности ------------ +Features +-------- - - Фолдинг и установка чекбоксов и радиокнопок + - Creating and toggle checkboxes and radio buttons -Установка ---------- +Install +------- ```shell mkdir ~/.vim/ftplugin - curl https://code.geekfrom.ru/i/vim-md/raw/branch/master/ftplugin/markdown.vim > ~/.vim/ftplufin/markdown.vim + curl https://code.geekfrom.ru/i/vim-md/raw/branch/master/ftplugin/markdown.vim > ~/.vim/ftplugin/markdown.vim ``` Mappings -------- -|description|modes|mapping| -|-----------|-----|-------| -|Установить/убрать радиокнопку|normal, visual|`r`| -|Установить/убрать чекбокс|normal, visual|`c`| -|Переключить чекбокс/радиокнопку|normal, visual|`t`| +| description | modes | mapping | +|------------------------------|----------------|-------------| +| Set/remove radio button | normal, visual | `r` | +| Set/remove checkbox | normal, visual | `c` | +| Toggle checkbox/radio button | normal, visual | `t` | + + +License +------- + +MIT License. See `LICENSE` for more information.