mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Formatting and style updates
This commit is contained in:
parent
d4c881791f
commit
2da81b0ae7
18 changed files with 115 additions and 79 deletions
|
@ -100,23 +100,46 @@ static int hex_to_bin(const wchar_t &c)
|
||||||
{
|
{
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case L'0': return 0;
|
case L'0':
|
||||||
case L'1': return 1;
|
return 0;
|
||||||
case L'2': return 2;
|
case L'1':
|
||||||
case L'3': return 3;
|
return 1;
|
||||||
case L'4': return 4;
|
case L'2':
|
||||||
case L'5': return 5;
|
return 2;
|
||||||
case L'6': return 6;
|
case L'3':
|
||||||
case L'7': return 7;
|
return 3;
|
||||||
case L'8': return 8;
|
case L'4':
|
||||||
case L'9': return 9;
|
return 4;
|
||||||
case L'a': case L'A': return 10;
|
case L'5':
|
||||||
case L'b': case L'B': return 11;
|
return 5;
|
||||||
case L'c': case L'C': return 12;
|
case L'6':
|
||||||
case L'd': case L'D': return 13;
|
return 6;
|
||||||
case L'e': case L'E': return 14;
|
case L'7':
|
||||||
case L'f': case L'F': return 15;
|
return 7;
|
||||||
default: return -1;
|
case L'8':
|
||||||
|
return 8;
|
||||||
|
case L'9':
|
||||||
|
return 9;
|
||||||
|
case L'a':
|
||||||
|
case L'A':
|
||||||
|
return 10;
|
||||||
|
case L'b':
|
||||||
|
case L'B':
|
||||||
|
return 11;
|
||||||
|
case L'c':
|
||||||
|
case L'C':
|
||||||
|
return 12;
|
||||||
|
case L'd':
|
||||||
|
case L'D':
|
||||||
|
return 13;
|
||||||
|
case L'e':
|
||||||
|
case L'E':
|
||||||
|
return 14;
|
||||||
|
case L'f':
|
||||||
|
case L'F':
|
||||||
|
return 15;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -124,15 +147,24 @@ static int octal_to_bin(wchar_t c)
|
||||||
{
|
{
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
case L'0': return 0;
|
case L'0':
|
||||||
case L'1': return 1;
|
return 0;
|
||||||
case L'2': return 2;
|
case L'1':
|
||||||
case L'3': return 3;
|
return 1;
|
||||||
case L'4': return 4;
|
case L'2':
|
||||||
case L'5': return 5;
|
return 2;
|
||||||
case L'6': return 6;
|
case L'3':
|
||||||
case L'7': return 7;
|
return 3;
|
||||||
default: return -1;
|
case L'4':
|
||||||
|
return 4;
|
||||||
|
case L'5':
|
||||||
|
return 5;
|
||||||
|
case L'6':
|
||||||
|
return 6;
|
||||||
|
case L'7':
|
||||||
|
return 7;
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
3
exec.cpp
3
exec.cpp
|
@ -590,7 +590,8 @@ void exec(parser_t &parser, job_t *j)
|
||||||
CHECK(j,);
|
CHECK(j,);
|
||||||
CHECK_BLOCK();
|
CHECK_BLOCK();
|
||||||
|
|
||||||
if (no_exec) {
|
if (no_exec)
|
||||||
|
{
|
||||||
exec_no_exec(parser, j);
|
exec_no_exec(parser, j);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1377,9 +1377,12 @@ void highlight_shell(const wcstring &buff, std::vector<int> &color, size_t pos,
|
||||||
for (size_t i=0; i < buff.size(); i++)
|
for (size_t i=0; i < buff.size(); i++)
|
||||||
{
|
{
|
||||||
int ¤t_val = color.at(i);
|
int ¤t_val = color.at(i);
|
||||||
if (current_val >= 0) {
|
if (current_val >= 0)
|
||||||
|
{
|
||||||
last_val = current_val;
|
last_val = current_val;
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
current_val = last_val; //note - this writes into the vector
|
current_val = last_val; //note - this writes into the vector
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue