Skip to content

Commit e50b1fe

Browse files
authored
vim-patch:921bde888046 (neovim#18511)
Update runtime files, translations vim/vim@921bde8 skip: translations skip: builtin.txt (requires 8.2.4861)
1 parent 5359be7 commit e50b1fe

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

runtime/doc/builtin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2800,7 +2800,7 @@ getcmdcompltype() *getcmdcompltype()*
28002800
Return the type of the current command-line completion.
28012801
Only works when the command line is being edited, thus
28022802
requires use of |c_CTRL-\_e| or |c_CTRL-R_=|.
2803-
See |command-completion| for the return string.
2803+
See |:command-completion| for the return string.
28042804
Also see |getcmdtype()|, |setcmdpos()| and |getcmdline()|.
28052805
Returns an empty string when completion is not defined.
28062806

runtime/doc/map.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ modes.
105105
command applies.
106106
Use the <buffer> argument to remove buffer-local
107107
mappings |:map-<buffer>|
108-
Warning: This also removes the default mappings.
108+
Warning: This also removes the |default-mappings|.
109109

110110
:map |mapmode-nvo|
111111
:nm[ap] |mapmode-n|

runtime/ftplugin/abaqus.vim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim filetype plugin file
22
" Language: Abaqus finite element input file (www.abaqus.com)
33
" Maintainer: Carl Osterwisch <[email protected]>
4-
" Last Change: 2012 Apr 30
4+
" Last Change: 2022 May 09
55

66
" Only do this when not done yet for this buffer
77
if exists("b:did_ftplugin") | finish | endif
@@ -86,11 +86,11 @@ let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]"
8686
\ . "|unmap <buffer> <LocalLeader><LocalLeader>"
8787

8888
" Undo must be done in nocompatible mode for <LocalLeader>.
89-
let b:undo_ftplugin = "let s:cpo_save = &cpoptions|"
89+
let b:undo_ftplugin = "let b:cpo_save = &cpoptions|"
9090
\ . "set cpoptions&vim|"
9191
\ . b:undo_ftplugin
92-
\ . "|let &cpoptions = s:cpo_save"
93-
\ . "|unlet s:cpo_save"
92+
\ . "|let &cpoptions = b:cpo_save"
93+
\ . "|unlet b:cpo_save"
9494

9595
" Restore saved compatibility options
9696
let &cpoptions = s:cpo_save

runtime/pack/dist/opt/termdebug/plugin/termdebug.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"
33
" Author: Bram Moolenaar
44
" Copyright: Vim license applies, see ":help license"
5-
" Last Change: 2022 May 04
5+
" Last Change: 2022 May 09
66
"
77
" WORK IN PROGRESS - The basics works stable, more to come
88
" Note: In general you need at least GDB 7.12 because this provides the
@@ -205,8 +205,8 @@ func s:CheckGdbRunning()
205205
return 'ok'
206206
endfunc
207207

208+
" Open a terminal window without a job, to run the debugged program in.
208209
func s:StartDebug_term(dict)
209-
" Open a terminal window without a job, to run the debugged program in.
210210
execute s:vertical ? 'vnew' : 'new'
211211
let s:pty_job_id = termopen('tail -f /dev/null;#gdb program')
212212
if s:pty_job_id == 0
@@ -365,8 +365,8 @@ func s:StartDebug_term(dict)
365365
call s:StartDebugCommon(a:dict)
366366
endfunc
367367

368+
" Open a window with a prompt buffer to run gdb in.
368369
func s:StartDebug_prompt(dict)
369-
" Open a window with a prompt buffer to run gdb in.
370370
if s:vertical
371371
vertical new
372372
else

0 commit comments

Comments
 (0)