summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/configure/node.def1
-rw-r--r--templates/terminal/key/node.def1
-rw-r--r--templates/terminal/key/query-help/node.def1
-rw-r--r--templates/terminal/key/query-help/node.tag/node.def9
-rw-r--r--templates/terminal/key/space-complete/node.def1
-rw-r--r--templates/terminal/key/space-complete/node.tag/node.def9
-rw-r--r--templates/terminal/node.def2
7 files changed, 23 insertions, 1 deletions
diff --git a/templates/configure/node.def b/templates/configure/node.def
index 67e17af..5d30510 100644
--- a/templates/configure/node.def
+++ b/templates/configure/node.def
@@ -1,2 +1,3 @@
help: Enter configure mode
run: export _OFR_CONFIGURE=ok; newgrp vyattacfg; unset _OFR_CONFIGURE
+ _vyatta_op_do_key_bindings
diff --git a/templates/terminal/key/node.def b/templates/terminal/key/node.def
new file mode 100644
index 0000000..3303752
--- /dev/null
+++ b/templates/terminal/key/node.def
@@ -0,0 +1 @@
+help: Configure key behaviors
diff --git a/templates/terminal/key/query-help/node.def b/templates/terminal/key/query-help/node.def
new file mode 100644
index 0000000..c15f556
--- /dev/null
+++ b/templates/terminal/key/query-help/node.def
@@ -0,0 +1 @@
+help: Enable/disable getting help using question mark
diff --git a/templates/terminal/key/query-help/node.tag/node.def b/templates/terminal/key/query-help/node.tag/node.def
new file mode 100644
index 0000000..8564490
--- /dev/null
+++ b/templates/terminal/key/query-help/node.tag/node.def
@@ -0,0 +1,9 @@
+help: Enable/disable getting help using question mark (default enabled)
+allowed: echo -n 'enable' 'disable'
+run: if [ "$4" == 'disable' ]; then
+ touch $HOME/.vyatta_key_query_help_disable
+ bind '"?": self-insert'
+ else
+ rm -f $HOME/.vyatta_key_query_help_disable
+ bind '"?": possible-completions'
+ fi
diff --git a/templates/terminal/key/space-complete/node.def b/templates/terminal/key/space-complete/node.def
new file mode 100644
index 0000000..e02e272
--- /dev/null
+++ b/templates/terminal/key/space-complete/node.def
@@ -0,0 +1 @@
+help: Enable/disable space-completion
diff --git a/templates/terminal/key/space-complete/node.tag/node.def b/templates/terminal/key/space-complete/node.tag/node.def
new file mode 100644
index 0000000..0b5c40a
--- /dev/null
+++ b/templates/terminal/key/space-complete/node.tag/node.def
@@ -0,0 +1,9 @@
+help: Enable/disable space-completion (default enabled)
+allowed: echo -n 'enable' 'disable'
+run: if [ "$4" == 'disable' ]; then
+ touch $HOME/.vyatta_key_space_complete_disable
+ bind '" ": self-insert'
+ else
+ rm -f $HOME/.vyatta_key_space_complete_disable
+ bind '" ": complete'
+ fi
diff --git a/templates/terminal/node.def b/templates/terminal/node.def
index 85b7c7f..cdc1793 100644
--- a/templates/terminal/node.def
+++ b/templates/terminal/node.def
@@ -1 +1 @@
-help: Control terminal paging
+help: Control terminal behaviors