Home
last modified time | relevance | path

Searched refs:whole (Results 1 – 25 of 157) sorted by relevance

1234567

/vim-8.2.3635/runtime/doc/
H A Dusr_04.txt106 Like "dd" deletes a whole line, "cc" changes a whole line. It keeps the
124 S stands for cc (change a whole line)
224 If you want to work on whole lines, use "V" to start Visual mode. You will
225 see right away that the whole line is highlighted, without moving around.
227 selection is extended whole lines at a time.
304 whole line with "dd", "P" will put it back above the cursor. When you deleted
352 The "yy" command yanks a whole line, just like "dd" deletes a whole line.
354 works like "yy", it yanks the whole line. Watch out for this inconsistency!
413 object is used as a whole. It doesn't matter where in the object the cursor
416 To change a whole sentence use "cis". Take this text:
H A Dusr_27.txt250 "a", "ab", "abb", "abbb", etc. To match a whole string multiple times, it
318 matches "axbxb" as a whole.
332 To match multiple times, the whole thing must be placed in "\(" and "\)": >
378 There are a few more special cases for [] ranges, see |/[]| for the whole
425 See |/\s| for the whole list of these ranges.
547 "\<" and "\>" are used to find only whole words. "\h" stands for "[A-Za-z_]"
H A Dusr_24.txt34 When you typed a whole word wrong, use CTRL-W:
84 <PageUp> a whole screenful up
91 <PageDown> a whole screenful down
186 CTRL-X CTRL-L whole lines
380 Now, when you type "ad", the whole word "advertisement" will be inserted into
390 word like "add", which will not get expanded. Only whole words are checked
426 You can add a whole list of these. Add one each time you discover a common
H A Dusr_10.txt148 whole range of lines. The general form of this command is as follows: >
237 Some commands work on the whole file when you do not specify a range. To make
239 works like that. Without a range, it writes the whole file. To make it write
318 select a block of text, the colon commands will still apply to whole
369 The default range for the global command is the whole file. Thus no range
497 To fill the whole block with one character, use the "r" command. Again,
589 Without a range it writes the whole file. With a range only the specified
653 are properly separated, you can use this command to format the whole file: >
686 "d", thus to delete a line you use "dd". Similarly, "gugu" makes a whole line
H A Dpattern.txt81 Only whole keywords are searched for, like with the
94 whole word.
99 whole word.
469 |/\@>| \@> \@> 1, like matching a whole pattern
777 \@> Matches the preceding atom like matching a whole pattern.
849 match there: The next char is the first char of the whole match.
862 match there: The previous char is the last char of the whole match.
892 This is a |/zero-width| match. To make sure the whole pattern is
908 this change. An update is done for lines which are changed (the whole
909 line is updated) or when using the |CTRL-L| command (the whole screen
[all …]
H A Dvisual.txt48 "~" and "U", will work on whole lines anyway. See the list of operators
53 between start position and the cursor. However, some operators work on whole
275 (1): Always whole lines, see |:visual_example|.
380 Currently the ":" command works on whole lines only. When you select part of
381 a line, doing something like ":!date" will replace the whole line. If you
495 example, when a whole line is deleted, it can later be pasted halfway a line.
H A Dusr_12.txt108 command. The "%" is the line range, which stands for the whole file. Thus
128 command. "\0" stands for the whole matched pattern. There are a few more
207 When the whole file is what you want to count the words in, use this
290 The line range "%" is used, thus this works on the whole file. The pattern
H A Dtagsrch.txt648 Note that 'wrapscan' does not matter, the whole file is always searched.
743 (default: whole file).
758 (default: whole file).
776 [range] lines (default: whole file).
791 [range] lines (default: whole file).
806 (default: whole file).
821 (default: whole file).
839 [range] lines (default: whole file).
852 (default: whole file).
875 [/] A pattern can be surrounded by '/'. Without '/' only whole words are
H A Dusr_25.txt116 whole file by typing this: >
362 can't see the whole sentence you are working on. When 'wrap' is on, words are
506 4. Move the cursor right, to include the whole column in the selection, plus
518 Notice that the whole "test 1" column was shifted right, also the line where
H A Dautocmd.txt262 |BufWrite| starting to write the whole buffer to a file
263 |BufWritePre| starting to write the whole buffer to a file
264 |BufWritePost| after writing the whole buffer to a file
265 |BufWriteCmd| before writing the whole buffer to a file |Cmd-event|
538 BufWrite or BufWritePre Before writing the whole buffer to a file.
540 BufWriteCmd Before writing the whole buffer to a file.
550 BufWritePost After writing the whole buffer to a file
814 whole buffer. Should do the writing to the
820 whole buffer.
823 whole buffer. Use the '[ and '] marks for the
[all …]
/vim-8.2.3635/src/GvimExt/
H A DMake_ming.mak69 -Wl,--whole-archive \
71 -Wl,--no-whole-archive \
/vim-8.2.3635/src/
H A Dbufwrite.c675 int whole = (start == 1 && end == buf->b_ml.ml_line_count); in buf_write() local
744 && whole in buf_write()
831 else if (reset_changed && whole) in buf_write()
945 if (whole) // write all in buf_write()
984 if (whole) in buf_write()
2420 if (reset_changed && whole && !append in buf_write()
2599 else if (reset_changed && whole) in buf_write()
/vim-8.2.3635/runtime/tutor/
H A Dtutor.utf-8304 ** Type dd to delete a whole line. **
306 Due to the frequency of whole line deletion, the designers of Vi decided
328 ** Press u to undo the last commands, U to fix a whole line. **
353 4. To delete a whole line type: dd
436 cc does the same for the whole line.
573 Type :%s/old/new/g to change every occurrence in the whole file.
574 Type :%s/old/new/gc to find every occurrence in the whole file,
636 4. This saves the whole file (the Vim Tutor) under the name TEST.
807 yy yanks the whole line, then p puts that line.
H A Dtutor304 ** Type dd to delete a whole line. **
306 Due to the frequency of whole line deletion, the designers of Vi decided
328 ** Press u to undo the last commands, U to fix a whole line. **
353 4. To delete a whole line type: dd
436 cc does the same for the whole line.
573 Type :%s/old/new/g to change every occurrence in the whole file.
574 Type :%s/old/new/gc to find every occurrence in the whole file,
636 4. This saves the whole file (the Vim Tutor) under the name TEST.
807 yy yanks the whole line, then p puts that line.
/vim-8.2.3635/runtime/compiler/
H A Dfpc.vim15 " NOTE: compiler must be run with -vb to write whole source path, not only file
/vim-8.2.3635/runtime/ftplugin/
H A Dvroom.vim25 " To allow tag lookup and autocomplete for whole autoload functions, '#' must be
H A Dclojure.vim22 " There will be false positives, but this is better than missing the whole set
/vim-8.2.3635/src/xdiff/
H A DCOPYING100 non-free programs enables many more people to use the whole GNU
172 c) You must cause the whole of the work to be licensed at no
190 These requirements apply to the modified work as a whole. If
195 distribute the same sections as part of a whole which is a work based
196 on the Library, the distribution of the whole must be on the terms of
198 entire whole, and thus to each and every part regardless of who wrote
389 and the section as a whole is intended to apply in other circumstances.
/vim-8.2.3635/runtime/autoload/
H A Dgzip.vim75 " when filtering the whole buffer, it will become empty
138 " When uncompressed the whole buffer, do autocommands
/vim-8.2.3635/src/testdir/
H A Dtest_selectmode.vim201 " 'select' the whole [foo bar].
217 " Triple-click should visually 'select' the whole line.
H A Dtest_textprop.vim107 call prop_type_add('whole', {})
114 call prop_type_delete('whole')
122 call prop_add(1, 1, {'length': 13, 'id': 14, 'type': 'whole'})
127 \ #{type_bufnr: 0, col: 1, length: 13, id: 14, type: 'whole', start: 1, end: 1},
301 call assert_equal(props[0], prop_find({'id': 14, 'type': 'whole', 'both': 1}))
313 call assert_fails("call prop_add(10, 1, {'length': 1, 'id': 14, 'type': 'whole'})", 'E966:')
314 call assert_fails("call prop_add(1, 22, {'length': 1, 'id': 14, 'type': 'whole'})", 'E964:')
H A Dtest_visual.vim315 " the whole word.
352 " the whole sentence.
403 " the whole paragraph.
994 " gUe must uppercase a whole word, also when ß changes to SS
998 " VU must uppercase a whole line
/vim-8.2.3635/src/proto/
H A Dsearch.pro35 void find_pattern_in_path(char_u *ptr, int dir, int len, int whole, int skip_comments, int type, lo…
/vim-8.2.3635/runtime/syntax/
H A Ddylan.vim57 " These appear at the top of files (usually). I like to highlight the whole line
/vim-8.2.3635/runtime/indent/testdir/
H A DREADME.txt75 It's best to keep the whole file valid for FILETYPE, so that syntax

1234567