Skip to content

Commit 5e0cc1c

Browse files
committed
Release 1.3
1 parent 15c740a commit 5e0cc1c

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,37 @@ won't list single bugfixes or improved documentation.)
55

66
## [Unreleased]
77

8+
## [1.3] - 2016-09-26
9+
810
### Added
911

10-
- When using `-cword`, add the query to the input history.
12+
- Async support for Vim.
13+
- Default commands for all supported tools: `:Grep` for grep, `:Ack` for ack,
14+
etc. Only exception: `:GG` for `git` to avoid conflicts with
15+
[fugitive](https://github.com/tpope/vim-fugitive).
16+
- Support for [ripgrep](https://github.com/BurntSushi/ripgrep)
1117
- `-noprompt` flag. Especially useful together with `-grepprg` or `-cword`.
18+
- `-highlight` flag that enables search highlighting for simple queries.
19+
- Flag completion for `:Grepper`. Compare `:Grepper <c-d>` to `:Grepper -<c-d>`.
1220
- `$+` placeholder for `-grepprg`. Gets replaced by all opened files.
1321
- `$.` placeholder for `-grepprg`. Gets replaced by the current buffer name.
1422

1523
### Changed
1624

25+
- Use stdout handler instead of tempfile for async output.
1726
- Use `'nowrap'` in quickfix window.
27+
- When using `-cword`, add the query to the input history.
28+
- `&grepprg` does not get touched anymore.
1829

1930
### Removed
2031

32+
- Quickfix mappings in favor of dedicated plugins like [vim-qf](https://github.com/romainl/vim-qf) or [QFEnter](https://github.com/yssl/QFEnter).
2133
- `-cword!`. Was inconsistent syntax in the first place and can now be replaced
2234
with `-cword -noprompt`.
2335
- Support for vim-dispatch. See this
2436
[commit](https://github.com/mhinz/vim-grepper/commit/c345137c336c531209a6082a6fcd5c2722d45773).
25-
2637
- Sift was removed as default tool, because it either needs `grepprg = 'sift $*
27-
.' (which makes restricting the search to a subdirectory quite hard) or an
38+
.'` (which makes restricting the search to a subdirectory quite hard) or an
2839
allocated PTY (which means fighting with all kinds of escape sequences). If
2940
you're a Go nut, use
3041
[pt](https://github.com/monochromegane/the_platinum_searcher) instead.
@@ -75,7 +86,8 @@ quite some changes.
7586

7687
First release!
7788

78-
[Unreleased]: https://github.com/mhinz/vim-grepper/compare/v1.2...HEAD
89+
[Unreleased]: https://github.com/mhinz/vim-grepper/compare/v1.3...HEAD
90+
[1.3]: https://github.com/mhinz/vim-grepper/compare/v1.2...v1.3
7991
[1.2]: https://github.com/mhinz/vim-grepper/compare/v1.1...v1.2
8092
[1.1]: https://github.com/mhinz/vim-grepper/compare/v1.0...v1.1
8193
[1.0]: https://github.com/mhinz/vim-grepper/compare/8b9234f...v1.0

0 commit comments

Comments
 (0)