Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 384) sorted by relevance

12345678910>>...16

/vim-8.2.3635/src/testdir/
H A Dtest_tcl.vim233 tcl set win $::vim::current(window)
287 tcl set b2 $::vim::current(buffer)
288 tcl set w2 $::vim::current(window)
290 tcl set b1 $::vim::current(buffer)
291 tcl set w1 $::vim::current(window)
310 tcl set w2 $::vim::current(window)
312 tcl set w1 $::vim::current(window)
333 tcl set w2 $::vim::current(window)
335 tcl set w1 $::vim::current(window)
351 tcl set w2 $::vim::current(window)
[all …]
H A Dtest_search_stat.vim19 \ #{current: 1, exact_match: 1, total: 40, incomplete: 0, maxcount: 99},
22 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
25 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
28 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99},
32 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99},
36 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
39 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99},
42 \ #{current: 1, exact_match: 0, total: 2, incomplete: 2, maxcount: 1},
45 \ #{current: 0, exact_match: 0, total: 2, incomplete: 2, maxcount: 1},
56 \ #{current: 2, exact_match: 1, total: 50, incomplete: 0, maxcount: 99},
[all …]
H A Dtest_python2.vim258 py b = vim.current.buffer
326 py w = vim.current.window
636 py cb = vim.current.buffer
1409 py b = vim.current.buffer
1570 py b = vim.current.buffer
1771 " Test vim.current
1789 H(vim.current.window) + ' is ' + H(vim.current.tabpage.window))
1791 H(vim.current.buffer) + ' is ' + H(vim.current.window.buffer)+ \
1833 vim.current.window.cursor = (len(vim.current.buffer), 0)
1914 ('current', vim.current),
[all …]
H A Dtest_python3.vim34 cb = vim.current.buffer
314 py3 b = vim.current.buffer
457 py3 b = vim.current.buffer
525 py3 w = vim.current.window
1958 " Test vim.current
1976 H(vim.current.window) + ' is ' + H(vim.current.tabpage.window))
1978 H(vim.current.buffer) + ' is ' + H(vim.current.window.buffer)+ \
2018 vim.current.buffer = cb
2020 vim.current.window.cursor = (len(vim.current.buffer), 0)
2101 ('current', vim.current),
[all …]
/vim-8.2.3635/src/
H A Dvim9execute.c5007 int current; in list_instructions() local
5010 for (current = 0; current < instr_count; ++current) in list_instructions()
5012 isn_T *iptr = &instr[current]; in list_instructions()
5020 if (current > prev_current) in list_instructions()
5023 prev_current = current; in list_instructions()
5060 smsg("%s%4d REDIR", pfx, current); in list_instructions()
5536 pfx, current, in list_instructions()
5541 pfx, current, in list_instructions()
5549 smsg("%s%4d CATCH", pfx, current); in list_instructions()
5693 pfx, current, in list_instructions()
[all …]
/vim-8.2.3635/runtime/doc/
H A Dif_ruby.txt54 @buffer = Vim::Buffer.current
93 cw = Vim::Window.current # gets the current window
96 cb = Vim::Buffer.current # gets the current buffer
106 line = Vim::Buffer.current.line # gets the current line
107 num = Vim::Buffer.current.line_number # gets the current line number
108 Vim::Buffer.current.line = "test" # sets the current line number
149 current Returns the current buffer object.
166 line Returns the current line of the buffer if the buffer is
179 current Returns the current window object.
201 $curwin The current window object.
[all …]
H A Dwindows.txt159 of the current window). Reduces the current window height to
162 current or the new window).
484 current window is in.
492 current window is in.
501 current window is in.
540 the current tab page.
591 the current window.
730 current window. If the current buffer can't be |abandon|ed,
757 the current window.
780 the current buffer.
[all …]
H A Dediting.txt15 7. The current directory |current-directory|
30 *current-file*
223 current buffer.
313 current file.
363 current file name.
663 current entry.
1094 window in the current tab page the current tab page is
1149 ZZ Write current file, if modified, and close the current
1290 7. The current directory *current-directory*
1341 the cursor is in the current window. The current
[all …]
H A Dif_tcl.txt119 See also |tcl-var-current| for the current buffer.
124 a buffer or window uses the current buffer/current window. Does not
139 or window property uses the current buffer/current window. Returns
151 or 'local to window' affect the current buffer/current window. The
167 See also |tcl-var-current| for the current window.
175 ::vim::current # array containing "current" objects
182 ::vim::current *tcl-var-current*
196 $::vim::current(window) height 10
465 set buf $::vim::current(buffer)
472 set buf $::vim::current(buffer)
[all …]
H A Dft_rust.txt137 Compiles and runs the current file. If it has unsaved changes,
138 it will be saved first using |:update|. If the current file is
141 directory, but is run from the current directory.
155 Expands the current file using --pretty and displays the
156 results in a new split. If the current file has unsaved
158 current file is an unnamed buffer, it will be written to a
173 Compiles the current file to LLVM IR and displays the results
174 in a new split. If the current file has unsaved changes, it
175 will be saved first using |:update|. If the current file is an
185 in a new split. If the current file has unsaved changes, it
[all …]
H A Dtabpage.txt67 after the current one. >
68 :tabnew " opens tabpage after the current one
93 current one.
101 " current one
124 :tabc[lose][!] Close current tab page.
131 :tabclose " close the current tab page
234 Shows a ">" for the current window.
296 current tab page.
330 WinLeave leave current window
331 TabLeave leave current tab page
[all …]
H A Dquickfix.txt293 of the current buffer.
377 is the current error position.
398 current window.
500 the current buffer.
527 for the current window.
539 the current window.
613 current window.
622 location list for the current window.
633 location list for the current window.
865 " Make the 4th quickfix list current
[all …]
H A Dindex.txt46 re-indent the current line)
271 current buffer.
629 current file
633 current file
645 current file
649 current file
657 current file
662 current file
746 in current file
773 in current function
[all …]
H A Dusr_22.txt14 |22.2| The current directory
106 <enter> Open the file in the current window. |netrw-cr|
124 cd Change Vim's notion of the current directory to be
136 :Explore [directory] Browse specified/current directory
137 :NetrwSettings A comprehensive list of your current netrw
149 *22.2* The current directory
166 The ":cd" command changes the current directory. You can see what the current
210 When using a `:cd` command in a window that uses a different current
224 page, it will also change the current tab page working directory.
258 below the current directory. And the current directory might not be where the
[all …]
H A Dtagsrch.txt74 1. "FSC" A full matching static tag for the current file.
75 2. "F C" A full matching global tag for the current file.
203 Set current index of the tag stack to 4: >
229 the current position in the list (if there is one).
246 this depends on the current file, thus using
306 location list for the current window. [name] can be
413 current file changed ! option action ~
486 where the current file is (no matter what the current directory is). The idea
488 current directory ("tags,./tags") or in the directory of the current file
495 directory where the current file is. Next the "tags" file in the current
[all …]
H A Dif_pyth.txt124 :python current.line = upper(current.line)
144 :py cw = vim.current.window # gets the current window
146 :py cb = vim.current.buffer # gets the current buffer
269 vim.current *python-current*
272 vim.current.line The current line (RW) String
273 vim.current.buffer The current buffer (RW) Buffer
274 vim.current.window The current window (RW) Window
421 - via vim.current.buffer (|python-current|)
500 - via vim.current.range (|python-current|)
531 - via vim.current.window (|python-current|)
[all …]
H A Dquickref.txt310 the current line
312 the current line
319 |:dig| :dig[raphs] show current list of digraphs
554 like ":mkvimrc", but store current files,
680 'diff' use diff mode for the current window
1099 with current command
1130 |:range| . the current line
1229 |:edit| :e[dit][!] reload the current file
1254 in current window in new window ~
1287 |:wq| :wq[!] write the current file and exit
[all …]
H A Ddiff.txt92 as for "vimdiff" for the current and the newly opened window.
100 Use the current buffer, patch it with the diff found in
106 the current file. If {patchfile} contains diffs for other
108 directory to /tmp to avoid files in the current directory
131 in the current tab page where 'diff' is set. Resetting
133 if the current window does not have 'diff' set then no options
182 the current buffer and the file it was loaded from.
257 Modify the current buffer to undo difference with another
259 [bufspec] refers to the current buffer then nothing happens.
266 Modify another buffer to undo difference with the current
[all …]
H A Dusr_09.txt62 Vim will set the title to show the name of the current file. First comes the
183 In X-Windows there is the "current selection". This is the text that is
192 The "current selection" will only remain valid until some other text is
196 longer is the current selection.
205 "real clipboard", to avoid confusion. Often both the "current selection" and
217 This use of both the "current selection" and the "real clipboard" might sound
236 If you don't like using the mouse, you can access the current selection and
237 the real clipboard with two registers. The "* register is for the current
239 To make text become the current selection, use Visual mode. For example,
241 To insert the current selection before the cursor: >
[all …]
H A Dautocmd.txt833 the current buffer, not the name of the
848 the current buffer, not the name of the
1186 current buffer in Insert mode.
1424 <buffer> current buffer
1437 " current buffer
1443 " current buffer
1537 current file name) for {event} to the current buffer.
1607 change the current buffer or delete the previously current buffer, the
1608 previously current buffer is made the current buffer again.
1742 ks mark current position with mark 's'
[all …]
/vim-8.2.3635/runtime/indent/
H A Docaml.vim110 " Indent if current line begins with 'end':
118 " Indent if current line begins with '}' or '>}':
126 " Indent if current line begins with ')':
130 " Indent if current line begins with 'let':
149 " Indent if current line begins with ';;':
155 " Indent if current line begins with 'in':
161 " Indent if current line begins with 'else':
167 " Indent if current line begins with 'then':
173 " Indent if current line begins with 'and':
179 " Indent if current line begins with 'with':
[all …]
H A Dvhdl.vim46 " store current line & string
77 " where: start of current line
248 " where: start of current line
255 " where: start of current line
264 " where: start of current line
273 " where: start of current line
319 " where: start of current line
333 " where: start of current line
345 " where: start of current line
393 " where: start of current line
[all …]
/vim-8.2.3635/runtime/macros/maze/
H A Dmaze_mac84 " current state NextChar vi commands next state
176 " A - replace the current character with an 'O'
177 " ma - mark the current position with mark 'a'
179 " for the current state
186 " for the current state and NextChar
195 " the current character
211 " Q - save the current character in the Char register
215 " A - replace the current character with an 'O'
223 " B - put the current state
251 " J - restore the current character
[all …]
/vim-8.2.3635/runtime/macros/life/
H A Dlife.vim41 " of the current buffer. All line references in these macros
43 " can be done safely with any file as the current buffer.
51 " i<nr><Esc>z Make a number the only thing on the current line and use
98 " Time running N generations, where N is the number on the current line.
119 " where <germ> is " " if the current germ is dead, "X" when living.
120 " <count> is the number of living neighbours (including current germ)
180 " The next three work out a square: put all nine chars around the current
217 " Insert current character in the last line
232 " Put the current cut buffer after the cursor
246 " Get current date (used by time a generation)
[all …]
/vim-8.2.3635/runtime/autoload/
H A Drust.vim219 " existing path of the current buffer. If the path is inside of {dict.tmpdir}
286 let l:current = ''
292 call add(l:args, l:current)
293 let l:current = ''
302 let l:current .= l:c
307 let l:current .= l:c
316 let l:current .= l:c
320 let l:current .= l:c
324 let l:current .= '\'.l:c
331 let l:current .= l:c
[all …]

12345678910>>...16