Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix typo on comment in surround | Ivan Tham | 2021-07-03 |
| | |||
* | Fix surround bug when cursor on same pair | Gokul Soumya | 2021-07-03 |
| | | | | | | For example when the cursor is _on_ the `'` in `'word'`, the cursor wouldn't move because the search for a matching pair started _from_ the position of the cursor and simply found itself. | ||
* | Skip enclosed pairs in surround | Gokul Soumya | 2021-06-24 |
| | | | | | | | | | Surround operations previously ignored other pairs that are enclosed within which should be skipped. For example if the cursor is on the `,` in `{{a},{b}}`, doing `md{` previously would delete the `{` on the left of `a` and `}` on the right of `b` instead of the outermost braces. This commit corrects this behavior. | ||
* | Correctly identify pairs when cursor on pair | Gokul Soumya | 2021-06-22 |
| | |||
* | Refactor and add tests for surround | Gokul Soumya | 2021-06-22 |
| | |||
* | Add more surround pair characters | Gokul Soumya | 2021-06-22 |
| | |||
* | Add surround keybinds | Gokul Soumya | 2021-06-22 |