Authentication-Results: mail-b.sr.ht; dkim=pass header.d=torresjrjr.com header.i=@torresjrjr.com Received: from transit01.runbox.com (transit01.runbox.com [91.220.196.211]) by mail-b.sr.ht (Postfix) with ESMTPS id 5AA7E11EEDD for <~adnano/astronaut-devel@lists.sr.ht>; Wed, 3 Nov 2021 21:47:17 +0000 (UTC) Received: from aibo.runbox.com ([185.226.149.25]) by transit01.runbox.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1miO6D-004PcH-MG for ~adnano/astronaut-devel@lists.sr.ht; Wed, 03 Nov 2021 22:47:13 +0100 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=torresjrjr.com; s=selector1; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=e7a379cPE3Qrak/bKHrQWWjgQIgf6GKRqqw3dhA92qw=; b=TpjtZynG3g62CZ54AZlmMUpOjH +6P7+UlzvHvU8tpoHRJ9dnCr/Sm4mzh4uPUh4YETURSmRl1B33jEBPDFD3cRjeD/cvNXmFCeZ/seo xsLMsyNiXL/DCyGyD6YA1U80IpRYcaDR+v1DMMdqztnYsfcjmREOYsl7H/QXOTeSnM7BPROm/9LlC kHFzrtEWcrFmwuDNVhbWxQOS5/BPBuWACxLeJ/X58aAVy8N6COwVJndJZPcVXxfUecRE7ffRgy2Mm 2wEthfeY9xRxXlYF2K8Mh28HgygJIwOA8q5526ikaUvmkDzun2QrQe15ImAqIT50+S6JecSO7d4jl HMSMFXqQ==; Received: from [10.9.9.72] (helo=submission01.runbox) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1miO6C-00070z-1x for ~adnano/astronaut-devel@lists.sr.ht; Wed, 03 Nov 2021 22:47:12 +0100 Received: by submission01.runbox with esmtpsa [Authenticated ID (996397)] (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) id 1miO5s-0005r4-3i; Wed, 03 Nov 2021 22:46:52 +0100 From: Byron Torres To: ~adnano/astronaut-devel@lists.sr.ht Cc: Byron Torres Subject: [PATCH 2/2] config: Add scroll bindings u and d Date: Wed, 3 Nov 2021 21:46:37 +0000 Message-Id: <20211103214637.1228117-2-b@torresjrjr.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211103214637.1228117-1-b@torresjrjr.com> References: <20211103214637.1228117-1-b@torresjrjr.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- A subjective patch. I found u and d unused, so: - In vi/vim, ^U and ^D are used for full-page scrolling, typically a nuisance, and already purposed by PGUP and PGDN. I often `8^D^D^D...` or `8^U^U^U...` (my middle finger reaches 8 the easiest). - In browser plugins like vimium-C, u and d are used for "fast scrolling", which I personally use extensively. Perhaps others are used to this too. So I thought is would be sensible to make these defaults. config/astronaut.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/astronaut.conf b/config/astronaut.conf index 8cdd7c8..d12d0b8 100644 --- a/config/astronaut.conf +++ b/config/astronaut.conf @@ -32,10 +32,12 @@ bind J tab prev bind K tab next bind pgup scroll -100% bind pgdn scroll 100% +bind u scroll -8 +bind d scroll 8 bind up scroll -1 -bind j scroll 1 bind down scroll 1 bind k scroll -1 +bind j scroll 1 bind g scroll top bind G scroll bottom bind b bookmark -- 2.33.1