this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add space and enter keys to move to the next slide

* Added SPACE and ENTER key to be acceptable keys to move to the NEXT
slide

* Updated readme to detail using space or enter to navigate to next slide

authored by

Benjamin Kadel and committed by
GitHub
31f2a18e 06df2ace

+2 -1
+1
readme.md
··· 7 7 8 8 - All slides are plain-text files. 9 9 - Navigation using `j` / `k` or `n` / `p`. 10 + - You can also navigate to the next slide using `SPACE` or `ENTER`. 10 11 - Text color and style formatting. 11 12 - Pure bash. 12 13
+1 -1
shlide
··· 151 151 display "$(<"${slides[$i]}")" "${slides[$i]}" "$i" "${#slides[@]}" 152 152 read -rsn1 input 153 153 case "$input" in 154 - "j"|"n") 154 + "j"|"n"|"") 155 155 ((++i)) 156 156 ;; 157 157 "k"|"p")