mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-04-01 09:25:13 +08:00
Style fix for sub-line comments
This commit is contained in:
parent
b4a4a7c611
commit
8ca88f14f7
doc_src
@ -395,7 +395,7 @@ A comma separated list of characters enclosed in curly braces will be expanded s
|
||||
Example:
|
||||
|
||||
\fish
|
||||
echo input.{c,h,txt} outputs 'input.c input.h input.txt'
|
||||
echo input.{c,h,txt} # Outputs 'input.c input.h input.txt'
|
||||
\endfish
|
||||
|
||||
The command `mv *.{c,h} src/` moves all files with the suffix '.c' or '.h' to the subdirectory src.
|
||||
|
@ -87,7 +87,7 @@ a { color: #3d5cb3; }
|
||||
.fish_right_bar a:hover { text-decoration: underline; }
|
||||
/* Adjust lists */
|
||||
.fish_left_bar ul {
|
||||
padding-left: 1.4rem;
|
||||
padding-left: 2rem;
|
||||
padding-right: 1rem;
|
||||
}
|
||||
.fish_right_bar ul {
|
||||
@ -171,10 +171,30 @@ h1 > code, h2 > code, h3 > code {
|
||||
line-height: 1.9rem;
|
||||
color: #333;
|
||||
background-color: #fafafa;
|
||||
/*color: #00afff;*/
|
||||
/*background-color: #111;*/
|
||||
border: 1px solid #eee;
|
||||
border-radius: 0.6rem;
|
||||
}
|
||||
|
||||
.comment { color: #555; }
|
||||
.command, .function, .binary { color: #23326b; }
|
||||
.string { color: #725000; }
|
||||
|
||||
/*.comment { color: #c33; }
|
||||
.command, .function, .binary { color: #2568e2; }
|
||||
.argument, .variable, .path, .file { color: #00afff; }
|
||||
.redirect { color: #fff; }
|
||||
.operator, .match, .history { color: #2ff; }
|
||||
.string { color: #c07d2f; }
|
||||
.suggest { color: #555; }
|
||||
.error { color: #f33; font-weight: bold; }
|
||||
.match { color: #2ff; }
|
||||
.search_match { background-color: #f2f; }
|
||||
.cwd { color: #2f2; }
|
||||
.prompt { color: #fff; }
|
||||
.cursor { border-bottom: 2px solid #ccc; }
|
||||
.underline { text-decoration: underline; }*/
|
||||
|
||||
.synopsis {
|
||||
background-color: #fafafa;
|
||||
|
Loading…
x
Reference in New Issue
Block a user