Skip to content

Commit

Permalink
Updated contributors.
Browse files Browse the repository at this point in the history
  • Loading branch information
magnars committed Jan 19, 2012
1 parent e5af5b5 commit fbda159
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can set it up like this:
(require 'expand-region)
(global-set-key (kbd "C-@") 'er/expand-region)

There's also `er/contract-region` if you expand too far.
There's also `er/contract-region` if you expand too far.

## Language support

Expand Down Expand Up @@ -71,6 +71,10 @@ where it says "Mode-specific expansions"
dramatically. Remember to exit quickly before you start traversing
the entire document looking for constructs to mark.

## Todo

* `er/mark-comment` should be a basic expansion

## Contribute

If you make some nice expansions for your favorite mode, it would be
Expand All @@ -81,7 +85,7 @@ great if you opened a pull-request. The repo is at:
## Contributors

* [Josh Johnston](https://github.com/joshwnj) contributed `er/contract-region`
* [Le Wang](https://github.com/lewang) contributed bugfixes.
* [Le Wang](https://github.com/lewang) contributed consistent handling of the mark ring, expanding into pairs/quotes just left of the cursor, and general code clean-up.

Thanks!

Expand Down
15 changes: 13 additions & 2 deletions expand-region.el
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,24 @@
;; dramatically. Remember to exit quickly before you start traversing
;; the entire document looking for constructs to mark.

;; ## Contribute
;; ## Todo
;;
;; * `er/mark-comment` should be a basic expansion

;; ## Contribute
;;
;; If you make some nice expansions for your favorite mode, it would be
;; great if you opened a pull-request. The repo is at:

;;
;; https://github.com/magnars/expand-region.el

;; ## Contributors
;;
;; * [Josh Johnston](https://github.com/joshwnj) contributed `er/contract-region`
;; * [Le Wang](https://github.com/lewang) contributed consistent handling of the mark ring, expanding into pairs/quotes just left of the cursor, and general code clean-up.
;;
;; Thanks!

;;; Code:

(defvar er/history '()
Expand Down

0 comments on commit fbda159

Please sign in to comment.