Skip to content

Commit

Permalink
update TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
jacktasia committed Jan 11, 2016
1 parent 3f1eb63 commit c31a06a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dumb-jump.el
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
(require 'dash)

;; TODO: config variable for if it should be only for functions
;; TODO: make defvars defcustoms?
;; TODO: goback command
;; TODO: add rules for declarations in method signatures
;; TODO: complete README add gif etc.
;; TODO: melpa recipe
Expand Down Expand Up @@ -225,13 +225,12 @@ If not found, then return dumb-jump-default-profile"
(let* ((cur-file (buffer-file-name))
(cur-line (thing-at-point 'line))
(cur-line-num (line-number-at-pos))
(cur-symbol (thing-at-point 'symbol))
(look-for (thing-at-point 'symbol))
(proj-info (dumb-jump-get-project-root cur-file))
(proj-root (plist-get proj-info :root))
(proj-config (plist-get proj-info :file))
(look-for (thing-at-point 'symbol))
(lang (dumb-jump-get-language-by-filename cur-file))
(pt-ctx (dumb-jump-get-point-context cur-line cur-symbol))
(pt-ctx (dumb-jump-get-point-context cur-line look-for))
(ctx-type
(dumb-jump-get-ctx-type-by-language lang pt-ctx))
(regexes (dumb-jump-get-contextual-regexes lang ctx-type))
Expand Down

0 comments on commit c31a06a

Please sign in to comment.