-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' (v0.40.0) First of 2015!
Happy New Year !
- Loading branch information
Showing
22 changed files
with
2,186 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(defun spacemacs/haskell-show-hi2-guides () | ||
(when (and (boundp 'hi2-mode) hi2-mode) | ||
(hi2-enable-show-indentations))) | ||
|
||
(defun spacemacs/haskell-hide-hi2-guides () | ||
(when (and (boundp 'hi2-mode) hi2-mode) | ||
(hi2-disable-show-indentations))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
(defun spacemacs/ensime-refactor-accept () | ||
(interactive) | ||
(funcall continue-refactor) | ||
(ensime-popup-buffer-quit-function)) | ||
|
||
(defun spacemacs/ensime-refactor-cancel () | ||
(interactive) | ||
(funcall cancel-refactor) | ||
(ensime-popup-buffer-quit-function)) | ||
|
||
(defun spacemacs/scala-join-line () | ||
"Adapt `scala-indent:join-line' to behave more like evil's line join. | ||
`scala-indent:join-line' acts like the vanilla `join-line', | ||
joining the current line with the previous one. The vimmy way is | ||
to join the current line with the next. | ||
Try to move to the subsequent line and then join. Then manually move | ||
point to the position of the join." | ||
(interactive) | ||
(let (join-pos) | ||
(save-excursion | ||
(goto-char (line-end-position)) | ||
(unless (eobp) | ||
(forward-line) | ||
(call-interactively 'scala-indent:join-line) | ||
(setq join-pos (point)))) | ||
|
||
(when join-pos | ||
(goto-char join-pos)))) |
Oops, something went wrong.