File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -81,18 +81,17 @@ then `boon-cur-pattern' is searched."
81
81
(boon-navigate nil ))
82
82
83
83
;;;### autoload
84
- (defun boon-search-char-forward (count char )
84
+ (defun boon-search-char-forward (count )
85
85
" "
86
- (interactive " pc" )
87
- (mc/execute-command-for-all-fake-cursors
88
- (lambda () (interactive )
89
- (search-forward (string char) (line-end-position ) nil count))))
86
+ (interactive " p" )
87
+ (let ((char (read-char )))
88
+ (search-forward (string char) (line-end-position ) nil count)))
90
89
91
90
;;;### autoload
92
- (defun boon-search-char-backward (count char )
91
+ (defun boon-search-char-backward (count )
93
92
" "
94
- (interactive " pc " )
95
- (boon-search-char-forward (if count (- count) (- 1 )) char ))
93
+ (interactive " p " )
94
+ (boon-search-char-forward (if count (- count) (- 1 ))))
96
95
97
96
98
97
(provide 'boon-search )
You can’t perform that action at this time.
0 commit comments