Use a more common terminal type.

This commit is contained in:
Andrew Hamilton 2016-10-26 14:09:05 +02:00
parent cff347ae77
commit 3cf7d52a63
16 changed files with 84 additions and 84 deletions

View file

@ -1,4 +1,4 @@
┌────────────────────────────────────────────── Help ──────────────────────────────────────────────┐
(B┌────────────────────────────────────────────── Help ──────────────────────────────────────────────┐
│Vigil Code Monitor │
│ │
│Vigil shows a list of status reports for a given codebase, and keeps them │
@ -14,30 +14,30 @@
│directory. │
│ │
│Keys: │
h - Show the help screen. (toggle) │
q - Quit. │
d, c, j, k, f, v or arrow keys or mouse click - Move the cursor. │
D, C, J, K, F, V or page up, page down, home, end or the mouse wheel - │
(Bh(B - Show the help screen. (toggle) │
(Bq(B - Quit. │
(Bd(B, (Bc(B, (Bj(B, (Bk(B, (Bf(B, (Bv(B or arrow keys or mouse click - Move the cursor. │
(BD(B, (BC(B, (BJ(B, (BK(B, (BF(B, (BV(B or page up, page down, home, end or the mouse wheel - │
│ Scroll the result pane. │
t - Turn the result pane to portrait or landscape orientation. (toggle) │
l - Show the activity log. (toggle) │
e - Edit the current file with an editor defined by -e, $EDITOR or $VISUAL. │
n - Move to the next issue. │
N - Move to the next issue of the current tool. │
p - Pause workers. (toggle) │
o - Order files by type, or by directory location. (toggle) │
r - Refresh the currently selected report. │
(Bt(B - Turn the result pane to portrait or landscape orientation. (toggle) │
(Bl(B - Show the activity log. (toggle) │
(Be(B - Edit the current file with an editor defined by -e, $EDITOR or $VISUAL. │
(Bn(B - Move to the next issue. │
(BN(B - Move to the next issue of the current tool. │
(Bp(B - Pause workers. (toggle) │
(Bo(B - Order files by type, or by directory location. (toggle) │
(Br(B - Refresh the currently selected report. │
│ │
│Statuses: │
  Normal │
  Ok │
  Problem │
  Not applicable │
  Running │
  Paused │
  Timed out │
(B (B Normal │
(B (B Ok │
(B (B Problem │
(B (B Not applicable │
(B (B Running │
(B (B Paused │
(B (B Timed out │
│ . Pending │
E Error │
(BE(B Error │
│ │
│ │
│ │
@ -57,4 +57,4 @@
│ │
│ │
│ │
└──────────────────────────────────────────────────────────────────────────────────────────────────┘
└──────────────────────────────────────────────────────────────────────────────────────────────────┘(B

View file

@ -1,8 +1,8 @@
#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
 cout << "Hello World" << endl;
} 
(B#include(B (B<iostream>(B (B
(B (B
(Busing(B (Bnamespace(B std;(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B cout << (B"Hello World"(B << endl;(B
(B}(B (B

View file

@ -1,2 +1,2 @@
def hi(): 
 print("hi")
(Bdef(B (Bhi(B():(B (B
(B (Bprint(B((B"hi"(B)(B

View file

@ -1,18 +1,18 @@
size: 12.0 B (12 bytes)
permissions: ?rwxr-xr-x (755)
(Bsize:(B 12.0 B(B (12 bytes)(B
(Bpermissions:(B ?rwxr-xr-x(B (755)(B
modified time: Sun Jan 31 23:14:05 2016 (1454282045 secs)
creation time: Sun Jan 31 23:14:05 2016 (1454282045 secs)
access time: Sun Jan 31 23:14:07 2016 (1454282047 secs)
(Bmodified time:(B Sun Jan 31 23:14:05 2016(B (1454282045 secs)(B
(Bcreation time:(B Sun Jan 31 23:14:05 2016(B (1454282045 secs)(B
(Baccess time:(B Sun Jan 31 23:14:07 2016(B (1454282047 secs)(B
owner: foo (1111 uid)
group: foo (1111 gid)
(Bowner:(B foo(B (1111 uid)(B
(Bgroup:(B foo(B (1111 gid)(B
hardlinks: 2
symlink: no
(Bhardlinks:(B 2
(Bsymlink:(B no
md5: 28ca2e417cb64ea4e555efe3203642de
sha1: 8b8c0214f3f0a0d79032d1b44550064964a33a26
(Bmd5:(B 28ca2e417cb64ea4e555efe3203642de
(Bsha1:(B 8b8c0214f3f0a0d79032d1b44550064964a33a26
mime type: text/plain; charset=us-ascii
file type: ASCII text 
(Bmime type:(B text/plain; charset=us-ascii
(Bfile type:(B ASCII text (B

View file

@ -1,2 +1,2 @@
#!/usr/bin/perl 
print "Hello, world!\n";
(B#!/usr/bin/perl(B (B
(Bprint(B (B"Hello, world!\n"(B;(B

View file

@ -1,4 +1,4 @@

(B
> def hi():
> print("hi")
(B> def hi():(B
(B> print("hi")(B

View file

@ -1,4 +1,4 @@

(B
> def hi():
> print "hi"
(B> def hi():(B
(B> print "hi"(B

View file

@ -1,2 +1,2 @@
def hi():

(Bdef(B (Bhi(B():
(B

View file

@ -1,2 +1,2 @@
def hi():

(Bdef(B (Bhi(B():
(B

View file

@ -1,2 +1,2 @@


(B
(B

View file

@ -1,7 +1,7 @@
#include <stdio.h> 
 
int main() 
{ 
 printf("Hello World\n");
 return 0; 
} 
(B#include(B (B<stdio.h>(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B printf((B"Hello World\n"(B);(B
(B (Breturn(B (B0(B;(B (B
(B}(B (B

View file

@ -1,8 +1,8 @@
#include <iostream> 
 
using namespace std; 
 
int main() 
{ 
 cout << "Hello World" << endl;
} 
(B#include(B (B<iostream>(B (B
(B (B
(Busing(B (Bnamespace(B std;(B (B
(B (B
(Bint(B (Bmain(B()(B (B
(B{(B (B
(B cout << (B"Hello World"(B << endl;(B
(B}(B (B

View file

@ -1,6 +1,6 @@
#ifndef HELLO_H
#define HELLO_H
 
void hello(); 
 
#endif 
(B#ifndef HELLO_H(B
(B#define HELLO_H(B
(B (B
(Bvoid(B (Bhello(B();(B (B
(B (B
(B#endif(B (B