Skip to content

Commit 36f5c4f

Browse files
author
Git for Windows Build Agent
committed
Update 10 packages
ca-certificates (20211016-2 -> 20241223-1) gzip (1.12-2 -> 1.13-1) less (621-2 -> 668-1) libksba (1.6.5-1 -> 1.6.7-1) libsasl (2.1.28-2 -> 2.1.28-5) libserf (1.3.9-8 -> 1.3.10-1) libssh2 (1.11.0-1 -> 1.11.1-1) nano (7.2-1 -> 8.2-1) vim (9.0.2121-1 -> 9.1.1006-2) zlib (1.2.13-1 -> 1.3.1-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent e41eedf commit 36f5c4f

File tree

3,105 files changed

+203201
-153702
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,105 files changed

+203201
-153702
lines changed

etc/nanorc

+54-44
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
## Inside string parameters, quotes should not be escaped -- the last
99
## double quote on the line will be seen as the closing quote.
1010

11+
## If you want ^F, ^B, M-F and M-B to do what they did before version 8.0:
12+
# bind ^F forward main
13+
# bind ^B back main
14+
# bind M-F formatter main
15+
# bind M-B linter main
16+
1117
## Make 'nextword' (Ctrl+Right) and 'chopwordright' (Ctrl+Delete)
1218
## stop at word ends instead of at beginnings.
1319
# set afterends
@@ -44,6 +50,10 @@
4450
## Do case-sensitive searches by default.
4551
# set casesensitive
4652

53+
## Interpret digits given on the command line after a colon after a filename
54+
## as the line number to go to in that file.
55+
# set colonparsing
56+
4757
## Constantly display the cursor position in the status bar or minibar.
4858
# set constantshow
4959

@@ -92,8 +102,8 @@
92102
# set minibar
93103

94104
## Enable mouse support, if available for your system. When enabled,
95-
## mouse clicks can be used to place the cursor, set the mark (with a
96-
## double click), and execute shortcuts. The mouse will work in the
105+
## mouse clicks can be used to place the cursor, set the mark (with
106+
## two clicks), and execute shortcuts. The mouse will work in the
97107
## X Window System, and on the console when gpm is running.
98108
# set mouse
99109

@@ -215,7 +225,7 @@ set statuscolor bold,white,green
215225
set errorcolor bold,white,red
216226
set spotlightcolor black,lightyellow
217227
set selectedcolor lightwhite,magenta
218-
set stripecolor ,yellow
228+
set stripecolor ,#444
219229
set scrollercolor cyan
220230
set numbercolor cyan
221231
set keycolor cyan
@@ -239,12 +249,12 @@ set functioncolor green
239249
## For all details, see 'man nanorc', section SYNTAX HIGHLIGHTING.
240250

241251
## To include most of the existing syntax definitions, you can do:
242-
include "/usr/share/nano/*.nanorc"
252+
# include /usr/share/nano/*.nanorc
243253

244254
## Or you can select just the ones you need. For example:
245-
include "/usr/share/nano/html.nanorc"
246-
include "/usr/share/nano/python.nanorc"
247-
include "/usr/share/nano/sh.nanorc"
255+
# include /usr/share/nano/html.nanorc
256+
# include /usr/share/nano/python.nanorc
257+
# include /usr/share/nano/sh.nanorc
248258

249259
## In /usr/share/nano/extra/ you can find some syntaxes that are
250260
## specific for certain distros or for some less common languages.
@@ -254,9 +264,6 @@ include "/usr/share/nano/sh.nanorc"
254264
## independent of the settings of 'tabsize' and 'tabstospaces':
255265
# extendsyntax python tabgives " "
256266

257-
## If <Tab> should always produce an actual TAB when editing a Makefile:
258-
# extendsyntax makefile tabgives " "
259-
260267

261268
## === Key bindings ===
262269
## For all details, see 'man nanorc', section REBINDING KEYS.
@@ -286,46 +293,49 @@ include "/usr/share/nano/sh.nanorc"
286293

287294
## For quickly uppercasing or lowercasing the word under or after the cursor.
288295
## (These effectively select a word and pipe it through a sed command.)
289-
#bind Sh-M-U "{nextword}{mark}{prevword}{execute}|sed 's/.*/\U&/'{enter}" main
290-
#bind Sh-M-L "{nextword}{mark}{prevword}{execute}|sed 's/.*/\L&/'{enter}" main
296+
# bind Sh-M-U "{nextword}{mark}{prevword}{execute}|sed 's/.*/\U&/'{enter}" main
297+
# bind Sh-M-L "{nextword}{mark}{prevword}{execute}|sed 's/.*/\L&/'{enter}" main
291298

292299
## For copying a marked region to the system clipboard:
293-
# bind Sh-M-T "{execute}|xsel -ib{enter}{undo}" main
300+
# bind Sh-M-C "{execute}|xsel -ib{enter}{undo}" main
301+
302+
## For normalizing Unicode to precomposed characters:
303+
# bind Sh-M-N "{execute}| uconv -x nfc {enter}" main
294304

295305
## For snipping trailing blanks when you save a file:
296306
# bind ^S "{execute}| sed 's/\s\+$//' {enter}{savefile}" main
297307

298308
## If you would like nano to have keybindings that are more "usual",
299309
## such as ^O for Open, ^F for Find, ^H for Help, and ^Q for Quit,
300310
## then uncomment these:
301-
#bind ^X cut main
302-
#bind ^C copy main
303-
#bind ^V paste all
304-
#bind ^Q exit all
305-
#bind ^S savefile main
306-
#bind ^W writeout main
307-
#bind ^O insert main
308-
#set multibuffer
309-
#bind ^H help all
310-
#bind ^H exit help
311-
#bind ^F whereis all
312-
#bind ^G findnext all
313-
#bind ^B wherewas all
314-
#bind ^D findprevious all
315-
#bind ^R replace main
316-
#unbind ^U all
317-
#unbind ^N main
318-
#unbind ^Y all
319-
#unbind M-J main
320-
#unbind M-T main
321-
#bind ^A mark main
322-
#bind ^P location main
323-
#bind ^T gotoline main
324-
#bind ^T gotodir browser
325-
#bind ^T cutrestoffile execute
326-
#bind ^L linter execute
327-
#bind ^E execute main
328-
#bind ^K "{mark}{end}{zap}" main
329-
#bind ^U "{mark}{home}{zap}" main
330-
#bind ^Z undo main
331-
#bind ^Y redo main
311+
# bind ^X cut main
312+
# bind ^C copy main
313+
# bind ^V paste all
314+
# bind ^Q exit all
315+
# bind ^S savefile main
316+
# bind ^W writeout main
317+
# bind ^O insert main
318+
# set multibuffer
319+
# bind ^H help all
320+
# bind ^H exit help
321+
# bind ^F whereis all
322+
# bind ^G findnext all
323+
# bind ^B wherewas all
324+
# bind ^D findprevious all
325+
# bind ^R replace main
326+
# unbind ^U all
327+
# unbind ^N main
328+
# unbind ^Y all
329+
# unbind M-J main
330+
# unbind M-T main
331+
# bind ^A mark main
332+
# bind ^P location main
333+
# bind ^T gotoline main
334+
# bind ^T gotodir browser
335+
# bind ^T cutrestoffile execute
336+
# bind ^L linter execute
337+
# bind ^E execute main
338+
# bind ^K "{mark}{end}{zap}" main
339+
# bind ^U "{mark}{home}{zap}" main
340+
# bind ^Z undo main
341+
# bind ^Y redo main
23.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)