summaryrefslogtreecommitdiff
path: root/helm-occur.el
Commit message (Collapse)AuthorAge
* Fix helm-occur facesThierry Volpiatto2020-10-04
|
* Rename functionThierry Volpiatto2020-08-03
| | | | | Rename helm--maybe-use-default-as-input to helm-maybe-use-default-as-input, make it public.
* Fix byte compiler warningsNicholas Vollmer2020-07-28
|
* Use :extend attr in all deffaceThierry Volpiatto2020-06-29
|
* Fix documentationManuel Uberti2020-06-03
|
* New helm-occur commandThierry Volpiatto2020-06-02
| | | | | | that run helm-occur on visible buffers. * helm-occur.el (helm-occur-visible-buffers): New.
* Fix grep highlighting without ansi (#2313)Thierry Volpiatto2020-05-31
| | | | | | | | | | | | | | | We need to transform pcre regexp to elisp when needed. * helm-grep.el (helm-grep-mode--use-pcre): New local flag. (helm-grep-save-results-1): Use it. (helm-grep-mode--sentinel): Maybe use pcre. (helm-grep-class): Use now a FCT. (helm-grep--filter-candidate-1): Take one more arg PCRE. (helm-grep-filter-one-by-one): Same. (helm-grep-fc-transformer): New use it now for grep and ag. (helm-grep-highlight-match): Use pcre regexp when pcre arg is specified. (helm-grep-ag-class): Use now a FCT. * helm-occur.el (helm-occur-filter-one-by-one): Fix arg no more used.
* Better test for buffer size in helm-occurThierry Volpiatto2020-01-24
| | | | | * helm-occur.el (helm-multi-occur-1): Use the total size of all buffers instead of checking the size of each.
* Fix small error in helm-occurThierry Volpiatto2020-01-24
| | | | * helm-occur.el (helm-multi-occur-1): Do it.
* Avoid using default as input in large buffersThierry Volpiatto2020-01-24
| | | | in helm-occur.
* Don't create local cand buffers in helm-occur (#2266)Thierry Volpiatto2020-01-21
| | | | * helm-occur.el (helm-occur-build-sources): Do it.
* Remove unneeded autoload cookieThierry Volpiatto2019-12-21
|
* Fix helm-occur history with initial empty bufferThierry Volpiatto2019-10-03
| | | | | | * helm-occur.el (helm-occur): Use helm :history parameter. (helm-occur-build-sources): Add comment. (helm-multi-occur-1): Use helm :history parameter.
* Set :get-line in init fn in helm-occurThierry Volpiatto2019-08-08
|
* Add new user var for helm-occurThierry Volpiatto2019-08-06
| | | | | * helm-occur.el (helm-occur-buffer-substring-fn-for-modes): New. (helm-occur-build-sources): Use it.
* Remove now unneeded delq mapThierry Volpiatto2019-07-13
| | | | | | | * helm-files.el (helm-find-files-map): Do it. (helm-read-file-map): Do it. * helm-occur.el (helm-occur-map): Do it. * helm-grep.el (helm-grep-map): Do it.
* Fix multi match with beginning of line regexp (#2163)Thierry Volpiatto2019-07-03
| | | | * helm-occur.el (helm-occur-build-sources): Fix regexp.
* Fix matching beginning of line in helm-occur (#2163)Thierry Volpiatto2019-06-30
| | | | * helm-occur.el (helm-occur-build-sources): Add a search function.
* Allow restarting helm-occur with same pattern and buffersThierry Volpiatto2019-06-05
| | | | | | | * helm-occur.el (helm-occur-mode-map): Bind it. (helm-occur-mode-resume-session): New. (helm-occur-mode--last-pattern): New local var. (helm-occur-mode): Use it.
* Fix helm-occur-mode and helm-grep-mode *goto-line-ow*Thierry Volpiatto2019-06-05
| | | | | | | | | | | | | | actions. * helm-occur.el (helm-occur-mode-goto-line-ow-forward-1): forward-line before jumping to candidate and only if last-command was a *goto-line-ow* command. (helm-occur-mode-goto-line-ow-forward): Allow pref arg. (helm-occur-mode-goto-line-ow-backward): Same. * helm-grep.el (helm-grep-mode-jump-other-window-1): Same as in helm-occur. (helm-grep-mode-jump-other-window-forward): Same as in helm-occur. (helm-grep-mode-jump-other-window-backward): Same as in helm-occur.
* Define some keys in defcustom instead of map definitionThierry Volpiatto2019-05-19
| | | | | | | | | | | to allow modifying without restarting emacs. * helm-files.el (helm-read-file-map): Do it. (helm-ff-lynx-style-map): Do it. * helm-grep.el (helm-grep-use-ioccur-style-keys): Do it. (helm-grep-map): Do it. * helm-occur.el (helm-occur-map): Do it. (helm-occur-use-ioccur-style-keys): Do it.
* Add specialized action for right arrow in helm-occurThierry Volpiatto2019-04-20
|
* Ensure wgrep overlays are deleted when revertingThierry Volpiatto2019-04-17
| | | | | * helm-occur.el (helm-occur-mode--revert-buffer-function): Do it. * helm-grep.el (helm-grep-mode--sentinel): Do it.
* Kill local var when saving helm-occur-mode bufferThierry Volpiatto2019-04-17
| | | | * helm-occur.el (helm-occur-save-results): Do it.
* Add comments, no code changeThierry Volpiatto2019-04-10
|
* Improve documentationThierry Volpiatto2019-04-10
|
* Remove unneeded args in helm-occur-buffer-substring-with-linumsThierry Volpiatto2019-04-10
| | | | | | | | and add comments and docstrings. * helm-occur.el (helm-occur-buffer-substring-with-linums): Remove BEG and AND. (helm-occur-mode--revert-buffer-function): Use it and add comments.
* Fix and improve helm-occur-mode--revert-buffer-functionThierry Volpiatto2019-04-10
| | | | | * helm-occur.el (helm-occur-buffer-substring-with-linums): New. (helm-occur-mode--revert-buffer-function): Use it.
* Disable/reenable undo in helm-occur-mode bufferThierry Volpiatto2019-04-09
|
* Improve performances for saving occur buffer (#2146)Thierry Volpiatto2019-04-09
| | | | * helm-occur.el (helm-occur-save-results): Do it.
* Make helm-occur header name shorterThierry Volpiatto2019-04-07
|
* New internal var to store helm-occur regexpThierry Volpiatto2019-04-05
|
* Fix long linesThierry Volpiatto2019-04-04
|
* Add commentThierry Volpiatto2019-04-04
|
* Add match-part fn in helm-occurThierry Volpiatto2019-04-04
|
* Move defface group to helm-occurThierry Volpiatto2019-04-04
|
* Change default value of helm-occur-use-ioccur-style-keysThierry Volpiatto2019-04-04
|
* Use source argument in transformerThierry Volpiatto2019-04-04
|
* Fix regexp in helm-occur transformerThierry Volpiatto2019-04-03
| | | | | * helm-occur.el (helm-occur-transformer): Don't include extra space after linum in real line.
* Use in-buffer method for helm-occurThierry Volpiatto2019-04-03
| | | | | | * helm-occur.el (helm-occur-transformer): Now a filtered-candidate-transformer. (helm-moccur-class): Inherit now from in-buffer class. (helm-occur-build-sources): Use new class.
* Merge branch 'master' of github.com:emacs-helm/helmThierry Volpiatto2019-04-03
|\
| * Fix occur revert functionThierry Volpiatto2019-04-02
| |
* | Avoid duplicate code in helm-occurThierry Volpiatto2019-04-03
|/
* Fix some strings in helm-occurThierry Volpiatto2019-04-01
|
* Add help-echo in helm-occurThierry Volpiatto2019-04-01
| | | | * helm-occur.el (helm-occur-transformer): Do it.
* Enable folow-mode by default in helm-occurThierry Volpiatto2019-04-01
| | | | | | | for consistency with searching in multiple buffers. Remove now the TODO list. * helm-occur.el (helm-occur): Do it.
* Add some docstrings in helm-occurThierry Volpiatto2019-03-31
|
* Add helm-occur from isearch commandsThierry Volpiatto2019-03-31
|
* Rewrite helm-occur in new file helm-occur.el (#2146)Thierry Volpiatto2019-03-30
The functionalities are the same as old code but it is much faster.