about summary refs log tree commit diff stats
path: root/src/config
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-12-03 01:17:03 +0100
committerbptato <nincsnevem662@gmail.com>2023-12-03 01:31:07 +0100
commit7728bad57be566bd86327dc843f8b950d538a2f0 (patch)
treef60c5dfa2eacf5db556d9f15c218ae438a42b19f /src/config
parentb91b64a2d54404c4ead09093c25e0002fbab1881 (diff)
downloadchawan-7728bad57be566bd86327dc843f8b950d538a2f0.tar.gz
pager, container: add text selection/copying
* Add select & copy selection functionality to container
* Fix bug in generateSwapOutput where output could be misplaced
  because of zero-width cells
* Add fromJSPromise, call runJSJobs in every iteration of the
  headed event loop
* "await" pager actions that output a promise
* Change default view source keybinding to `\'
Diffstat (limited to 'src/config')
-rw-r--r--src/config/config.nim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config/config.nim b/src/config/config.nim
index b0e33685..3cb1d10e 100644
--- a/src/config/config.nim
+++ b/src/config/config.nim
@@ -322,6 +322,8 @@ func getRealKey(key: string): string =
     realk &= 'C'
   if meta == 1:
     realk &= 'M'
+  if skip:
+    realk &= '\\'
   return realk
 
 proc openFileExpand(dir, file: string): FileStream =