Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-1423 Documentation #169

Merged
merged 6 commits into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
*** xref:documentation/payara-server/asadmin-commands/misc-commands.adoc[Miscellaneous Commands]
*** xref:documentation/payara-server/asadmin-commands/disabling-jline.adoc[Disabling JLine]
*** xref:documentation/payara-server/asadmin-commands/auto-naming.adoc[Auto-Naming]
*** xref:documentation/payara-server/asadmin-commands/Enable-JLine-Event-Expansion.adoc[Enable JLine Event Expansion]
** xref:documentation/payara-server/rest-api/rest-api-documentation.adoc[REST API Documentation]
*** xref:documentation/payara-server/rest-api/overview.adoc[Overview]
*** xref:documentation/payara-server/rest-api/security.adoc[Security]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
= Enable JLine Event Expansion

Enable this feature if you would like the ability to use the JLine special characters in the Asadmin multimode.

This is disabled by default.

== Enabling JLine Event Expansion
Set the environment variable `+AS_ADMIN_DISABLE_EVENT_EXPANSION+` to `+false+`

=== For Linux
. Open the Terminal
. Tyoe the following command
kalinchan marked this conversation as resolved.
Show resolved Hide resolved
+
----
export AS_ADMIN_DISABLE_EVENT_EXPANSION=false
----
+
. Check that the variable is set by typing the following command
+
----
echo $AS_ADMIN_DISABLE_EVENT_EXPANSION
----
+


=== For Windows
. Open Command Prompt as an Administrator
. Type the following commands
+
----
setx AS_ADMIN_DISABLE_EVENT_EXPANSION "false" /m
set AS_ADMIN_DISABLE_EVENT_EXPANSION=false
----
+
. Check that the vraible is set by typing the following command
+
----
echo %AS_ADMIN_DISABLE_EVENT_EXPANSION%
----
+
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Here's a list of Payara Server Asadmin commands that are not supported by GlassF
- xref:/documentation/payara-server/asadmin-commands/server-management-commands.adoc[Server Management Commands]
- xref:/documentation/payara-server/asadmin-commands/print-certificate.adoc[Print Certificate Command]
- xref:/documentation/payara-server/asadmin-commands/misc-commands.adoc[Miscellaneous Commands]
- xref:/documentation/payara-server/asadmin-commands/Enable-JLine-Event-Expansion.adoc[Enable JLine Event Expansion]

== Command Autocompletion

Expand Down