branch: externals/ivy-hydra commit 4f6bd9e1848456d2e0709daf1751e13f4b664028 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
.dir-locals.el (outline-regexp): "^(" is not an outline start The level of such an outline is then 1, which is not in line with the structure. With the new `outline-regexp', `lispy-shifttab' (which just forwards to e.g. `org-content') works as expected. Re #2529 --- .dir-locals.el | 2 +- counsel.el | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.dir-locals.el b/.dir-locals.el index 4e7d231..857b931 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -8,7 +8,7 @@ (sentence-end-double-space . t)) (emacs-lisp-mode (indent-tabs-mode . nil) - (outline-regexp . ";;\\([;*]+ [^\s\t\n]\\|###autoload\\)\\|(") + (outline-regexp . ";;\\([;*]+ [^\s\t\n]\\|###autoload\\)") ;; extra config here: https://github.com/abo-abo/oremacs/blob/github/modes/ora-elisp-style-guide.el ;; (lisp-indent-function . common-lisp-indent-function) )) diff --git a/counsel.el b/counsel.el index 4e79e04..ee8e92a 100644 --- a/counsel.el +++ b/counsel.el @@ -6503,7 +6503,7 @@ Additional actions:\\<ivy-minibuffer-map> :action #'counsel-M-x-action :caller 'counsel-major)) -;;* `counsel-search' +;;** `counsel-search' (declare-function request "ext:request") (defcustom counsel-search-engine 'ddg @@ -6570,7 +6570,7 @@ We update it in the callback with `ivy-update-candidates'." (define-obsolete-function-alias 'counsel-google 'counsel-search "<2019-10-17 Thu>") -;;* `counsel-compilation-errors' +;;** `counsel-compilation-errors' (defun counsel--compilation-errors-buffer (buf) (with-current-buffer buf (let ((res nil) @@ -6609,7 +6609,7 @@ We update it in the callback with `ivy-update-candidates'." :action #'counsel-compilation-errors-action :history 'counsel-compilation-errors-history)) -;;* `counsel-flycheck' +;;** `counsel-flycheck' (defvar flycheck-current-errors) (declare-function flycheck-error-filename "ext:flycheck") (declare-function flycheck-error-line "ext:flycheck")