Skip to content
This repository has been archived by the owner on Dec 27, 2018. It is now read-only.

Commit

Permalink
Fix documentations and bump to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Sep 1, 2013
1 parent e460c5e commit 77b40d6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
## iy-go-to-char.el
*Go to next CHAR which is similar to "f" in vim*
*Go to next CHAR which is similar to "f" and "t" in vim*

---

This package defines the function `iy-go-to-char` which behaves
like "f" in vim. It reads a char and go the next Nth occurence of
the char. User can continue such search using that char key.
This package defines the function `iy-go-to-char` which behaves like "f" in
vim, and `iy-go-up-to-char` like "t" in vim. It reads a char and go the
next Nth occurence of the char. User can continue such search using that
char key.

To use, make sure this file is on your `load-path` and put the
following in your .emacs file:
Expand All @@ -24,7 +25,7 @@ Then you can bind functions like:
(global-set-key (kbd "C-c ;") 'iy-go-to-or-up-to-continue)
(global-set-key (kbd "C-c ,") 'iy-go-to-or-up-to-continue-backward)

Or if you prefer up-to versions:
Or if you prefer up-to (vim "t") versions:

(global-set-key (kbd "C-c f") 'iy-go-up-to-char)
(global-set-key (kbd "C-c F") 'iy-go-up-to-char-backward)
Expand Down Expand Up @@ -69,8 +70,9 @@ cross lines. To continue search last char, use `iy-go-to-char-continue` and

### Change Log

2013-04-28 (3.2)
2013-04-28 (3.2.1)

- Fix documentations.
- Add up-to versions: `iy-go-up-to-char`, `iy-go-up-to-char-backward`,
`iy-go-up-to-char-continue` and `iy-go-up-to-char-continue-backward`.

Expand Down
18 changes: 10 additions & 8 deletions iy-go-to-char.el
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
;;; iy-go-to-char.el --- Go to next CHAR which is similar to "f" in vim
;;; iy-go-to-char.el --- Go to next CHAR which is similar to "f" and "t" in vim
;; Copyright (C) 2009 Ian Yang

;; Author: Ian Yang <doit dot ian (at) gmail dot com>
;; Keywords: navigation, search
;; Filename: iy-go-to-char.el
;; Description: Go to char
;; Created: 2009-08-23 01:27:34
;; Version: 3.2
;; Last-Updated: 2013-04-28 22:53:00
;; Version: 3.2.1
;; Last-Updated: 2013-09-01 15:22:34
;; URL: https://github.com/doitian/iy-go-to-char
;; Compatibility: GNU Emacs 23.1.1

Expand All @@ -30,9 +30,10 @@

;;; Commentary:

;; This package defines the function `iy-go-to-char' which behaves
;; like "f" in vim. It reads a char and go the next Nth occurence of
;; the char. User can continue such search using that char key.
;; This package defines the function `iy-go-to-char' which behaves like "f" in
;; vim, and `iy-go-up-to-char` like "t" in vim. It reads a char and go the
;; next Nth occurence of the char. User can continue such search using that
;; char key.

;; To use, make sure this file is on your `load-path' and put the
;; following in your .emacs file:
Expand All @@ -51,7 +52,7 @@
;; (global-set-key (kbd "C-c ;") 'iy-go-to-or-up-to-continue)
;; (global-set-key (kbd "C-c ,") 'iy-go-to-or-up-to-continue-backward)
;;
;; Or if you prefer up-to versions:
;; Or if you prefer up-to (vim "t") versions:
;;
;; (global-set-key (kbd "C-c f") 'iy-go-up-to-char)
;; (global-set-key (kbd "C-c F") 'iy-go-up-to-char-backward)
Expand Down Expand Up @@ -95,8 +96,9 @@
;; `iy-go-to-char-continue-backward'.

;;; Change Log:
;; 2013-04-28 (3.2)
;; 2013-04-28 (3.2.1)
;;
;; - Fix documentations.
;; - Add up-to versions: `iy-go-up-to-char', `iy-go-up-to-char-backward',
;; `iy-go-up-to-char-continue' and `iy-go-up-to-char-continue-backward'.
;;
Expand Down

0 comments on commit 77b40d6

Please sign in to comment.