diff --git a/README.md b/README.md index e5b7b53..2717a24 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Demo An *alignment rule* is a predefined set of options for common alignment tasks, which is identified by a single character, such as ``, `=`, `:`, `.`, -`|`, `&`, `#`, and `,`. +`|`, `&`, `#`, `,`, and `;`. #### `=` @@ -151,7 +151,7 @@ xmap ga (EasyAlign) - `-` Around the last occurrences of delimiters (`-1`) - `-2` Around the second to last occurrences of delimiters - ... -1. Delimiter key (a single keystroke; ``, `=`, `:`, `.`, `|`, `&`, `#`, `,`) or an arbitrary regular expression followed by `` +1. Delimiter key (a single keystroke; ``, `=`, `:`, `.`, `|`, `&`, `#`, `,`, `;`) or an arbitrary regular expression followed by `` #### 2. Using `:EasyAlign` command @@ -180,6 +180,7 @@ alignment rules that you can trigger with a single keystroke. | `&` | LaTeX tables (matches `&` and `\\`) | | `#` | Ruby/Python comments | | `"` | Vim comments | +| `;` | Assembly comments | | `` | Table markdown | You can also define your own rules with `g:easy_align_delimiters` which will diff --git a/autoload/easy_align.vim b/autoload/easy_align.vim index cb9ec1a..5cf3412 100644 --- a/autoload/easy_align.vim +++ b/autoload/easy_align.vim @@ -39,6 +39,7 @@ let s:easy_align_delimiters_default = { \ '.': { 'pattern': '\.', 'left_margin': 0, 'right_margin': 0, 'stick_to_left': 0 }, \ '#': { 'pattern': '#\+', 'delimiter_align': 'l', 'ignore_groups': ['!Comment'] }, \ '"': { 'pattern': '"\+', 'delimiter_align': 'l', 'ignore_groups': ['!Comment'] }, +\ ';': { 'pattern': ';\+', 'delimiter_align': 'l', 'ignore_groups': ['!Comment'] }, \ '&': { 'pattern': '\\\@