Skip to content

Commit

Permalink
Fix JavaScript load bug, and bind Sinasi finders under ?\s-s
Browse files Browse the repository at this point in the history
  • Loading branch information
emk committed Mar 9, 2010
1 parent a5a171b commit 6cc3e86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion 3rd-party/sinasi
Submodule sinasi updated 1 files
+14 −1 sinasi.el
8 changes: 5 additions & 3 deletions dotemacs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
(when-feature *select*
(load "select")
(global-set-key [?\s-`] 'next-error)
(global-set-key [?\s-s] (select:make-switch-command '("ss" "scm")))
;;(global-set-key [?\s-s] (select:make-switch-command '("ss" "scm")))
(global-set-key [?\s-t] (select:make-switch-command '("txt"))))

(autoload 'halyard-mode
Expand Down Expand Up @@ -282,11 +282,13 @@
)

(when-feature *javascript*
(autoload 'javascript-mode "javascript" nil t)
(autoload 'javascript-mode "javascript-mode" nil t)
(safe-add-to-alist auto-mode-alist
("\\.js\\'" . javascript-mode))

(push-3rd-party-elisp-directory "sinasi")
(require 'sinasi))
(require 'sinasi)
(sinasi-bind-finders-with-prefix ?\s-s))

(when-feature *planetary*
(push "~/src/planetary/tools" load-path)
Expand Down

0 comments on commit 6cc3e86

Please sign in to comment.