branch: master
commit d785f98ab4aab615c05ba610812932faa2e5f96e
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel--descbinds-cands): Update regex
    
    Fixes #1089
---
 counsel.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index 722d9e8..33a4275 100644
--- a/counsel.el
+++ b/counsel.el
@@ -923,7 +923,7 @@ See `describe-buffer-bindings' for further information."
       (re-search-forward "")
       (forward-char 1)
       (while (not (eobp))
-        (when (looking-at "^\\([^\t\n]+\\)\t+\\(.*\\)$")
+        (when (looking-at "^\\([^\t\n]+\\)[\t ]*\\(.*\\)$")
           (let ((key (match-string 1))
                 (fun (match-string 2))
                 cmd)

Reply via email to