← Back to team overview

ubuntu-touch-coreapps-reviewers team mailing list archive

[Merge] lp:~manglasape/ubuntu-terminal-app/nanoProfile into lp:ubuntu-terminal-app

 

Manglasape has proposed merging lp:~manglasape/ubuntu-terminal-app/nanoProfile into lp:ubuntu-terminal-app.

Requested reviews:
  Ubuntu Terminal Developers (ubuntu-terminal-dev)

For more details, see:
https://code.launchpad.net/~manglasape/ubuntu-terminal-app/nanoProfile/+merge/254156

Added a profile for Nano to use Ctrl+C, Ctrl+X, Ctrl+O, and all the commands to use nano in the phone.
-- 
Your team Ubuntu Terminal Developers is requested to review the proposed merge of lp:~manglasape/ubuntu-terminal-app/nanoProfile into lp:ubuntu-terminal-app.
=== added file 'src/app/qml/KeyboardRows/Layouts/Nano.json'
--- src/app/qml/KeyboardRows/Layouts/Nano.json	1970-01-01 00:00:00 +0000
+++ src/app/qml/KeyboardRows/Layouts/Nano.json	2015-03-25 21:11:47 +0000
@@ -0,0 +1,104 @@
+{
+    "name" : "GNU nano",
+    "short_name" : "Nano",
+
+    "buttons": [
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+G",
+                "key" : "G",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+O",
+                "key" : "O",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+R",
+                "key" : "R",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+Y",
+                "key" : "Y",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+K",
+                "key" : "K",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+C",
+                "key" : "C",
+                "mod" : "Control"
+            }
+
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+X",
+                "key" : "X",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+J",
+                "key" : "J",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+W",
+                "key" : "W",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+V",
+                "key" : "V",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+U",
+                "key" : "U",
+                "mod" : "Control"
+            }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "text" : "CTRL+T",
+                "key" : "T",
+                "mod" : "Control"
+            }
+        }
+    ]
+}


Follow ups