mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Recognize csh, not yet supported though
This commit is contained in:
parent
67654f3005
commit
0f6616195a
2 changed files with 3 additions and 0 deletions
|
@ -22,6 +22,7 @@ enterLockPassword=Enter lock password
|
|||
repeatPassword=Repeat password
|
||||
askpassAlertTitle=Askpass
|
||||
nullPointer=Null Pointer
|
||||
unsupportedOperation=Unsupported operation: $MSG$
|
||||
moveAlertTitle=Confirm move
|
||||
moveAlertHeader=Do you want to move the ($COUNT$) selected elements into $TARGET$?
|
||||
deleteAlertTitle=Confirm deletion
|
||||
|
|
|
@ -16,6 +16,7 @@ public class ShellDialects {
|
|||
public static ShellDialect DASH;
|
||||
public static ShellDialect BASH;
|
||||
public static ShellDialect ZSH;
|
||||
public static ShellDialect CSH;
|
||||
|
||||
public static class Loader implements ModuleLayerLoader {
|
||||
|
||||
|
@ -31,6 +32,7 @@ public class ShellDialects {
|
|||
DASH = byName("dash");
|
||||
BASH = byName("bash");
|
||||
ZSH = byName("zsh");
|
||||
CSH = byName("csh");
|
||||
SH = byName("sh");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue