Allow hunk navigation by using j/k keys

This commit is contained in:
Pieter de Bie
2008-09-12 22:11:25 +02:00
parent 78e45bd22c
commit c3c4f98c66
10 changed files with 152 additions and 21 deletions
+14 -3
View File
@@ -1,14 +1,21 @@
code .delline {
code .delline, code .oldfile {
background-color: #FEE;
color: #B00;
}
code .addline {
code .addline, code .newfile {
background-color: #DFD;
color: #080;
}
code .fileline {
font-weight: bold;
}
code .meta {
code .fileheader {
margin-top: 20px;
}
code .hunkheader {
background-color: #f7f7f7;
color: #bbb;
}
@@ -22,4 +29,8 @@ pre code {
display: table-cell;
padding: 9px;
width: 100%;
}
#CurrentHunk {
border-left: 5px solid black;
}