|
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 |
2 | 2 | ;; Copyright (C) 2009 Ian Yang |
3 | 3 |
|
4 | 4 | ;; Author: Ian Yang <doit dot ian (at) gmail dot com> |
5 | 5 | ;; Keywords: navigation, search |
6 | 6 | ;; Filename: iy-go-to-char.el |
7 | 7 | ;; Description: Go to char |
8 | 8 | ;; 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 |
11 | 11 | ;; URL: https://github.com/doitian/iy-go-to-char |
12 | 12 | ;; Compatibility: GNU Emacs 23.1.1 |
13 | 13 |
|
|
30 | 30 |
|
31 | 31 | ;;; Commentary: |
32 | 32 |
|
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. |
36 | 37 |
|
37 | 38 | ;; To use, make sure this file is on your `load-path' and put the |
38 | 39 | ;; following in your .emacs file: |
|
51 | 52 | ;; (global-set-key (kbd "C-c ;") 'iy-go-to-or-up-to-continue) |
52 | 53 | ;; (global-set-key (kbd "C-c ,") 'iy-go-to-or-up-to-continue-backward) |
53 | 54 | ;; |
54 | | -;; Or if you prefer up-to versions: |
| 55 | +;; Or if you prefer up-to (vim "t") versions: |
55 | 56 | ;; |
56 | 57 | ;; (global-set-key (kbd "C-c f") 'iy-go-up-to-char) |
57 | 58 | ;; (global-set-key (kbd "C-c F") 'iy-go-up-to-char-backward) |
|
95 | 96 | ;; `iy-go-to-char-continue-backward'. |
96 | 97 |
|
97 | 98 | ;;; Change Log: |
98 | | -;; 2013-04-28 (3.2) |
| 99 | +;; 2013-04-28 (3.2.1) |
99 | 100 | ;; |
| 101 | +;; - Fix documentations. |
100 | 102 | ;; - Add up-to versions: `iy-go-up-to-char', `iy-go-up-to-char-backward', |
101 | 103 | ;; `iy-go-up-to-char-continue' and `iy-go-up-to-char-continue-backward'. |
102 | 104 | ;; |
|
0 commit comments