Browse Source

Add current-prefix-arg

master
10sr 6 years ago
parent
commit
40cf334f73
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      emacs.el

+ 5
- 4
emacs.el View File

@@ -1457,15 +1457,16 @@ Commands are searched from ALIST."
(my-rgrep-grep-command name my-rgrep-alist)))

(defun my-rgrep (command-args)
"My recursive grep. Run COMMAND-ARGS."
"My recursive grep. Run COMMAND-ARGS.
If prefix argument is given use current symbol as default search target."
(interactive (let ((cmd (my-rgrep-grep-command my-rgrep-default
nil)))
(if cmd
(list (read-shell-command "grep command: "
(concat cmd
"\""
(thing-at-point 'symbol t)
"\"")
(if current-prefix-arg
(thing-at-point 'symbol t)
""))
'grep-find-history))
(error "My-Rgrep: Command for rgrep not found")
)))


Loading…
Cancel
Save