| /vim-8.2.3635/runtime/pack/dist/opt/termdebug/plugin/ |
| H A D | termdebug.vim | 82 " The breakpoint may contain a dot: 123.4 -> 123004 83 " The main breakpoint has a zero subid. 417 call s:SendCommand('set breakpoint pending on') 452 " breakpoint number. 512 " breakpoint. 767 elseif msg =~ '^=breakpoint-deleted,' 833 an 1.210 PopUp.Set\ breakpoint :Break<CR> 904 aunmenu PopUp.Set\ breakpoint 905 aunmenu PopUp.Clear\ breakpoint 1214 " Handle setting a breakpoint [all …]
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | typescript.vim | 476 let breakpoint = searchpairpos(' ', '', '\.', 'bcW', s:skip_expr, a:lnum) 479 if breakpoint[1] == orig_breakpoint[1] 485 if breakpoint[1] <= indent(a:lnum) 487 let breakpoint = searchpairpos('\.', '', ' ', 'cW', s:skip_expr, a:lnum) 491 if breakpoint[1] != 0
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | repeat.txt | 802 cont Continue execution until the next breakpoint is hit. 806 everything. Still stops at the next breakpoint. 876 Set a breakpoint in a function. Example: > 878 < Doesn't check for a valid function name, thus the breakpoint 882 Set a breakpoint in a sourced file. Example: > 886 Set a breakpoint in the current line of the current file. 893 Sets a breakpoint, that will break whenever the {expression} 942 each breakpoint. 948 Delete a breakpoint in a function. 951 Delete a breakpoint in a sourced file. [all …]
|
| H A D | terminal.txt | 1241 Gdb will run into the ex_help breakpoint. The source window now shows the 1261 You will see a ">>" marker appear, this indicates the new breakpoint. Now 1262 click "Cont" in the toolbar and the code until the breakpoint will be 1298 *:Break* set a breakpoint at the cursor position 1300 set a breakpoint at the specified position 1301 *:Clear* delete the breakpoint at the cursor position 1330 - delete N delete breakpoint N 1332 breakpoint, or use the "Clear breakpoint" right-click menu entry. 1443 - debugBreakpoint a breakpoint 1466 Set breakpoint `:Break` [all …]
|
| H A D | debugger.txt | 54 example would be a small stop sign for a line with a breakpoint. These visible
|
| H A D | sign.txt | 22 in the left-hand column denoting a breakpoint. Another example might be an 226 it (e.g., when the debugger has stopped at a breakpoint).
|
| H A D | netbeans.txt | 962 breakpoint at the current line, press "Pause Shift F8".
|
| H A D | index.txt | 1196 |:breakadd| :breaka[dd] add a debugger breakpoint 1197 |:breakdel| :breakd[el] delete a debugger breakpoint
|
| H A D | version6.txt | 5210 Solution: Check for multibyte character before and after the breakpoint. 8827 Problem: Setting a breakpoint in a sourced file with a relative path name 8859 Problem: Setting a breakpoint in a function doesn't work. For a sourced
|
| H A D | version8.txt | 22477 Problem: Setting a breakpoint in the terminal debugger sometimes fails. 24125 Problem: The terminal debugger can't set a breakpoint with the mouse. 26484 Problem: Can't see the breakpoint number in the terminal debugger. 26485 Solution: Use the breakpoint number for the sign. (Christian Brabandt) 29221 Problem: Termdebug: gdb may use X.Y for breakpoint number. (Ryou Ezoe) 29222 Solution: Handle X.Y breakpoint numbers. (Yasuhiro Matsumoto, close #3641) 29325 Problem: Termdebug: clearing multi-breakpoint does not work. 42864 terminal debugger a breakpoint and the PC cannot be both be
|
| H A D | todo.txt | 3968 - Support breakpoint character ? 0xb7 and ignore it? Makes it possible to
|
| H A D | version7.txt | 1313 breakpoint at the cursor.
|
| /vim-8.2.3635/src/ |
| H A D | scriptfile.c | 1030 return &((source_cookie_T *)cookie)->breakpoint; in source_breakpoint() 1265 cookie.breakpoint = dbg_find_breakpoint(TRUE, fname_exp, (linenr_T)0); in do_source() 1762 sp->breakpoint = dbg_find_breakpoint(TRUE, sp->fname, SOURCING_LNUM); in getsourceline() 1880 if (sp->breakpoint != 0 && sp->breakpoint <= SOURCING_LNUM) in getsourceline() 1884 sp->breakpoint = dbg_find_breakpoint(TRUE, sp->fname, SOURCING_LNUM); in getsourceline()
|
| H A D | ex_docmd.c | 715 breakpoint = func_breakpoint(real_cookie); in do_cmdline() 721 breakpoint = source_breakpoint(real_cookie); in do_cmdline() 839 if (breakpoint != NULL && dbg_tick != NULL in do_cmdline() 842 *breakpoint = dbg_find_breakpoint( in do_cmdline() 852 if (breakpoint != NULL && *breakpoint != 0 in do_cmdline() 853 && *breakpoint <= SOURCING_LNUM) in do_cmdline() 857 *breakpoint = dbg_find_breakpoint( in do_cmdline() 1081 if (breakpoint != NULL) in do_cmdline() 1083 *breakpoint = dbg_find_breakpoint( in do_cmdline() 1110 if (breakpoint != NULL && has_watchexpr()) in do_cmdline() [all …]
|
| H A D | vim9execute.c | 160 linenr_T breakpoint; in update_has_breakpoint() local 163 breakpoint = dbg_find_breakpoint(FALSE, ufunc->uf_name, 0); in update_has_breakpoint() 164 ufunc->uf_has_breakpoint = breakpoint > 0; in update_has_breakpoint() 1584 linenr_T breakpoint; in handle_debug() local 1590 breakpoint = dbg_find_breakpoint(FALSE, ufunc->uf_name, in handle_debug() 1592 if (breakpoint <= 0 || breakpoint > iptr->isn_lnum) in handle_debug()
|
| H A D | userfunc.c | 2481 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0); in call_user_func() 5224 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, in get_func_line() 5257 if (fcp->breakpoint != 0 && fcp->breakpoint <= SOURCING_LNUM) in get_func_line() 5261 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, in get_func_line() 5395 return &((funccall_T *)cookie)->breakpoint; in func_breakpoint()
|
| H A D | structs.h | 1726 linenr_T breakpoint; // next line with breakpoint or zero member 4414 linenr_T breakpoint; // next line with breakpoint or zero member
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_debugger.vim | 238 " Delete a non-existing breakpoint 241 " Expression breakpoint 1017 " continue, next breakpoint is in LocalFunc() 1020 " continue, next breakpoint is in LegacyFunc() 1207 " set a breakpoint and source file1.vim 1367 " Test for setting a breakpoint on a :endif where the :if condition is false 1395 " Test for setting a breakpoint on a :else where the :if condition is false 1425 " Test for setting a breakpoint on a :endwhile where the :while condition is 1453 " Test for setting a breakpoint on a script local function
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | cheetah.vim | 23 syn keyword cheetahKeyword contained errorCatcher breakpoint silent cache filter
|
| H A D | dtrace.vim | 108 syn keyword dtraceFunction breakpoint panic chill
|
| H A D | python.vim | 196 syn keyword pythonBuiltin abs all any ascii bin bool breakpoint bytearray
|
| H A D | vera.vim | 20 syn keyword veraStatement breakpoint proceed
|
| /vim-8.2.3635/src/VisVim/ |
| H A D | README_VisVim.txt | 114 - Showing the current source line when encountering a debugger breakpoint. 154 After hitting the breakpoint you single step through your application
|
| /vim-8.2.3635/src/po/ |
| H A D | es.po | 1057 msgstr "E161: No se ha encontrado el \"breakpoint\": %s"
|
| H A D | it.po | 563 msgstr "Nessun 'breakpoint' definito"
|