mirror of
https://github.com/chenasraf/vim-matchup.git
synced 2026-05-17 17:38:01 +00:00
Update year, etc
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
MIT license
|
MIT license
|
||||||
|
|
||||||
Copyright (c) 2019 Andy Massimino
|
Copyright (c) 2020 Andy Massimino
|
||||||
|
|
||||||
Copyright (c) 2016 Karl Yngve Lervåg
|
Copyright (c) 2016 Karl Yngve Lervåg
|
||||||
|
|
||||||
|
|||||||
28
README.md
28
README.md
@@ -1,19 +1,11 @@
|
|||||||
# vim match-up
|
# vim match-up
|
||||||
|
|
||||||
match-up is a drop-in replacement for the vim plugin [matchit.vim].
|
match-up is a plugin that lets you highlight, navigate, and operate on
|
||||||
match-up aims to enhance all of matchit's features, fix a number of its
|
sets of matching text. It extends vim's `%` key to language-specific
|
||||||
deficiencies and bugs, and add a few totally new features. It also
|
words instead of just single characters.
|
||||||
replaces the standard plugin [matchparen], allowing all of matchit's words
|
|
||||||
to be highlighted along with the `matchpairs` (`(){}[]`).
|
|
||||||
|
|
||||||
[matchit.vim]: http://ftp.vim.org/pub/vim/runtime/macros/matchit.txt
|
|
||||||
[matchparen]: http://ftp.vim.org/pub/vim/runtime/doc/pi_paren.txt
|
|
||||||
|
|
||||||
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='300px' alt='and in this corner...'>
|
<img src='https://github.com/andymass/matchup.vim/wiki/images/teaser.jpg' width='300px' alt='and in this corner...'>
|
||||||
|
|
||||||
A major goal of this project is to keep a modern and modular code base.
|
|
||||||
Contributions are welcome!
|
|
||||||
|
|
||||||
## Screenshot
|
## Screenshot
|
||||||
|
|
||||||
<img src='https://raw.githubusercontent.com/wiki/andymass/vim-matchup/images/match-up-hl1.gif' width='450px'>
|
<img src='https://raw.githubusercontent.com/wiki/andymass/vim-matchup/images/match-up-hl1.gif' width='450px'>
|
||||||
@@ -31,6 +23,15 @@ Contributions are welcome!
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
match-up can be used as a drop-in replacement for the classic plugin [matchit.vim].
|
||||||
|
match-up aims to enhance all of matchit's features, fix a number of its
|
||||||
|
deficiencies and bugs, and add a few totally new features. It also
|
||||||
|
replaces the standard plugin [matchparen], allowing all of matchit's words
|
||||||
|
to be highlighted along with the `matchpairs` (`(){}[]`).
|
||||||
|
|
||||||
|
[matchit.vim]: http://ftp.vim.org/pub/vim/runtime/macros/matchit.txt
|
||||||
|
[matchparen]: http://ftp.vim.org/pub/vim/runtime/doc/pi_paren.txt
|
||||||
|
|
||||||
See [detailed feature documentation](#detailed-feature-documentation) for
|
See [detailed feature documentation](#detailed-feature-documentation) for
|
||||||
more information. This plugin:
|
more information. This plugin:
|
||||||
|
|
||||||
@@ -79,7 +80,7 @@ together with other plugins.
|
|||||||
| | feature | __match-up__ | matchit | matchparen |
|
| | feature | __match-up__ | matchit | matchparen |
|
||||||
| ------- | -------------------------------- | -------------- | ------------- | ------------- |
|
| ------- | -------------------------------- | -------------- | ------------- | ------------- |
|
||||||
| ([a.1]) | jump between matching words | :thumbsup: | :thumbsup: | :x: |
|
| ([a.1]) | jump between matching words | :thumbsup: | :thumbsup: | :x: |
|
||||||
| ([a.2]) | jump to open & close words | :thumbsup: | :question: | :x: |
|
| ([a.2]) | jump to open & close words | :thumbsup: | :thumbsup: | :x: |
|
||||||
| ([a.3]) | jump inside | :thumbsup: | :x: | :x: |
|
| ([a.3]) | jump inside | :thumbsup: | :x: | :x: |
|
||||||
| ([b.1]) | full set of text objects | :thumbsup: | :question: | :x: |
|
| ([b.1]) | full set of text objects | :thumbsup: | :question: | :x: |
|
||||||
| ([c.1]) | highlight `()`, `[]`, & `{}` | :thumbsup: | :x: | :thumbsup: |
|
| ([c.1]) | highlight `()`, `[]`, & `{}` | :thumbsup: | :x: | :thumbsup: |
|
||||||
@@ -774,3 +775,6 @@ Feature requests are also welcome.
|
|||||||
Please read the [contribution guidelines](CONTRIBUTING.md) before
|
Please read the [contribution guidelines](CONTRIBUTING.md) before
|
||||||
contributing.
|
contributing.
|
||||||
|
|
||||||
|
A major goal of this project is to keep a modern and modular code base.
|
||||||
|
Contributions are welcome!
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - even better matching pairs
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Web: https://github.com/andymass/vim-matchup
|
|||||||
Script ID: 5624
|
Script ID: 5624
|
||||||
License: MIT license {{{
|
License: MIT license {{{
|
||||||
|
|
||||||
Copyright (c) 2019 Andy Massimino
|
Copyright (c) 2020 Andy Massimino
|
||||||
|
|
||||||
Copyright (c) 2016 Karl Yngve Lervåg
|
Copyright (c) 2016 Karl Yngve Lervåg
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" vim match-up - matchit replacement and more
|
" vim match-up - even better matching
|
||||||
"
|
"
|
||||||
" Maintainer: Andy Massimino
|
" Maintainer: Andy Massimino
|
||||||
" Email: a@normed.space
|
" Email: a@normed.space
|
||||||
|
|||||||
Reference in New Issue
Block a user