~ubuntu-branches/ubuntu/maverick/vim/maverick

« back to all changes in this revision

Viewing changes to runtime/doc/quickref.txt

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-05-04 11:13:42 UTC
  • mfrom: (1.1.8 upstream) (0.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090504111342-60miqybsixdpc345
Tags: 2:7.2.148-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/runtime/vimrc: "syntax on" is a sane default for non-tiny vim.
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Disable autoindent, line-wrapping, and backup files by default.
* Dropped changes, merged in Debian:
  - Add jaunty, karmic to the list of valid suites.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - Create a .pot file for translations.
* Drop gutsy from the list of valid distro series, it's been EOLed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
*quickref.txt*  For Vim version 7.2.  Last change: 2008 Jan 22
 
1
*quickref.txt*  For Vim version 7.2.  Last change: 2009 Jan 22
2
2
 
3
3
 
4
4
                  VIM REFERENCE MANUAL    by Bram Moolenaar
40
40
|^|        ^            to first non-blank character in the line
41
41
|$|     N  $            to the last character in the line (N-1 lines lower)
42
42
                           (also: <End> key)
43
 
|g0|    N  g0           to first character in screen line (differs from "0"
 
43
|g0|       g0           to first character in screen line (differs from "0"
44
44
                           when lines wrap)
45
 
|g^|    N  g^           to first non-blank character in screen line (differs
 
45
|g^|       g^           to first non-blank character in screen line (differs
46
46
                           from "^" when lines wrap)
47
47
|g$|    N  g$           to last character in screen line (differs from "$"
48
48
                           when lines wrap)
49
 
|gm|    N  gm           to middle of the screen line
 
49
|gm|       gm           to middle of the screen line
50
50
|bar|   N  |            to column N (default: 1)
51
51
|f|     N  f{char}      to the Nth occurrence of {char} to the right
52
52
|F|     N  F{char}      to the Nth occurrence of {char} to the left