From 8300c55374831d7c8dfdb820bda834639a90afaf Mon Sep 17 00:00:00 2001 From: Manuel Eggimann Date: Sat, 18 Apr 2020 01:01:28 +0200 Subject: [PATCH 1/2] Send \x08 instead of \x7f when pressing backspace --- js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/app.js b/js/app.js index 754d2fa..ca7d5d4 100644 --- a/js/app.js +++ b/js/app.js @@ -195,6 +195,10 @@ function setupHterm() { }], ]); + //Send backspace \x08 instead of delete (\x7f) when pressing the backspace + // key + term.prefs_.set('backspace-sends-backspace', true) + // Useful for console debugging. window.term_ = term; } From 364b41fd9950c004a657f8b1d229cd7c3f759ab3 Mon Sep 17 00:00:00 2001 From: meggiman Date: Sat, 18 Apr 2020 01:20:32 +0200 Subject: [PATCH 2/2] Set theme jekyll-theme-cayman --- _config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 _config.yml diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..c419263 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-cayman \ No newline at end of file