1 #
2 # DO NOT EDIT THIS FILE
usr_09.txt Using the GUI
usr_10.txt Making big changes
usr_11.txt Recovering from a crash
usr_12.txt Clever tricks
Editing Effectively
usr_20.txt Typing command-line commands quickly
usr_21.txt Go away and come back
usr_22.txt Finding the file to edit
Getting Started then help-context 37,1 17%
tutor from /et30 minutes training course for beginnersgrub
usr_01.txt About the manualsT PREPEND EXAMPLE
copying About copyrights
usr_02.txt The first steps in Vimcommand (nothing) :help x
9 if [ -s $prefix/grubenv ]; then
usr_03.txt Moving around 1,1 Top
11 i
usr_04.txt Making small changes
13 if [ "${prev_saved_entry}" ]; then
usr_05.txt Set your settings_saved_entry}"
15 save_env saved_entry
usr_06.txt Using syntax highlighting
17 save_env prev_saved_entry
usr_07.txt Editing more than one file
19 fi
usr_08.txt Splitting windows
21 function savedefault {
22 if [ -z "${boot_once}" ]; then
text/comment-me.txt 8,1 4%
24 save_env saved_entry
25 fi
26 }
27
28 function load_video {
29 insmod vbe
30 insmod vga
31 insmod video_bochs
32 insmod video_cirrus
33 }
34
35 insmod part_msdos
36 insmod ext2
37 set root='(hd0,msdos9)'
38 search --no-floppy --fs-uuid --set 45a88fc8-e320-4874-8833-a01d4de8f42c
39 if loadfont /share/grub/unicode.pf2 ; then
40 set gfxmode=1280x800
gui_w16.txt Windows 3.1 GUI
if_sniff.txt SNiFF+ interface
if_tcl.txt Tcl interface
if_ole.txt OLE automation interface for Win32
if_ruby.txt Ruby interface
debugger.txt Interface with a debugger
workshop.txt Sun Visual Workshop interface
netbeans.txt NetBeans External Editor interface
gui_w32.txt Win32 GUInt of Vim 145,1 71%
gui_x11.txt X11 GUIim as a server or client
term.txt using different terminals and miceat to do with your money
Interfacest list of available digraphs commands
if_cscop.txt using Cscope with Vimrtations
if_lua.txt Lua interfaceanguage supportguments, initialisationeference_toc
if_mzsch.txt MzScheme interfacepport and editingix cycle
if_perl.txt Perl interface) editingiple windows and buffers
if_pyth.txt Python interfacesupport and editinges used in help files
usr_10.txt Making big changes
Tuning Vim
usr_40.txt Make new commands
usr_41.txt Write a Vim script
usr_42.txt Add new menus
usr_43.txt Using filetypes
usr_44r.txt Your own syntax highlighted
quotes.txt remarks from users
Making Vim Run
osr_90s.txt Installing Vim
REFERENCE MANUAL: These files explain every detail of Vim. reference_toc
General subjects
intro.txt general introduction to Vim; notation used in help files
inserttxt Insert and Replace mode
help.txx overview and quick referen
chanx.txt alphabetical index of all commands
helphelp.txt about using the help filesg Vim scriptmouse click, you can use 95,1 37%
indent.txt automatic indenting for C and other languages
CTRL-T, CTRL-O, g<RightMouse>, or <C-RightMouse> to go back to where you were.
hebrew.txt Hebrew language support and editing
pi_paren.txt Highlight matching parens
russian.txt Russian language support and editing
Note that tags are within | characters, but when highlighting is enabled these
ft_ada Ada (the programming language) support
characters are hidden. That makes it easier to read a command.
ft_sql about the SQL filetype plugin
Anyway, you can use CTRL-] on any word, also when it is not within |, and Vim
will try to find help for it. Especially for options in single quotes, e.g.
'compatible'.
pattern ::= branch
Some characters in the pattern are taken literally. They match with the same
More explanation and examples below, follow the links.
character in the text. When preceded with a backslash however, these
Other characters have a special meaning without a backslash. They need to be
/\^ \^ \^ literal '^'
If a character is taken literally or not depends on the 'magic' option and the
/\$ \$ \$
/\m /\M
/. . \. any single character (not an end-of-line)
Use of "\m" makes the pattern after it be interp
Use of "\M" makes the pattern after it be interpreted as if 'nomagic' is used.
ignoring the actual value of the 'magic' option.width
atch /\v /\V
/\ze \ze \ze anything, sets end of match
Use of "\V" means that in the pattern after it only the backslash has a
'0'-'9', 'a'-'z', 'A'-'Z' and '_' have a special meaning. "very magic"r the 357,45 27%
usr_11.txt Recovering from a crash
/\%c \%23c \%23c in column 23 /zero-width (nothing) :help x_u
/\%v \%23v \%23v in virtual column 23 /zero-width :help i_<Esc>
Command-line command : :help :quit
/en
1 #
2 # DO NOT EDIT THIS FILE
3 #
4 # It is automatically generated by grub-mkconfig using templates
5 # from /etc/grub.d and settings from /etc/default/grub
6 #
7
8 ### BEGIN /etc/grub.d/00_header ###
9 if [ -s $prefix/grubenv ]; then
10 load_env
11 fi
12 set default="0"
13 if [ "${prev_saved_entry}" ]; then
14 set saved_entry="${prev_saved_entry}"
15 save_env saved_entry
16 set prev_saved_entry=
17 save_env prev_saved_entry
18 set boot_once=true
19 fi
20
21 function savedefault {
22 if [ -z "${boot_once}" ]; then
23 saved_entry="${chosen}"
24 save_env saved_entry
25 fi
26 }
27
28 function load_video {
29 insmod vbe
30 insmod vga
31 insmod video_bochs
32 insmod video_cirrus
33 }
34
35 insmod part_msdos
36 insmod ext2
37 set root='(hd0,msdos9)'
38 search --no-floppy --fs-uuid --set 45a88fc8-e320-4874-8833-a01d4de8f42c
39 if loadfont /share/grub/unicode.pf2 ; then