diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-06-11 22:21:46 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-06-11 22:21:46 -0400 |
commit | 96e57eb443d71235914bff499e0fd19e52d468c2 (patch) | |
tree | 002c5c506696e7e10026819739f71d197cf7b10a | |
parent | e8cbf67a4ff59364795de5a8d6dbc660d43f76df (diff) | |
download | emacs.d-96e57eb443d71235914bff499e0fd19e52d468c2.tar.gz |
Fix narrow-indirect functions name
-rw-r--r-- | lisp/init-editing.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-editing.el b/lisp/init-editing.el index 1bb91de..c586b65 100644 --- a/lisp/init-editing.el +++ b/lisp/init-editing.el @@ -163,8 +163,8 @@ touches." (key-chord-define-global "jx" 'km/toggle-line-or-region-comment) (key-chord-define-global "qp" 'fill-paragraph) -(define-key ctl-x-4-map "nd" 'ni-narrow-to-defun-other-window) -(define-key ctl-x-4-map "nn" 'ni-narrow-to-region-other-window) +(define-key ctl-x-4-map "nd" 'ni-narrow-to-defun-indirect-other-window) +(define-key ctl-x-4-map "nn" 'ni-narrow-to-region-indirect-other-window) (define-key ctl-x-4-map "np" 'ni-narrow-to-page-indirect-other-window) (define-key narrow-map "c" 'km/narrow-to-comment-heading) |