all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* subword handling in isearch-yank-word-or-char
@ 2009-12-15  9:27 Masatake YAMATO
  2009-12-17 22:34 ` Juri Linkov
  0 siblings, 1 reply; 3+ messages in thread
From: Masatake YAMATO @ 2009-12-15  9:27 UTC (permalink / raw
  To: emacs-devel

Hi,

Could you add following small modification to emacs source tree?

With the patch you can pull a subword as yank text when you do
\C-w in isearch.

Masatake YAMATO

--- ChangeLog	14 Dec 2009 23:22:54 -0000	1.16907
+++ ChangeLog	15 Dec 2009 08:58:40 -0000
@@ -1,3 +1,8 @@
+2009-12-15  Masatake YAMATO  <yamato@redhat.com>
+
+	* isearch.el (isearch-yank-word-or-char): Pull next subword
+	when `subword-mode' is activated.
+
 2009-12-14  Chong Yidong  <cyd@stupidchicken.com>
 
 	* Makefile.in: Revert last change (Bug#5191).
--- isearch.el	7 Dec 2009 17:30:05 -0000	1.351
+++ isearch.el	15 Dec 2009 08:58:40 -0000
@@ -1538,14 +1538,18 @@
   (interactive "p")
   (isearch-yank-internal (lambda () (forward-char arg) (point))))
 
+(declare-function subword-forward "subword" (&optional arg))
 (defun isearch-yank-word-or-char ()
-  "Pull next character or word from buffer into search string."
+  "Pull next character, subword or word from buffer into search string.
+Subword is used when `subword-mode' is activated. "
   (interactive)
   (isearch-yank-internal
    (lambda ()
      (if (or (= (char-syntax (or (char-after) 0)) ?w)
              (= (char-syntax (or (char-after (1+ (point))) 0)) ?w))
-         (forward-word 1)
+	 (if (and (fboundp 'subword-mode) subword-mode)
+	     (subword-forward 1)
+	     (forward-word 1))
        (forward-char 1)) (point))))
 
 (defun isearch-yank-word ()
--- progmodes/subword.el	1 Dec 2009 09:28:23 -0000	1.3
+++ progmodes/subword.el	15 Dec 2009 08:58:40 -0000
@@ -76,7 +76,7 @@
 ;; the old `c-forward-into-nomenclature' originally contributed by
 ;; Terry_Glanfield dot Southern at rxuk dot xerox dot com.
 
-;; TODO: ispell-word and subword oriented C-w in isearch.
+;; TODO: ispell-word.
 
 ;;; Code:
 




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: subword handling in isearch-yank-word-or-char
  2009-12-15  9:27 subword handling in isearch-yank-word-or-char Masatake YAMATO
@ 2009-12-17 22:34 ` Juri Linkov
  2009-12-18  4:45   ` Masatake YAMATO
  0 siblings, 1 reply; 3+ messages in thread
From: Juri Linkov @ 2009-12-17 22:34 UTC (permalink / raw
  To: Masatake YAMATO; +Cc: emacs-devel

> Could you add following small modification to emacs source tree?
>
> With the patch you can pull a subword as yank text when you do
> \C-w in isearch.

I suggest you to file a bug report with this patch to not forget
to install it after the feature freeze.

-- 
Juri Linkov
http://www.jurta.org/emacs/




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: subword handling in isearch-yank-word-or-char
  2009-12-17 22:34 ` Juri Linkov
@ 2009-12-18  4:45   ` Masatake YAMATO
  0 siblings, 0 replies; 3+ messages in thread
From: Masatake YAMATO @ 2009-12-18  4:45 UTC (permalink / raw
  To: juri; +Cc: emacs-devel

>> Could you add following small modification to emacs source tree?
>>
>> With the patch you can pull a subword as yank text when you do
>> \C-w in isearch.
> 
> I suggest you to file a bug report with this patch to not forget
> to install it after the feature freeze.

I see. Thank you.

Masatake




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-12-18  4:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-15  9:27 subword handling in isearch-yank-word-or-char Masatake YAMATO
2009-12-17 22:34 ` Juri Linkov
2009-12-18  4:45   ` Masatake YAMATO

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.