Browse Source

Exit when no symbol at current point

master
10sr 5 years ago
parent
commit
55a8c6ed25
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      emacs.el

+ 3
- 2
emacs.el View File

@@ -1496,7 +1496,8 @@ and search from projectile root (if projectile is available)."
(command-args
(if cmd
(concat cmd
(thing-at-point 'symbol t))
(or (thing-at-point 'symbol t)
(error "No symbol at point")))
(error "My-Rgrep: Command for rgrep not found"))))
(if (safe-require-or-eval 'projectile)
(projectile-with-default-dir (projectile-project-root)
@@ -1626,7 +1627,7 @@ This mode is a simplified version of `adoc-mode'."
`(,@result ,(buffer-substring-no-properties start
(point))))))
result)))
;; (apply 'concat (car (my-file-head "./emacs.el"))
;; (apply 'concat (my-file-head "./emacs.el" 10))

(set-variable 'dumb-jump-prefer-searcher 'rg)



Loading…
Cancel
Save