Skip to content

Instantly share code, notes, and snippets.

@takaxp
Created January 16, 2016 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takaxp/70e56c692adb1078779d to your computer and use it in GitHub Desktop.
Save takaxp/70e56c692adb1078779d to your computer and use it in GitHub Desktop.
(with-eval-after-load "helm-swoop"
;; カーソルの単語が org の見出し(*の集まり)のとき検索対象にしない.
(setq helm-swoop-pre-input-function
#'(lambda()
(unless (thing-at-point-looking-at "^\\*+")
(thing-at-point 'symbol)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment