;; usage;;;; (add-hook 'ruby-mode-hook;; (lambda ();; (local-set-key (kbd "C-x j") 'jump-to-view)));;;; keep the point anywhere inside a sinatra route and;; press C-x j to open the haml file(require'thingatpt)(defunjump-to-view()"jumps to haml view"(interactive)(let((sentence(thing-at-point'sentence)))(if(string-match".*haml(?[[:blank:]]*:\\(?:'\\|\"\\)?\\([^\"\', \f\t\n\r\v]+\\).*"sentence)(let((file(match-string-no-properties1sentence)))(if(one-window-p)(split-window-vertically))(select-window(next-window))(find-file(concat(project-root)(concat"app/views/"(concatfile".haml"))))))))