branch: elpa/isl
commit 3b214d71e3c94db618c2f234d253c44a5f3a95d5
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Update README
---
 README.org | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/README.org b/README.org
index e3f6f39ee5f..f8ba56e9427 100644
--- a/README.org
+++ b/README.org
@@ -59,13 +59,6 @@ Even better, you can autoload it:
     (autoload 'isl-resume "isl" nil t)
 #+end_src
 
-With =use-package= and binding =C-s=
-
-#+begin_src elisp
-    (use-package isl
-      :bind (("C-s" . isl-search)))
-#+end_src
-
 ** Configure
 
 You may want to disable all =Isearch= global bindings:
@@ -188,12 +181,11 @@ effects, you have better time using =isl-search= as the 
search command for
 helm-help, here how to replace default setting by `isl` in helm-help:
 
 #+begin_src elisp
-    (use-package helm-lib
-      :config
-      (use-package isl)
+    (with-eval-after-load 'helm-lib
+      (autoload 'isl-search "isl" nil t)
       (helm-help-define-key "C-s" nil)
       (helm-help-define-key "C-r" nil)
-      (helm-help-define-key "C-s" 'isl-search))
+      (helm-help-define-key "C-s" 'isl-search))    
 #+end_src
 
 An alternative is to customize `helm-help-hkmap` from the customize interface.

Reply via email to