ShellPkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
Main file for Edit shell Debug1 function.
|
||||
|
||||
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
|
||||
Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>
|
||||
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -59,7 +59,7 @@ ShellCommandRunEdit (
|
||||
Status = ShellCommandLineParse (EmptyParamList, &Package, &ProblemParam, TRUE);
|
||||
if (EFI_ERROR(Status)) {
|
||||
if (Status == EFI_VOLUME_CORRUPTED && ProblemParam != NULL) {
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellDebug1HiiHandle, L"edit", ProblemParam);
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellDebug1HiiHandle, L"edit", ProblemParam);
|
||||
FreePool(ProblemParam);
|
||||
ShellStatus = SHELL_INVALID_PARAMETER;
|
||||
} else {
|
||||
@ -67,7 +67,7 @@ ShellCommandRunEdit (
|
||||
}
|
||||
} else {
|
||||
if (ShellCommandLineGetCount(Package) > 2) {
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_MANY), gShellDebug1HiiHandle, L"edit");
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_TOO_MANY), gShellDebug1HiiHandle, L"edit");
|
||||
ShellStatus = SHELL_INVALID_PARAMETER;
|
||||
} else {
|
||||
Cwd = gEfiShellProtocol->GetCurDir(NULL);
|
||||
@ -86,7 +86,7 @@ ShellCommandRunEdit (
|
||||
}
|
||||
gEfiShellProtocol->SetCurDir(NULL, Nfs);
|
||||
FreePool(Nfs);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -135,7 +135,7 @@ ShellCommandRunEdit (
|
||||
//
|
||||
if (Status == EFI_SUCCESS) {
|
||||
} else if (Status == EFI_OUT_OF_RESOURCES) {
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN(STR_GEN_OUT_MEM), gShellDebug1HiiHandle, L"edit");
|
||||
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN(STR_GEN_OUT_MEM), gShellDebug1HiiHandle, L"edit");
|
||||
} else {
|
||||
if (Buffer != NULL) {
|
||||
if (StrCmp (Buffer, L"") != 0) {
|
||||
|
@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
Implements filebuffer interface functions.
|
||||
|
||||
Copyright (c) 2005 - 2016, Intel Corporation. All rights reserved. <BR>
|
||||
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -53,7 +53,7 @@ EFI_EDITOR_FILE_BUFFER FileBufferConst = {
|
||||
//
|
||||
// the whole edit area needs to be refreshed
|
||||
//
|
||||
BOOLEAN FileBufferNeedRefresh;
|
||||
BOOLEAN FileBufferNeedRefresh;
|
||||
|
||||
//
|
||||
// only the current line in edit area needs to be refresh
|
||||
@ -144,7 +144,7 @@ FileBufferBackup (
|
||||
|
||||
/**
|
||||
Advance to the next Count lines
|
||||
|
||||
|
||||
@param[in] Count The line number to advance by.
|
||||
@param[in] CurrentLine The pointer to the current line structure.
|
||||
@param[in] LineList The pointer to the linked list of lines.
|
||||
@ -183,7 +183,7 @@ InternalEditorMiscLineAdvance (
|
||||
|
||||
/**
|
||||
Retreat to the previous Count lines.
|
||||
|
||||
|
||||
@param[in] Count The line number to retreat by.
|
||||
@param[in] CurrentLine The pointer to the current line structure.
|
||||
@param[in] LineList The pointer to the linked list of lines.
|
||||
@ -222,7 +222,7 @@ InternalEditorMiscLineRetreat (
|
||||
|
||||
/**
|
||||
Advance/Retreat lines
|
||||
|
||||
|
||||
@param[in] Count line number to advance/retreat
|
||||
>0 : advance
|
||||
<0 : retreat
|
||||
@ -484,7 +484,7 @@ FileBufferPrintLine (
|
||||
UINTN Limit;
|
||||
CHAR16 *PrintLine;
|
||||
CHAR16 *PrintLine2;
|
||||
UINTN BufLen;
|
||||
UINTN BufLen;
|
||||
|
||||
//
|
||||
// print start from correct character
|
||||
@ -710,7 +710,7 @@ FileBufferCreateLine (
|
||||
Set FileName field in FileBuffer.
|
||||
|
||||
@param Str The file name to set.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The filename was successfully set.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@retval EFI_INVALID_PARAMETER Str is not a valid filename.
|
||||
@ -763,10 +763,10 @@ FileBufferFree (
|
||||
|
||||
/**
|
||||
Read a file from disk into the FileBuffer.
|
||||
|
||||
|
||||
@param[in] FileName The filename to read.
|
||||
@param[in] Recover TRUE if is for recover mode, no information printouts.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The load was successful.
|
||||
@retval EFI_LOAD_ERROR The load failed.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@ -823,7 +823,7 @@ FileBufferRead (
|
||||
}
|
||||
|
||||
Info = ShellGetFileInfo(FileHandle);
|
||||
|
||||
|
||||
if (Info->Attribute & EFI_FILE_DIRECTORY) {
|
||||
StatusBarSetStatusString (L"Directory Can Not Be Edited");
|
||||
FreePool (Info);
|
||||
@ -1397,7 +1397,7 @@ UnicodeToAscii (
|
||||
@param[in] FileName The file name for writing.
|
||||
|
||||
@retval EFI_SUCCESS Data was written.
|
||||
@retval EFI_LOAD_ERROR
|
||||
@retval EFI_LOAD_ERROR
|
||||
@retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file.
|
||||
**/
|
||||
EFI_STATUS
|
||||
@ -1472,7 +1472,7 @@ FileBufferSave (
|
||||
FreePool(Info);
|
||||
return EFI_LOAD_ERROR;
|
||||
}
|
||||
|
||||
|
||||
if (Info != NULL) {
|
||||
Attribute = Info->Attribute & ~EFI_FILE_READ_ONLY;
|
||||
FreePool(Info);
|
||||
@ -1550,7 +1550,7 @@ FileBufferSave (
|
||||
Size = TotalSize - LeftSize;
|
||||
Status = ShellWriteFile (FileHandle, &Size, Cache);
|
||||
if (EFI_ERROR (Status)) {
|
||||
ShellDeleteFile (&FileHandle);
|
||||
ShellDeleteFile (&FileHandle);
|
||||
FreePool (Cache);
|
||||
return EFI_LOAD_ERROR;
|
||||
}
|
||||
@ -1911,7 +1911,7 @@ FileBufferDoReturn (
|
||||
}
|
||||
|
||||
/**
|
||||
Delete current character from current line. This is the effect caused
|
||||
Delete current character from current line. This is the effect caused
|
||||
by the 'del' key.
|
||||
|
||||
@retval EFI_SUCCESS
|
||||
@ -2023,7 +2023,7 @@ FileBufferScrollRight (
|
||||
/**
|
||||
Insert a char into line
|
||||
|
||||
|
||||
|
||||
@param[in] Line The line to insert into.
|
||||
@param[in] Char The char to insert.
|
||||
@param[in] Pos The position to insert the char at ( start from 0 ).
|
||||
@ -2395,7 +2395,7 @@ FileBufferEnd (
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
Dispatch input to different handler
|
||||
@param[in] Key The input key. One of:
|
||||
ASCII KEY
|
||||
@ -2610,7 +2610,7 @@ RightCurrentScreen (
|
||||
|
||||
/**
|
||||
Advance/Retreat lines and set CurrentLine in FileBuffer to it
|
||||
|
||||
|
||||
@param[in] Count The line number to advance/retreat
|
||||
>0 : advance
|
||||
<0: retreat
|
||||
@ -2756,7 +2756,7 @@ FileBufferMovePosition (
|
||||
/**
|
||||
Cut current line out and return a pointer to it.
|
||||
|
||||
@param[out] CutLine Upon a successful return pointer to the pointer to
|
||||
@param[out] CutLine Upon a successful return pointer to the pointer to
|
||||
the allocated cut line.
|
||||
|
||||
@retval EFI_SUCCESS The cut was successful.
|
||||
@ -2930,7 +2930,7 @@ FileBufferSearch (
|
||||
|
||||
Column = 0;
|
||||
Position = 0;
|
||||
|
||||
|
||||
//
|
||||
// search if in current line
|
||||
//
|
||||
@ -2949,7 +2949,7 @@ FileBufferSearch (
|
||||
if (CharPos != NULL) {
|
||||
Position = CharPos - Current + 1;
|
||||
Found = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// found
|
||||
@ -2971,8 +2971,8 @@ FileBufferSearch (
|
||||
if (CharPos != NULL) {
|
||||
Position = CharPos - Line->Buffer + 1;
|
||||
Found = TRUE;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (Found) {
|
||||
//
|
||||
// found
|
||||
|
@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
Declares filebuffer interface functions.
|
||||
|
||||
Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR>
|
||||
Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
@ -50,7 +50,7 @@ FileBufferRefresh (
|
||||
VOID
|
||||
);
|
||||
|
||||
/**
|
||||
/**
|
||||
Dispatch input to different handler
|
||||
@param[in] Key The input key. One of:
|
||||
ASCII KEY
|
||||
@ -98,7 +98,7 @@ FileBufferRestorePosition (
|
||||
Set FileName field in FileBuffer.
|
||||
|
||||
@param Str The file name to set.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The filename was successfully set.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@retval EFI_INVALID_PARAMETER Str is not a valid filename.
|
||||
@ -110,10 +110,10 @@ FileBufferSetFileName (
|
||||
|
||||
/**
|
||||
Read a file from disk into the FileBuffer.
|
||||
|
||||
|
||||
@param[in] FileName The filename to read.
|
||||
@param[in] Recover TRUE if is for recover mode, no information printouts.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The load was successful.
|
||||
@retval EFI_LOAD_ERROR The load failed.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@ -131,7 +131,7 @@ FileBufferRead (
|
||||
@param[in] FileName The file name for writing.
|
||||
|
||||
@retval EFI_SUCCESS Data was written.
|
||||
@retval EFI_LOAD_ERROR
|
||||
@retval EFI_LOAD_ERROR
|
||||
@retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file.
|
||||
**/
|
||||
EFI_STATUS
|
||||
@ -154,7 +154,7 @@ FileBufferMovePosition (
|
||||
/**
|
||||
Cut current line out and return a pointer to it.
|
||||
|
||||
@param[out] CutLine Upon a successful return pointer to the pointer to
|
||||
@param[out] CutLine Upon a successful return pointer to the pointer to
|
||||
the allocated cut line.
|
||||
|
||||
@retval EFI_SUCCESS The cut was successful.
|
||||
|
@ -77,7 +77,7 @@ MainCommandGotoLine (
|
||||
/**
|
||||
Save current file to disk, you can save to current file name or
|
||||
save to another file name.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The file was saved correctly.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@retval EFI_LOAD_ERROR A file access error occured.
|
||||
@ -1136,7 +1136,7 @@ MainCommandGotoLine (
|
||||
/**
|
||||
Save current file to disk, you can save to current file name or
|
||||
save to another file name.
|
||||
|
||||
|
||||
@retval EFI_SUCCESS The file was saved correctly.
|
||||
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
|
||||
@retval EFI_LOAD_ERROR A file access error occured.
|
||||
@ -1150,7 +1150,7 @@ MainCommandSaveFile (
|
||||
CHAR16 *FileName;
|
||||
BOOLEAN OldFile;
|
||||
CHAR16 *Str;
|
||||
SHELL_FILE_HANDLE FileHandle;
|
||||
SHELL_FILE_HANDLE FileHandle;
|
||||
EFI_FILE_INFO *Info;
|
||||
|
||||
//
|
||||
@ -1280,15 +1280,15 @@ MainCommandSaveFile (
|
||||
StatusBarSetStatusString (L"Open Failed");
|
||||
FreePool (FileName);
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
}
|
||||
|
||||
Info = ShellGetFileInfo(FileHandle);
|
||||
if (Info == NULL) {
|
||||
StatusBarSetStatusString (L"Access Denied");
|
||||
FreePool (FileName);
|
||||
return (EFI_SUCCESS);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (Info->Attribute & EFI_FILE_READ_ONLY) {
|
||||
StatusBarSetStatusString (L"Access Denied - Read Only");
|
||||
FreePool (Info);
|
||||
@ -1365,13 +1365,13 @@ MainCommandDisplayHelp (
|
||||
EFI_KEY_DATA KeyData;
|
||||
EFI_STATUS Status;
|
||||
UINTN EventIndex;
|
||||
|
||||
|
||||
//
|
||||
// print helpInfo
|
||||
// print helpInfo
|
||||
//
|
||||
for (CurrentLine = 0; 0 != MainMenuHelpInfo[CurrentLine]; CurrentLine++) {
|
||||
InfoString = HiiGetString(gShellDebug1HiiHandle, MainMenuHelpInfo[CurrentLine], NULL);
|
||||
ShellPrintEx (0, CurrentLine+1, L"%E%s%N", InfoString);
|
||||
ShellPrintEx (0, CurrentLine+1, L"%E%s%N", InfoString);
|
||||
}
|
||||
|
||||
//
|
||||
@ -1414,7 +1414,7 @@ MainCommandDisplayHelp (
|
||||
FileBufferRestorePosition ();
|
||||
FileBufferNeedRefresh = TRUE;
|
||||
FileBufferOnlyLineNeedRefresh = FALSE;
|
||||
FileBufferRefresh ();
|
||||
FileBufferRefresh ();
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
@ -1649,10 +1649,10 @@ MainEditorRefresh (
|
||||
//
|
||||
// call the components refresh function
|
||||
//
|
||||
if (EditorFirst
|
||||
|| StrCmp (FileBufferBackupVar.FileName, FileBuffer.FileName) != 0
|
||||
|| FileBufferBackupVar.FileType != FileBuffer.FileType
|
||||
|| FileBufferBackupVar.FileModified != FileBuffer.FileModified
|
||||
if (EditorFirst
|
||||
|| StrCmp (FileBufferBackupVar.FileName, FileBuffer.FileName) != 0
|
||||
|| FileBufferBackupVar.FileType != FileBuffer.FileType
|
||||
|| FileBufferBackupVar.FileModified != FileBuffer.FileModified
|
||||
|| FileBufferBackupVar.ReadOnly != FileBuffer.ReadOnly) {
|
||||
|
||||
MainTitleBarRefresh (MainEditor.FileBuffer->FileName, MainEditor.FileBuffer->FileType, MainEditor.FileBuffer->ReadOnly, MainEditor.FileBuffer->FileModified, MainEditor.ScreenSize.Column, MainEditor.ScreenSize.Row, 0, 0);
|
||||
@ -1660,8 +1660,8 @@ MainEditorRefresh (
|
||||
}
|
||||
|
||||
if (EditorFirst
|
||||
|| FileBufferBackupVar.FilePosition.Row != FileBuffer.FilePosition.Row
|
||||
|| FileBufferBackupVar.FilePosition.Column != FileBuffer.FilePosition.Column
|
||||
|| FileBufferBackupVar.FilePosition.Row != FileBuffer.FilePosition.Row
|
||||
|| FileBufferBackupVar.FilePosition.Column != FileBuffer.FilePosition.Column
|
||||
|| FileBufferBackupVar.ModeInsert != FileBuffer.ModeInsert
|
||||
|| StatusBarGetRefresh()) {
|
||||
|
||||
@ -1906,9 +1906,9 @@ MainEditorKeyInput (
|
||||
Status = MenuBarDispatchFunctionKey (&KeyData.Key);
|
||||
} else {
|
||||
StatusBarSetStatusString (L"Unknown Command");
|
||||
FileBufferMouseNeedRefresh = FALSE;
|
||||
FileBufferMouseNeedRefresh = FALSE;
|
||||
}
|
||||
|
||||
|
||||
if (Status != EFI_SUCCESS && Status != EFI_OUT_OF_RESOURCES) {
|
||||
//
|
||||
// not already has some error status
|
||||
@ -1975,6 +1975,6 @@ MainEditorBackup (
|
||||
)
|
||||
{
|
||||
FileBufferBackup ();
|
||||
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
// /**
|
||||
//
|
||||
// Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
// Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
// This program and the accompanying materials
|
||||
// are licensed and made available under the terms and conditions of the BSD License
|
||||
// which accompanies this distribution. The full text of the license may be found at
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
#langdef en-US "english"
|
||||
|
||||
#string STR_EDIT_LIBEDITOR_TITLEBAR #language en-US "%EMainEditor init failed on TitleBar init\r\n%N"
|
||||
#string STR_EDIT_LIBEDITOR_TITLEBAR #language en-US "%EMainEditor init failed on TitleBar init\r\n%N"
|
||||
#string STR_EDIT_LIBEDITOR_MAINMENU #language en-US "%EMainEditor init was not successful on MainMenu init\r\n%N"
|
||||
#string STR_EDIT_LIBEDITOR_STATUSBAR #language en-US "%EMainEditor init was not successful on StatusBar init\r\n%N"
|
||||
#string STR_EDIT_LIBEDITOR_INPUTBAR #language en-US "%EMainEditor init was not successful on InputBar init\r\n%N"
|
||||
@ -28,33 +28,33 @@
|
||||
#string STR_EDIT_LIBEDITOR_TITLEBAR_CLEANUP #language en-US "TitleBar cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_MENUBAR_CLEANUP #language en-US "MenuBar cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_STATUSBAR_CLEANUP #language en-US "StatusBar cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_INPUTBAR_CLEANUP #language en-US "InputBar cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_FILEBUFFER_CLEANUP #language en-US "FileBuffer cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_INPUTBAR_CLEANUP #language en-US "InputBar cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_FILEBUFFER_CLEANUP #language en-US "FileBuffer cleanup was not successful\r\n"
|
||||
#string STR_EDIT_LIBEDITOR_MAINEDITOR_INIT #language en-US "%EMainEditor init was not succesful on TitleBar init\r\n%N"
|
||||
#string STR_EDIT_LIBINPUTBAR_MAININPUTBAR #language en-US "%s"
|
||||
#string STR_EDIT_LIBMENUBAR_OPEN_FILE #language en-US "Open File"
|
||||
#string STR_EDIT_LIBMENUBAR_SAVE_FILE #language en-US "Save File"
|
||||
#string STR_EDIT_LIBMENUBAR_OPEN_FILE #language en-US "Open File"
|
||||
#string STR_EDIT_LIBMENUBAR_SAVE_FILE #language en-US "Save File"
|
||||
#string STR_EDIT_LIBMENUBAR_EXIT #language en-US "Exit"
|
||||
#string STR_EDIT_LIBMENUBAR_CUT_LINE #language en-US "Cut Line"
|
||||
#string STR_EDIT_LIBMENUBAR_PASTE_LINE #language en-US "Paste Line"
|
||||
#string STR_EDIT_LIBMENUBAR_GO_TO_LINE #language en-US "Go To Line"
|
||||
#string STR_EDIT_LIBMENUBAR_SEARCH #language en-US "Search"
|
||||
#string STR_EDIT_LIBMENUBAR_SEARCH_REPLACE #language en-US "Search/Replace"
|
||||
#string STR_EDIT_LIBMENUBAR_FILE_TYPE #language en-US "File Type"
|
||||
#string STR_EDIT_LIBMENUBAR_F1 #language en-US "F1"
|
||||
#string STR_EDIT_LIBMENUBAR_F2 #language en-US "F2"
|
||||
#string STR_EDIT_LIBMENUBAR_F3 #language en-US "F3"
|
||||
#string STR_EDIT_LIBMENUBAR_F4 #language en-US "F4"
|
||||
#string STR_EDIT_LIBMENUBAR_F5 #language en-US "F5"
|
||||
#string STR_EDIT_LIBMENUBAR_F6 #language en-US "F6"
|
||||
#string STR_EDIT_LIBMENUBAR_F7 #language en-US "F7"
|
||||
#string STR_EDIT_LIBMENUBAR_F8 #language en-US "F8"
|
||||
#string STR_EDIT_LIBMENUBAR_F9 #language en-US "F9"
|
||||
#string STR_EDIT_LIBMENUBAR_F10 #language en-US "F10"
|
||||
#string STR_EDIT_LIBMENUBAR_F11 #language en-US "F11"
|
||||
#string STR_EDIT_LIBMENUBAR_F12 #language en-US "F12"
|
||||
#string STR_EDIT_LIBMENUBAR_CTRL_E #language en-US "Ctrl+E"
|
||||
#string STR_EDIT_LIBMENUBAR_CTRL_W #language en-US "Ctrl+W"
|
||||
#string STR_EDIT_LIBMENUBAR_CUT_LINE #language en-US "Cut Line"
|
||||
#string STR_EDIT_LIBMENUBAR_PASTE_LINE #language en-US "Paste Line"
|
||||
#string STR_EDIT_LIBMENUBAR_GO_TO_LINE #language en-US "Go To Line"
|
||||
#string STR_EDIT_LIBMENUBAR_SEARCH #language en-US "Search"
|
||||
#string STR_EDIT_LIBMENUBAR_SEARCH_REPLACE #language en-US "Search/Replace"
|
||||
#string STR_EDIT_LIBMENUBAR_FILE_TYPE #language en-US "File Type"
|
||||
#string STR_EDIT_LIBMENUBAR_F1 #language en-US "F1"
|
||||
#string STR_EDIT_LIBMENUBAR_F2 #language en-US "F2"
|
||||
#string STR_EDIT_LIBMENUBAR_F3 #language en-US "F3"
|
||||
#string STR_EDIT_LIBMENUBAR_F4 #language en-US "F4"
|
||||
#string STR_EDIT_LIBMENUBAR_F5 #language en-US "F5"
|
||||
#string STR_EDIT_LIBMENUBAR_F6 #language en-US "F6"
|
||||
#string STR_EDIT_LIBMENUBAR_F7 #language en-US "F7"
|
||||
#string STR_EDIT_LIBMENUBAR_F8 #language en-US "F8"
|
||||
#string STR_EDIT_LIBMENUBAR_F9 #language en-US "F9"
|
||||
#string STR_EDIT_LIBMENUBAR_F10 #language en-US "F10"
|
||||
#string STR_EDIT_LIBMENUBAR_F11 #language en-US "F11"
|
||||
#string STR_EDIT_LIBMENUBAR_F12 #language en-US "F12"
|
||||
#string STR_EDIT_LIBMENUBAR_CTRL_E #language en-US "Ctrl+E"
|
||||
#string STR_EDIT_LIBMENUBAR_CTRL_W #language en-US "Ctrl+W"
|
||||
#string STR_EDIT_HELP_TITLE #language en-US "Help \n"
|
||||
#string STR_EDIT_HELP_BLANK #language en-US " \n"
|
||||
#string STR_EDIT_HELP_LIST_TITLE #language en-US "Control Key Function Key Command \n"
|
||||
@ -69,7 +69,7 @@
|
||||
#string STR_EDIT_HELP_OPEN_FILE #language en-US "Ctrl-O F8 Open File \n"
|
||||
#string STR_EDIT_HELP_FILE_TYPE #language en-US "Ctrl-T F9 File Type \n"
|
||||
#string STR_EDIT_HELP_EXIT_HELP #language en-US "Use Ctrl-W to exit this help \n"
|
||||
#string STR_EDIT_MAIN_INVALID_FILE_NAME #language en-US "%Hedit%N: Invalid File Name\r\n"
|
||||
#string STR_EDIT_MAIN_INIT_FAILED #language en-US "%Hedit%N: Initialization was not successful\r\n"
|
||||
#string STR_EDIT_MAIN_BUFFER #language en-US "%Hedit%N: %s\r\n"
|
||||
#string STR_EDIT_MAIN_UNKNOWN_EDITOR_ERR #language en-US "%Hedit%N: Unknown Editor Error\r\n"
|
||||
#string STR_EDIT_MAIN_INVALID_FILE_NAME #language en-US "%Hedit%N: Invalid File Name\r\n"
|
||||
#string STR_EDIT_MAIN_INIT_FAILED #language en-US "%Hedit%N: Initialization was not successful\r\n"
|
||||
#string STR_EDIT_MAIN_BUFFER #language en-US "%Hedit%N: %s\r\n"
|
||||
#string STR_EDIT_MAIN_UNKNOWN_EDITOR_ERR #language en-US "%Hedit%N: Unknown Editor Error\r\n"
|
||||
|
Reference in New Issue
Block a user