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

Commit 77b40d6

Browse files
committed
Fix documentations and bump to 3.2.1
1 parent e460c5e commit 77b40d6

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
## iy-go-to-char.el
2-
*Go to next CHAR which is similar to "f" in vim*
2+
*Go to next CHAR which is similar to "f" and "t" in vim*
33

44
---
55

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

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

27-
Or if you prefer up-to versions:
28+
Or if you prefer up-to (vim "t") versions:
2829

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

7071
### Change Log
7172

72-
2013-04-28 (3.2)
73+
2013-04-28 (3.2.1)
7374

75+
- Fix documentations.
7476
- Add up-to versions: `iy-go-up-to-char`, `iy-go-up-to-char-backward`,
7577
`iy-go-up-to-char-continue` and `iy-go-up-to-char-continue-backward`.
7678

iy-go-to-char.el

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
;;; iy-go-to-char.el --- Go to next CHAR which is similar to "f" in vim
1+
;;; iy-go-to-char.el --- Go to next CHAR which is similar to "f" and "t" in vim
22
;; Copyright (C) 2009 Ian Yang
33

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

@@ -30,9 +30,10 @@
3030

3131
;;; Commentary:
3232

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

3738
;; To use, make sure this file is on your `load-path' and put the
3839
;; following in your .emacs file:
@@ -51,7 +52,7 @@
5152
;; (global-set-key (kbd "C-c ;") 'iy-go-to-or-up-to-continue)
5253
;; (global-set-key (kbd "C-c ,") 'iy-go-to-or-up-to-continue-backward)
5354
;;
54-
;; Or if you prefer up-to versions:
55+
;; Or if you prefer up-to (vim "t") versions:
5556
;;
5657
;; (global-set-key (kbd "C-c f") 'iy-go-up-to-char)
5758
;; (global-set-key (kbd "C-c F") 'iy-go-up-to-char-backward)
@@ -95,8 +96,9 @@
9596
;; `iy-go-to-char-continue-backward'.
9697

9798
;;; Change Log:
98-
;; 2013-04-28 (3.2)
99+
;; 2013-04-28 (3.2.1)
99100
;;
101+
;; - Fix documentations.
100102
;; - Add up-to versions: `iy-go-up-to-char', `iy-go-up-to-char-backward',
101103
;; `iy-go-up-to-char-continue' and `iy-go-up-to-char-continue-backward'.
102104
;;

0 commit comments

Comments
 (0)