2012-04-15 16:54:38 +00:00
|
|
|
// This file is part of Notepad++ project
|
|
|
|
// Copyright (C)2003 Don HO <don.h@free.fr>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Note that the GPL places important restrictions on "derived works", yet
|
2012-08-25 19:23:16 +00:00
|
|
|
// it does not provide a detailed definition of that term. To avoid
|
|
|
|
// misunderstandings, we consider an application to constitute a
|
2012-04-15 16:54:38 +00:00
|
|
|
// "derivative work" for the purpose of this license if it does any of the
|
2012-08-25 19:23:16 +00:00
|
|
|
// following:
|
2012-04-15 16:54:38 +00:00
|
|
|
// 1. Integrates source code from Notepad++.
|
|
|
|
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable
|
|
|
|
// installer, such as those produced by InstallShield.
|
|
|
|
// 3. Links to a library or executes a program that does any of the above.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2009-12-02 19:58:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#include "menuCmdID.h"
|
|
|
|
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
|
|
FILEVERSION VERSION_DIGITALVALUE
|
|
|
|
PRODUCTVERSION VERSION_DIGITALVALUE
|
|
|
|
FILEFLAGSMASK 0x3fL
|
|
|
|
FILEFLAGS 0
|
|
|
|
FILEOS VOS_NT_WINDOWS32
|
|
|
|
FILETYPE VFT_APP
|
|
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
BEGIN
|
|
|
|
BLOCK "VarFileInfo"
|
|
|
|
BEGIN
|
|
|
|
VALUE "Translation", 0x409, 1200
|
|
|
|
END
|
|
|
|
BLOCK "StringFileInfo"
|
|
|
|
BEGIN
|
|
|
|
BLOCK "040904b0"
|
|
|
|
BEGIN
|
|
|
|
VALUE "CompanyName", "Don HO don.h@free.fr\0"
|
|
|
|
VALUE "FileDescription", "Notepad++ : a free (GNU) source code editor\0"
|
|
|
|
VALUE "FileVersion", VERSION_VALUE
|
|
|
|
VALUE "InternalName", "npp.exe\0"
|
2016-02-20 14:26:40 +00:00
|
|
|
VALUE "LegalCopyright", "Copyleft 1998-2016 by Don HO\0"
|
2009-12-02 19:58:37 +00:00
|
|
|
VALUE "OriginalFilename", "Notepad++.exe\0"
|
|
|
|
VALUE "ProductName", "Notepad++\0"
|
|
|
|
VALUE "ProductVersion", VERSION_VALUE
|
|
|
|
END
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
|
|
|
// Icon with lowest ID value placed first to ensure application icon
|
|
|
|
// remains consistent on all systems.
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_M30ICON ICON "icons/npp.ico"
|
2019-01-27 22:13:30 +00:00
|
|
|
IDI_CHAMELEON ICON "icons/chameleon.ico"
|
2014-12-09 22:19:06 +00:00
|
|
|
//IDI_JESUISCHARLIE ICON "icons/Je_suis_Charlie.ico"
|
2019-01-27 22:13:30 +00:00
|
|
|
//IDI_GILETJAUNE ICON "icons/giletJaune.ico"
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_NEW_OFF_ICON ICON "icons/new_off.ico"
|
|
|
|
IDI_OPEN_OFF_ICON ICON "icons/open_off.ico"
|
|
|
|
IDI_SAVE_OFF_ICON ICON "icons/save_off.ico"
|
|
|
|
IDI_SAVEALL_OFF_ICON ICON "icons/saveall_off.ico"
|
|
|
|
IDI_CLOSE_OFF_ICON ICON "icons/supp_off.ico"
|
|
|
|
IDI_CLOSEALL_OFF_ICON ICON "icons/suppall_off.ico"
|
|
|
|
IDI_CUT_OFF_ICON ICON "icons/cut_off.ico"
|
|
|
|
IDI_COPY_OFF_ICON ICON "icons/dupli_off.ico"
|
|
|
|
IDI_PASTE_OFF_ICON ICON "icons/paste_off.ico"
|
|
|
|
IDI_UNDO_OFF_ICON ICON "icons/undo_off.ico"
|
|
|
|
IDI_REDO_OFF_ICON ICON "icons/redo_off.ico"
|
|
|
|
IDI_FIND_OFF_ICON ICON "icons/find_off.ico"
|
|
|
|
IDI_REPLACE_OFF_ICON ICON "icons/findrep_off.ico"
|
|
|
|
IDI_ZOOMIN_OFF_ICON ICON "icons/zoomIn_off.ico"
|
|
|
|
IDI_ZOOMOUT_OFF_ICON ICON "icons/zoomOut_off.ico"
|
|
|
|
IDI_VIEW_UD_DLG_OFF_ICON ICON "icons/userDefineDlg_off.ico"
|
|
|
|
IDI_VIEW_ALL_CHAR_OFF_ICON ICON "icons/allChars_off.ico"
|
|
|
|
IDI_VIEW_INDENT_OFF_ICON ICON "icons/indentGuide_off.ico"
|
|
|
|
IDI_VIEW_WRAP_OFF_ICON ICON "icons/wrap_off.ico"
|
|
|
|
IDI_PRINT_OFF_ICON ICON "icons/imprim_off.ico"
|
|
|
|
IDI_NEW_ON_ICON ICON "icons/new_on.ico"
|
|
|
|
IDI_OPEN_ON_ICON ICON "icons/open_on.ico"
|
|
|
|
IDI_SAVE_ON_ICON ICON "icons/save_on.ico"
|
|
|
|
IDI_SAVEALL_ON_ICON ICON "icons/saveall_on.ico"
|
|
|
|
IDI_CLOSE_ON_ICON ICON "icons/supp_on.ico"
|
|
|
|
IDI_CLOSEALL_ON_ICON ICON "icons/suppall_on.ico"
|
|
|
|
IDI_CUT_ON_ICON ICON "icons/cut_on.ico"
|
|
|
|
IDI_COPY_ON_ICON ICON "icons/dupli_on.ico"
|
|
|
|
IDI_PASTE_ON_ICON ICON "icons/paste_on.ico"
|
|
|
|
IDI_UNDO_ON_ICON ICON "icons/undo_on.ico"
|
|
|
|
IDI_REDO_ON_ICON ICON "icons/redo_on.ico"
|
|
|
|
IDI_FIND_ON_ICON ICON "icons/find_on.ico"
|
|
|
|
IDI_REPLACE_ON_ICON ICON "icons/findrep_on.ico"
|
|
|
|
IDI_ZOOMIN_ON_ICON ICON "icons/zoomIn_on.ico"
|
|
|
|
IDI_ZOOMOUT_ON_ICON ICON "icons/zoomOut_on.ico"
|
|
|
|
IDI_VIEW_UD_DLG_ON_ICON ICON "icons/userDefineDlg_on.ico"
|
|
|
|
IDI_VIEW_ALL_CHAR_ON_ICON ICON "icons/allChars_on.ico"
|
|
|
|
IDI_VIEW_INDENT_ON_ICON ICON "icons/indentGuide_on.ico"
|
|
|
|
IDI_VIEW_WRAP_ON_ICON ICON "icons/wrap_on.ico"
|
|
|
|
IDI_PRINT_ON_ICON ICON "icons/imprim_on.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_SAVE_DISABLE_ICON ICON "icons/save_dis.ico"
|
|
|
|
IDI_SAVEALL_DISABLE_ICON ICON "icons/saveall_dis.ico"
|
|
|
|
IDI_CUT_DISABLE_ICON ICON "icons/cut_dis.ico"
|
|
|
|
IDI_COPY_DISABLE_ICON ICON "icons/dupli_dis.ico"
|
|
|
|
IDI_PASTE_DISABLE_ICON ICON "icons/paste_dis.ico"
|
|
|
|
IDI_UNDO_DISABLE_ICON ICON "icons/undo_dis.ico"
|
|
|
|
IDI_REDO_DISABLE_ICON ICON "icons/redo_dis.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
//
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_SAVED_ICON ICON "icons/saved.ico"
|
|
|
|
IDI_UNSAVED_ICON ICON "icons/unsaved.ico"
|
|
|
|
IDI_READONLY_ICON ICON "icons/readonly.ico"
|
2016-04-24 03:29:05 +00:00
|
|
|
IDI_MONITORING_ICON ICON "icons/monitoring.ico"
|
2016-08-30 00:49:50 +00:00
|
|
|
IDI_DELETE_ICON ICON "icons/delete.ico"
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_FIND_RESULT_ICON ICON "icons/findResult.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDC_DRAG_TAB CURSOR "cursors/drag.cur"
|
|
|
|
IDC_DRAG_INTERDIT_TAB CURSOR "cursors/drag_interdit.cur"
|
|
|
|
IDC_DRAG_PLUS_TAB CURSOR "cursors/drag_plus.cur"
|
|
|
|
IDC_DRAG_OUT_TAB CURSOR "cursors/drag_out.cur"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDR_FILENEW BITMAP "icons/newFile.bmp"
|
|
|
|
IDR_FILEOPEN BITMAP "icons/openFile.bmp"
|
|
|
|
IDR_FILESAVE BITMAP "icons/saveFile.bmp"
|
|
|
|
IDR_SAVEALL BITMAP "icons/saveAll.bmp"
|
|
|
|
IDR_CLOSEFILE BITMAP "icons/closeFile.bmp"
|
|
|
|
IDR_CLOSEALL BITMAP "icons/closeAll.bmp"
|
|
|
|
IDR_FIND BITMAP "icons/find.bmp"
|
|
|
|
IDR_REPLACE BITMAP "icons/findReplace.bmp"
|
|
|
|
IDR_ZOOMIN BITMAP "icons/zoomIn.bmp"
|
|
|
|
IDR_ZOOMOUT BITMAP "icons/zoomOut.bmp"
|
|
|
|
IDR_WRAP BITMAP "icons/wrap.bmp"
|
|
|
|
IDR_INVISIBLECHAR BITMAP "icons/invisibleChar.bmp"
|
|
|
|
IDR_INDENTGUIDE BITMAP "icons/indentGuide.bmp"
|
|
|
|
IDR_SHOWPANNEL BITMAP "icons/showPannel.bmp"
|
|
|
|
IDR_STARTRECORD BITMAP "icons/startRecord.bmp"
|
|
|
|
IDR_STOPRECORD BITMAP "icons/stopRecord.bmp"
|
|
|
|
IDR_PLAYRECORD BITMAP "icons/playRecord.bmp"
|
|
|
|
IDR_M_PLAYRECORD BITMAP "icons/playRecord_m.bmp"
|
|
|
|
IDR_SAVERECORD BITMAP "icons/saveRecord.bmp"
|
|
|
|
IDR_CUT BITMAP "icons/cut.bmp"
|
|
|
|
IDR_COPY BITMAP "icons/copy.bmp"
|
|
|
|
IDR_PASTE BITMAP "icons/paste.bmp"
|
|
|
|
IDR_UNDO BITMAP "icons/undo.bmp"
|
|
|
|
IDR_REDO BITMAP "icons/redo.bmp"
|
|
|
|
IDR_SYNCV BITMAP "icons/syncV.bmp"
|
|
|
|
IDR_SYNCH BITMAP "icons/syncH.bmp"
|
|
|
|
IDR_PRINT BITMAP "icons/print.bmp"
|
|
|
|
IDR_CLOSETAB BITMAP "icons/closeTabButton.bmp"
|
|
|
|
IDR_CLOSETAB_INACT BITMAP "icons/closeTabButton_inact.bmp"
|
|
|
|
IDR_CLOSETAB_HOVER BITMAP "icons/closeTabButton_hover.bmp"
|
|
|
|
IDR_CLOSETAB_PUSH BITMAP "icons/closeTabButton_push.bmp"
|
|
|
|
IDR_DOCMAP BITMAP "icons/docMap.bmp"
|
|
|
|
IDR_FUNC_LIST BITMAP "icons/functionList.bmp"
|
2016-02-08 00:34:33 +00:00
|
|
|
IDR_FILEBROWSER BITMAP "icons/fileBrowser.bmp"
|
2016-04-24 03:29:05 +00:00
|
|
|
IDR_FILEMONITORING BITMAP "icons/fileMonitoring.bmp"
|
2016-02-08 00:34:33 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDR_DOCMAP_ICO ICON "icons/docMap.ico"
|
|
|
|
IDR_FUNC_LIST_ICO ICON "icons/functionList.ico"
|
|
|
|
IDR_PROJECTPANEL_ICO ICON "icons/projectPanel.ico"
|
2016-02-08 00:34:33 +00:00
|
|
|
IDR_FILEBROWSER_ICO ICON "icons/fileBrowser.ico"
|
2014-12-09 22:19:06 +00:00
|
|
|
IDR_CLIPBOARDPANEL_ICO ICON "icons/clipboardPanel.ico"
|
|
|
|
IDR_ASCIIPANEL_ICO ICON "icons/asciiPanel.ico"
|
|
|
|
IDR_DOCSWITCHER_ICO ICON "icons/docSwitcher.ico"
|
|
|
|
IDI_STARTRECORD_OFF_ICON ICON "icons/startrecord_off.ico"
|
|
|
|
IDI_STARTRECORD_ON_ICON ICON "icons/startrecord_on.ico"
|
|
|
|
IDI_STARTRECORD_DISABLE_ICON ICON "icons/startrecord_dis.ico"
|
|
|
|
IDI_STOPRECORD_OFF_ICON ICON "icons/stoprecord_off.ico"
|
|
|
|
IDI_STOPRECORD_ON_ICON ICON "icons/stoprecord_on.ico"
|
|
|
|
IDI_STOPRECORD_DISABLE_ICON ICON "icons/stoprecord_dis.ico"
|
|
|
|
IDI_PLAYRECORD_OFF_ICON ICON "icons/playrecord_off.ico"
|
|
|
|
IDI_PLAYRECORD_ON_ICON ICON "icons/playrecord_on.ico"
|
|
|
|
IDI_PLAYRECORD_DISABLE_ICON ICON "icons/playrecord_dis.ico"
|
|
|
|
IDI_SAVERECORD_OFF_ICON ICON "icons/saverecord_off.ico"
|
|
|
|
IDI_SAVERECORD_ON_ICON ICON "icons/saverecord_on.ico"
|
|
|
|
IDI_SAVERECORD_DISABLE_ICON ICON "icons/saverecord_dis.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_SYNCV_OFF_ICON ICON "icons/syncV_off.ico"
|
|
|
|
IDI_SYNCV_ON_ICON ICON "icons/syncV_on.ico"
|
|
|
|
IDI_SYNCV_DISABLE_ICON ICON "icons/syncV_dis.ico"
|
|
|
|
IDI_SYNCH_OFF_ICON ICON "icons/syncH_off.ico"
|
|
|
|
IDI_SYNCH_ON_ICON ICON "icons/syncH_on.ico"
|
|
|
|
IDI_SYNCH_DISABLE_ICON ICON "icons/syncH_dis.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
|
|
|
// multi run macro
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_MMPLAY_DIS_ICON ICON "icons/playrecord_m_dis.ico"
|
|
|
|
IDI_MMPLAY_OFF_ICON ICON "icons/playrecord_m_off.ico"
|
|
|
|
IDI_MMPLAY_ON_ICON ICON "icons/playrecord_m_on.ico"
|
2009-12-02 19:58:37 +00:00
|
|
|
|
2011-09-07 18:10:31 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_PROJECT_WORKSPACE BITMAP "icons/project_work_space.bmp"
|
|
|
|
IDI_PROJECT_WORKSPACEDIRTY BITMAP "icons/project_work_space_dirty.bmp"
|
|
|
|
IDI_PROJECT_PROJECT BITMAP "icons/project_root.bmp"
|
|
|
|
IDI_PROJECT_FOLDEROPEN BITMAP "icons/project_folder_open.bmp"
|
|
|
|
IDI_PROJECT_FOLDERCLOSE BITMAP "icons/project_folder_close.bmp"
|
|
|
|
IDI_PROJECT_FILE BITMAP "icons/project_file.bmp"
|
|
|
|
IDI_PROJECT_FILEINVALID BITMAP "icons/project_file_invalid.bmp"
|
2016-02-08 00:34:33 +00:00
|
|
|
IDI_FB_ROOTOPEN BITMAP "icons/fb_root_open.bmp"
|
|
|
|
IDI_FB_ROOTCLOSE BITMAP "icons/fb_root_close.bmp"
|
2011-09-07 18:10:31 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_FUNCLIST_ROOT BITMAP "icons/project_file.bmp"
|
|
|
|
IDI_FUNCLIST_NODE BITMAP "icons/funcList_node.bmp"
|
|
|
|
IDI_FUNCLIST_LEAF BITMAP "icons/funcList_leaf.bmp"
|
2011-09-07 18:10:31 +00:00
|
|
|
|
2014-12-09 22:19:06 +00:00
|
|
|
IDI_FUNCLIST_SORTBUTTON BITMAP "icons/funclstSort.bmp"
|
|
|
|
IDI_FUNCLIST_RELOADBUTTON BITMAP "icons/funclstReload.bmp"
|
2013-10-19 09:44:28 +00:00
|
|
|
|
2018-05-17 14:24:17 +00:00
|
|
|
|
|
|
|
IDI_VIEW_DOC_MAP_ON_ICON ICON "icons/docMap_on.ico"
|
|
|
|
IDI_VIEW_DOC_MAP_OFF_ICON ICON "icons/docMap_off.ico"
|
|
|
|
IDI_VIEW_FUNCLIST_ON_ICON ICON "icons/funcList_on.ico"
|
|
|
|
IDI_VIEW_FUNCLIST_OFF_ICON ICON "icons/funcList_off.ico"
|
|
|
|
IDI_VIEW_FILEBROWSER_ON_ICON ICON "icons/fileBrowser_on.ico"
|
|
|
|
IDI_VIEW_FILEBROWSER_OFF_ICON ICON "icons/fileBrowser_off.ico"
|
|
|
|
IDI_VIEW_MONITORING_ON_ICON ICON "icons/monitoring_on.ico"
|
|
|
|
IDI_VIEW_MONITORING_OFF_ICON ICON "icons/monitoring_off.ico"
|
|
|
|
|
|
|
|
|
2009-12-02 19:58:37 +00:00
|
|
|
IDR_M30_MENU MENU
|
|
|
|
BEGIN
|
|
|
|
POPUP "&File"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "&New", IDM_FILE_NEW
|
|
|
|
MENUITEM "&Open...", IDM_FILE_OPEN
|
2013-12-08 13:52:49 +00:00
|
|
|
POPUP "Open Containing Folder"
|
2013-12-07 01:43:35 +00:00
|
|
|
BEGIN
|
2013-12-08 13:52:49 +00:00
|
|
|
MENUITEM "Explorer", IDM_FILE_OPEN_FOLDER
|
|
|
|
MENUITEM "cmd", IDM_FILE_OPEN_CMD
|
2013-12-07 01:43:35 +00:00
|
|
|
END
|
2017-07-30 07:10:36 +00:00
|
|
|
MENUITEM "Open in Default Viewer" IDM_FILE_OPEN_DEFAULT_VIEWER
|
2016-06-25 15:26:02 +00:00
|
|
|
MENUITEM "Open Folder as Workspace...", IDM_FILE_OPENFOLDERASWORSPACE
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Re&load from Disk", IDM_FILE_RELOAD
|
|
|
|
MENUITEM "&Save", IDM_FILE_SAVE
|
|
|
|
MENUITEM "Save &As...", IDM_FILE_SAVEAS
|
|
|
|
MENUITEM "Save a Copy As...", IDM_FILE_SAVECOPYAS
|
|
|
|
MENUITEM "Sav&e All", IDM_FILE_SAVEALL
|
|
|
|
MENUITEM "Rename...", IDM_FILE_RENAME
|
|
|
|
MENUITEM "&Close", IDM_FILE_CLOSE
|
2010-10-17 18:41:59 +00:00
|
|
|
MENUITEM "Clos&e All", IDM_FILE_CLOSEALL
|
2013-08-03 23:40:07 +00:00
|
|
|
POPUP "Close More"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Close All but Active Document", IDM_FILE_CLOSEALL_BUT_CURRENT
|
|
|
|
MENUITEM "Close All to the Left", IDM_FILE_CLOSEALL_TOLEFT
|
|
|
|
MENUITEM "Close All to the Right", IDM_FILE_CLOSEALL_TORIGHT
|
|
|
|
END
|
2012-12-07 01:33:08 +00:00
|
|
|
MENUITEM "Move to Recycle Bin", IDM_FILE_DELETE
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Load Session...", IDM_FILE_LOADSESSION
|
|
|
|
MENUITEM "Save Session...", IDM_FILE_SAVESESSION
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Print...", IDM_FILE_PRINT
|
|
|
|
MENUITEM "Print Now", IDM_FILE_PRINTNOW
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "E&xit", IDM_FILE_EXIT
|
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&Edit"
|
|
|
|
BEGIN
|
2013-06-09 08:52:15 +00:00
|
|
|
MENUITEM "&Undo", IDM_EDIT_UNDO
|
|
|
|
MENUITEM "&Redo", IDM_EDIT_REDO
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
2013-06-09 08:52:15 +00:00
|
|
|
MENUITEM "Cu&t", IDM_EDIT_CUT
|
|
|
|
MENUITEM "&Copy", IDM_EDIT_COPY
|
|
|
|
MENUITEM "&Paste", IDM_EDIT_PASTE
|
|
|
|
MENUITEM "&Delete", IDM_EDIT_DELETE
|
|
|
|
MENUITEM "Select A&ll", IDM_EDIT_SELECTALL
|
|
|
|
MENUITEM "Begin/End Select", IDM_EDIT_BEGINENDSELECT
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
POPUP "Copy to Clipboard"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Current Full File path to Clipboard", IDM_EDIT_FULLPATHTOCLIP
|
|
|
|
MENUITEM "Current Filename to Clipboard", IDM_EDIT_FILENAMETOCLIP
|
|
|
|
MENUITEM "Current Dir. Path to Clipboard", IDM_EDIT_CURRENTDIRTOCLIP
|
|
|
|
END
|
|
|
|
POPUP "Indent"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Increase Line Indent", IDM_EDIT_INS_TAB
|
|
|
|
MENUITEM "Decrease Line Indent", IDM_EDIT_RMV_TAB
|
2012-08-25 19:23:16 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "Convert Case to"
|
|
|
|
BEGIN
|
2016-06-30 01:13:00 +00:00
|
|
|
MENUITEM "&UPPERCASE", IDM_EDIT_UPPERCASE
|
|
|
|
MENUITEM "&lowercase", IDM_EDIT_LOWERCASE
|
2016-09-10 10:30:43 +00:00
|
|
|
MENUITEM "&Proper Case", IDM_EDIT_PROPERCASE_FORCE
|
|
|
|
MENUITEM "Proper Case (blend)", IDM_EDIT_PROPERCASE_BLEND
|
2016-06-30 01:13:00 +00:00
|
|
|
MENUITEM "&Sentence case", IDM_EDIT_SENTENCECASE_FORCE
|
|
|
|
MENUITEM "Sentence case (blend)", IDM_EDIT_SENTENCECASE_BLEND
|
2016-08-19 11:39:31 +00:00
|
|
|
MENUITEM "&iNVERT cASE", IDM_EDIT_INVERTCASE
|
|
|
|
MENUITEM "&ranDOm CasE", IDM_EDIT_RANDOMCASE
|
2012-08-25 19:23:16 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "Line Operations"
|
2012-08-25 19:23:16 +00:00
|
|
|
BEGIN
|
2019-02-10 12:43:41 +00:00
|
|
|
MENUITEM "Duplicate Current Line", IDM_EDIT_DUP_LINE
|
|
|
|
MENUITEM "Remove Consecutive Duplicate Lines", IDM_EDIT_REMOVE_DUP_LINES
|
|
|
|
MENUITEM "Split Lines", IDM_EDIT_SPLIT_LINES
|
|
|
|
MENUITEM "Join Lines", IDM_EDIT_JOIN_LINES
|
|
|
|
MENUITEM "Move Up Current Line", IDM_EDIT_LINE_UP
|
|
|
|
MENUITEM "Move Down Current Line", IDM_EDIT_LINE_DOWN
|
|
|
|
MENUITEM "Remove Empty Lines", IDM_EDIT_REMOVEEMPTYLINES
|
|
|
|
MENUITEM "Remove Empty Lines (Containing Blank characters)", IDM_EDIT_REMOVEEMPTYLINESWITHBLANK
|
|
|
|
MENUITEM "Insert Blank Line Above Current", IDM_EDIT_BLANKLINEABOVECURRENT
|
|
|
|
MENUITEM "Insert Blank Line Below Current", IDM_EDIT_BLANKLINEBELOWCURRENT
|
2015-05-25 18:50:57 +00:00
|
|
|
MENUITEM SEPARATOR
|
2019-02-10 12:43:41 +00:00
|
|
|
MENUITEM "Sort Lines Lexicographically Ascending", IDM_EDIT_SORTLINES_LEXICOGRAPHIC_ASCENDING
|
|
|
|
MENUITEM "Sort Lines As Integers Ascending", IDM_EDIT_SORTLINES_INTEGER_ASCENDING
|
|
|
|
MENUITEM "Sort Lines As Decimals (Comma) Ascending", IDM_EDIT_SORTLINES_DECIMALCOMMA_ASCENDING
|
|
|
|
MENUITEM "Sort Lines As Decimals (Dot) Ascending", IDM_EDIT_SORTLINES_DECIMALDOT_ASCENDING
|
2015-05-25 18:50:57 +00:00
|
|
|
MENUITEM SEPARATOR
|
2019-02-10 12:43:41 +00:00
|
|
|
MENUITEM "Sort Lines Lexicographically Descending", IDM_EDIT_SORTLINES_LEXICOGRAPHIC_DESCENDING
|
|
|
|
MENUITEM "Sort Lines As Integers Descending", IDM_EDIT_SORTLINES_INTEGER_DESCENDING
|
|
|
|
MENUITEM "Sort Lines As Decimals (Comma) Descending", IDM_EDIT_SORTLINES_DECIMALCOMMA_DESCENDING
|
|
|
|
MENUITEM "Sort Lines As Decimals (Dot) Descending", IDM_EDIT_SORTLINES_DECIMALDOT_DESCENDING
|
2015-05-25 18:50:57 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "Comment/Uncomment"
|
|
|
|
BEGIN
|
2013-09-01 13:11:06 +00:00
|
|
|
MENUITEM "Toggle Single Line Comment", IDM_EDIT_BLOCK_COMMENT
|
|
|
|
MENUITEM "Single Line Comment", IDM_EDIT_BLOCK_COMMENT_SET
|
|
|
|
MENUITEM "Single Line Uncomment", IDM_EDIT_BLOCK_UNCOMMENT
|
|
|
|
MENUITEM "Block Comment", IDM_EDIT_STREAM_COMMENT
|
|
|
|
MENUITEM "Block Uncomment", IDM_EDIT_STREAM_UNCOMMENT
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
POPUP "Auto-Completion"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Function Completion", IDM_EDIT_AUTOCOMPLETE
|
|
|
|
MENUITEM "Word Completion", IDM_EDIT_AUTOCOMPLETE_CURRENTFILE
|
|
|
|
MENUITEM "Function Parameters Hint", IDM_EDIT_FUNCCALLTIP
|
2013-10-10 23:05:50 +00:00
|
|
|
MENUITEM "Path Completion", IDM_EDIT_AUTOCOMPLETE_PATH
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
2009-12-05 01:46:08 +00:00
|
|
|
POPUP "EOL Conversion"
|
|
|
|
BEGIN
|
2016-08-03 23:24:28 +00:00
|
|
|
MENUITEM "Windows (CR LF)", IDM_FORMAT_TODOS
|
|
|
|
MENUITEM "Unix (LF)", IDM_FORMAT_TOUNIX
|
|
|
|
MENUITEM "Macintosh (CR)", IDM_FORMAT_TOMAC
|
2009-12-05 01:46:08 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
POPUP "Blank Operations"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Trim Trailing Space", IDM_EDIT_TRIMTRAILING
|
|
|
|
MENUITEM "Trim Leading Space", IDM_EDIT_TRIMLINEHEAD
|
|
|
|
MENUITEM "Trim Leading and Trailing Space", IDM_EDIT_TRIM_BOTH
|
|
|
|
MENUITEM "EOL to Space", IDM_EDIT_EOL2WS
|
|
|
|
MENUITEM "Remove Unnecessary Blank and EOL", IDM_EDIT_TRIMALL
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "TAB to Space", IDM_EDIT_TAB2SW
|
|
|
|
MENUITEM "Space to TAB (All)", IDM_EDIT_SW2TAB_ALL
|
|
|
|
MENUITEM "Space to TAB (Leading)", IDM_EDIT_SW2TAB_LEADING
|
|
|
|
END
|
|
|
|
POPUP "Paste Special"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Paste HTML Content", IDM_EDIT_PASTE_AS_HTML
|
|
|
|
MENUITEM "Paste RTF Content", IDM_EDIT_PASTE_AS_RTF
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Copy Binary Content", IDM_EDIT_COPY_BINARY
|
|
|
|
MENUITEM "Cut Binary Content", IDM_EDIT_CUT_BINARY
|
|
|
|
MENUITEM "Paste Binary Content", IDM_EDIT_PASTE_BINARY
|
|
|
|
END
|
2016-08-21 22:52:26 +00:00
|
|
|
POPUP "On Selection"
|
|
|
|
BEGIN
|
2016-08-28 22:13:28 +00:00
|
|
|
MENUITEM "Open File", IDM_EDIT_OPENASFILE
|
|
|
|
MENUITEM "Open Containing Folder in Explorer", IDM_EDIT_OPENINFOLDER
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Search on Internet", IDM_EDIT_SEARCHONINTERNET
|
|
|
|
MENUITEM "Change Search Engine...", IDM_EDIT_CHANGESEARCHENGINE
|
2016-08-21 22:52:26 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
2011-02-19 15:06:53 +00:00
|
|
|
MENUITEM "Column Mode...", IDM_EDIT_COLUMNMODETIP
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Column Editor...", IDM_EDIT_COLUMNMODE
|
|
|
|
MENUITEM "Character Panel", IDM_EDIT_CHAR_PANEL
|
|
|
|
MENUITEM "Clipboard History", IDM_EDIT_CLIPBOARDHISTORY_PANEL
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Set Read-Only", IDM_EDIT_SETREADONLY
|
|
|
|
MENUITEM "Clear Read-Only Flag", IDM_EDIT_CLEARREADONLY
|
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&Search"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "&Find...", IDM_SEARCH_FIND
|
|
|
|
MENUITEM "Find in Files...", IDM_SEARCH_FINDINFILES
|
|
|
|
MENUITEM "Find &Next", IDM_SEARCH_FINDNEXT
|
|
|
|
MENUITEM "Find &Previous", IDM_SEARCH_FINDPREV
|
2010-01-19 21:49:36 +00:00
|
|
|
MENUITEM "Select and Find Next", IDM_SEARCH_SETANDFINDNEXT
|
|
|
|
MENUITEM "Select and Find Previous", IDM_SEARCH_SETANDFINDPREV
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Find (Volatile) Next", IDM_SEARCH_VOLATILE_FINDNEXT
|
|
|
|
MENUITEM "Find (Volatile) Previous", IDM_SEARCH_VOLATILE_FINDPREV
|
|
|
|
MENUITEM "&Replace...", IDM_SEARCH_REPLACE
|
|
|
|
MENUITEM "&Incremental Search", IDM_SEARCH_FINDINCREMENT
|
2009-12-17 23:33:39 +00:00
|
|
|
MENUITEM "Search Results Window", IDM_FOCUS_ON_FOUND_RESULTS
|
|
|
|
MENUITEM "Next Search Result", IDM_SEARCH_GOTONEXTFOUND
|
|
|
|
MENUITEM "Previous Search Result", IDM_SEARCH_GOTOPREVFOUND
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "&Go to...", IDM_SEARCH_GOTOLINE
|
|
|
|
MENUITEM "Go to Matching Brace", IDM_SEARCH_GOTOMATCHINGBRACE
|
2014-12-09 22:19:06 +00:00
|
|
|
MENUITEM "Select All Between Matching Braces", IDM_SEARCH_SELECTMATCHINGBRACES
|
|
|
|
MENUITEM "Mar&k...", IDM_SEARCH_MARK
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
|
|
|
|
POPUP "Mark All"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Using 1st Style", IDM_SEARCH_MARKALLEXT1
|
|
|
|
MENUITEM "Using 2nd Style", IDM_SEARCH_MARKALLEXT2
|
|
|
|
MENUITEM "Using 3rd Style", IDM_SEARCH_MARKALLEXT3
|
|
|
|
MENUITEM "Using 4th Style", IDM_SEARCH_MARKALLEXT4
|
|
|
|
MENUITEM "Using 5th Style", IDM_SEARCH_MARKALLEXT5
|
|
|
|
END
|
|
|
|
POPUP "Unmark All"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Clear 1st Style", IDM_SEARCH_UNMARKALLEXT1
|
|
|
|
MENUITEM "Clear 2nd Style", IDM_SEARCH_UNMARKALLEXT2
|
|
|
|
MENUITEM "Clear 3rd Style", IDM_SEARCH_UNMARKALLEXT3
|
|
|
|
MENUITEM "Clear 4th Style", IDM_SEARCH_UNMARKALLEXT4
|
|
|
|
MENUITEM "Clear 5th Style", IDM_SEARCH_UNMARKALLEXT5
|
|
|
|
MENUITEM "Clear all Styles", IDM_SEARCH_CLEARALLMARKS
|
|
|
|
END
|
|
|
|
POPUP "Jump up"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "1st Style", IDM_SEARCH_GOPREVMARKER1
|
|
|
|
MENUITEM "2nd Style", IDM_SEARCH_GOPREVMARKER2
|
|
|
|
MENUITEM "3rd Style", IDM_SEARCH_GOPREVMARKER3
|
|
|
|
MENUITEM "4th Style", IDM_SEARCH_GOPREVMARKER4
|
|
|
|
MENUITEM "5th Style", IDM_SEARCH_GOPREVMARKER5
|
|
|
|
MENUITEM "Find Style", IDM_SEARCH_GOPREVMARKER_DEF
|
|
|
|
END
|
|
|
|
POPUP "Jump down"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "1st Style", IDM_SEARCH_GONEXTMARKER1
|
|
|
|
MENUITEM "2nd Style", IDM_SEARCH_GONEXTMARKER2
|
|
|
|
MENUITEM "3rd Style", IDM_SEARCH_GONEXTMARKER3
|
|
|
|
MENUITEM "4th Style", IDM_SEARCH_GONEXTMARKER4
|
|
|
|
MENUITEM "5th Style", IDM_SEARCH_GONEXTMARKER5
|
|
|
|
MENUITEM "Find Style", IDM_SEARCH_GONEXTMARKER_DEF
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM SEPARATOR
|
2010-07-04 07:12:02 +00:00
|
|
|
POPUP "Bookmark"
|
|
|
|
BEGIN
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Toggle Bookmark" , IDM_SEARCH_TOGGLE_BOOKMARK
|
|
|
|
MENUITEM "Next Bookmark", IDM_SEARCH_NEXT_BOOKMARK
|
|
|
|
MENUITEM "Previous Bookmark", IDM_SEARCH_PREV_BOOKMARK
|
|
|
|
MENUITEM "Clear All Bookmarks", IDM_SEARCH_CLEAR_BOOKMARKS
|
|
|
|
MENUITEM "Cut Bookmarked Lines", IDM_SEARCH_CUTMARKEDLINES
|
|
|
|
MENUITEM "Copy Bookmarked Lines", IDM_SEARCH_COPYMARKEDLINES
|
|
|
|
MENUITEM "Paste to (Replace) Bookmarked Lines", IDM_SEARCH_PASTEMARKEDLINES
|
|
|
|
MENUITEM "Remove Bookmarked Lines", IDM_SEARCH_DELETEMARKEDLINES
|
|
|
|
MENUITEM "Remove Unmarked Lines", IDM_SEARCH_DELETEUNMARKEDLINES
|
|
|
|
MENUITEM "Inverse Bookmark", IDM_SEARCH_INVERSEMARKS
|
2010-07-04 07:12:02 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Find characters in range...", IDM_SEARCH_FINDCHARINRANGE
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&View"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Always on Top", IDM_VIEW_ALWAYSONTOP
|
|
|
|
MENUITEM "Toggle Full Screen Mode", IDM_VIEW_FULLSCREENTOGGLE
|
|
|
|
MENUITEM "Post-It", IDM_VIEW_POSTIT
|
|
|
|
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
POPUP "Show Symbol"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Show White Space and TAB", IDM_VIEW_TAB_SPACE
|
|
|
|
MENUITEM "Show End of Line", IDM_VIEW_EOL
|
|
|
|
MENUITEM "Show All Characters", IDM_VIEW_ALL_CHARACTERS
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Show Indent Guide", IDM_VIEW_INDENT_GUIDE
|
|
|
|
MENUITEM "Show Wrap Symbol", IDM_VIEW_WRAP_SYMBOL
|
|
|
|
END
|
|
|
|
POPUP "Zoom"
|
|
|
|
BEGIN
|
2009-12-17 23:33:39 +00:00
|
|
|
MENUITEM "Zoom &In (Ctrl+Mouse Wheel Up)", IDM_VIEW_ZOOMIN
|
|
|
|
MENUITEM "Zoom &Out (Ctrl+Mouse Wheel Down)", IDM_VIEW_ZOOMOUT
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Restore Default Zoom", IDM_VIEW_ZOOMRESTORE
|
|
|
|
END
|
|
|
|
POPUP "Move/Clone Current Document"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Move to Other View", IDM_VIEW_GOTO_ANOTHER_VIEW
|
|
|
|
MENUITEM "Clone to Other View", IDM_VIEW_CLONE_TO_ANOTHER_VIEW
|
|
|
|
MENUITEM "Move to New Instance", IDM_VIEW_GOTO_NEW_INSTANCE
|
|
|
|
MENUITEM "Open in New Instance", IDM_VIEW_LOAD_IN_NEW_INSTANCE
|
|
|
|
END
|
2013-08-03 00:19:06 +00:00
|
|
|
|
|
|
|
POPUP "Tab"
|
|
|
|
BEGIN
|
2014-12-09 22:19:06 +00:00
|
|
|
MENUITEM "1st Tab", IDM_VIEW_TAB1
|
|
|
|
MENUITEM "2nd Tab", IDM_VIEW_TAB2
|
|
|
|
MENUITEM "3rd Tab", IDM_VIEW_TAB3
|
|
|
|
MENUITEM "4th Tab", IDM_VIEW_TAB4
|
|
|
|
MENUITEM "5th Tab", IDM_VIEW_TAB5
|
|
|
|
MENUITEM "6th Tab", IDM_VIEW_TAB6
|
|
|
|
MENUITEM "7th Tab", IDM_VIEW_TAB7
|
|
|
|
MENUITEM "8th Tab", IDM_VIEW_TAB8
|
|
|
|
MENUITEM "9th Tab", IDM_VIEW_TAB9
|
2013-08-03 00:19:06 +00:00
|
|
|
MENUITEM SEPARATOR
|
2014-12-09 22:19:06 +00:00
|
|
|
MENUITEM "Next Tab", IDM_VIEW_TAB_NEXT
|
|
|
|
MENUITEM "Previous Tab", IDM_VIEW_TAB_PREV
|
2016-06-30 01:21:11 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Move Tab Forward", IDM_VIEW_TAB_MOVEFORWARD
|
|
|
|
MENUITEM "Move Tab Backward", IDM_VIEW_TAB_MOVEBACKWARD
|
2013-08-03 00:19:06 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Word wrap", IDM_VIEW_WRAP
|
2009-12-17 23:33:39 +00:00
|
|
|
MENUITEM "Focus on Another View", IDM_VIEW_SWITCHTO_OTHER_VIEW
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Hide Lines", IDM_VIEW_HIDELINES
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Fold All", IDM_VIEW_TOGGLE_FOLDALL
|
|
|
|
MENUITEM "Unfold All", IDM_VIEW_TOGGLE_UNFOLDALL
|
|
|
|
MENUITEM "Collapse Current Level", IDM_VIEW_FOLD_CURRENT
|
|
|
|
MENUITEM "Uncollapse Current Level", IDM_VIEW_UNFOLD_CURRENT
|
|
|
|
POPUP "Collapse Level"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "1", IDM_VIEW_FOLD_1
|
|
|
|
MENUITEM "2", IDM_VIEW_FOLD_2
|
|
|
|
MENUITEM "3", IDM_VIEW_FOLD_3
|
|
|
|
MENUITEM "4", IDM_VIEW_FOLD_4
|
|
|
|
MENUITEM "5", IDM_VIEW_FOLD_5
|
|
|
|
MENUITEM "6", IDM_VIEW_FOLD_6
|
|
|
|
MENUITEM "7", IDM_VIEW_FOLD_7
|
|
|
|
MENUITEM "8", IDM_VIEW_FOLD_8
|
|
|
|
END
|
|
|
|
POPUP "Uncollapse Level"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "1", IDM_VIEW_UNFOLD_1
|
|
|
|
MENUITEM "2", IDM_VIEW_UNFOLD_2
|
|
|
|
MENUITEM "3", IDM_VIEW_UNFOLD_3
|
|
|
|
MENUITEM "4", IDM_VIEW_UNFOLD_4
|
|
|
|
MENUITEM "5", IDM_VIEW_UNFOLD_5
|
|
|
|
MENUITEM "6", IDM_VIEW_UNFOLD_6
|
|
|
|
MENUITEM "7", IDM_VIEW_UNFOLD_7
|
|
|
|
MENUITEM "8", IDM_VIEW_UNFOLD_8
|
|
|
|
END
|
2011-09-20 23:55:35 +00:00
|
|
|
|
2010-09-19 01:27:41 +00:00
|
|
|
MENUITEM SEPARATOR
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Summary...", IDM_VIEW_SUMMARY
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
2012-08-25 19:23:16 +00:00
|
|
|
POPUP "Project"
|
2011-09-20 23:55:35 +00:00
|
|
|
BEGIN
|
|
|
|
MENUITEM "Project Panel 1", IDM_VIEW_PROJECT_PANEL_1
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Project Panel 2", IDM_VIEW_PROJECT_PANEL_2
|
|
|
|
MENUITEM "Project Panel 3", IDM_VIEW_PROJECT_PANEL_3
|
2011-09-20 23:55:35 +00:00
|
|
|
END
|
2016-02-06 13:39:57 +00:00
|
|
|
MENUITEM "Folder as Workspace", IDM_VIEW_FILEBROWSER
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Document Map", IDM_VIEW_DOC_MAP
|
2013-05-27 00:59:08 +00:00
|
|
|
MENUITEM "Function List", IDM_VIEW_FUNC_LIST
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM SEPARATOR
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Synchronize Vertical Scrolling", IDM_VIEW_SYNSCROLLV
|
|
|
|
MENUITEM "Synchronize Horizontal Scrolling", IDM_VIEW_SYNSCROLLH
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Text Direction RTL", IDM_EDIT_RTL
|
|
|
|
MENUITEM "Text Direction LTR", IDM_EDIT_LTR
|
2016-04-24 03:29:05 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Monitoring (tail -f)", IDM_VIEW_MONITORING
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
|
2014-11-30 02:17:49 +00:00
|
|
|
POPUP "E&ncoding"
|
2009-12-02 19:58:37 +00:00
|
|
|
BEGIN
|
|
|
|
MENUITEM "Encode in ANSI", IDM_FORMAT_ANSI
|
2015-07-29 11:45:35 +00:00
|
|
|
MENUITEM "Encode in UTF-8", IDM_FORMAT_AS_UTF_8
|
|
|
|
MENUITEM "Encode in UTF-8-BOM", IDM_FORMAT_UTF_8
|
|
|
|
MENUITEM "Encode in UCS-2 BE BOM", IDM_FORMAT_UCS_2BE
|
|
|
|
MENUITEM "Encode in UCS-2 LE BOM", IDM_FORMAT_UCS_2LE
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "Character sets"
|
|
|
|
BEGIN
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Arabic"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-6", IDM_FORMAT_ISO_8859_6
|
|
|
|
MENUITEM "OEM 720", IDM_FORMAT_DOS_720
|
|
|
|
MENUITEM "Windows-1256", IDM_FORMAT_WIN_1256
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Baltic"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-4", IDM_FORMAT_ISO_8859_4
|
|
|
|
MENUITEM "ISO 8859-13", IDM_FORMAT_ISO_8859_13
|
|
|
|
MENUITEM "OEM 775", IDM_FORMAT_DOS_775
|
|
|
|
MENUITEM "Windows-1257", IDM_FORMAT_WIN_1257
|
|
|
|
END
|
|
|
|
POPUP "Celtic"
|
|
|
|
BEGIN
|
2009-12-04 02:14:33 +00:00
|
|
|
MENUITEM "ISO 8859-14", IDM_FORMAT_ISO_8859_14
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
END
|
|
|
|
POPUP "Cyrillic"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-5", IDM_FORMAT_ISO_8859_5
|
|
|
|
MENUITEM "KOI8-R", IDM_FORMAT_KOI8R_CYRILLIC
|
|
|
|
MENUITEM "KOI8-U", IDM_FORMAT_KOI8U_CYRILLIC
|
|
|
|
MENUITEM "Macintosh", IDM_FORMAT_MAC_CYRILLIC
|
|
|
|
MENUITEM "OEM 855", IDM_FORMAT_DOS_855
|
|
|
|
MENUITEM "OEM 866", IDM_FORMAT_DOS_866
|
|
|
|
MENUITEM "Windows-1251", IDM_FORMAT_WIN_1251
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Central European"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "OEM 852", IDM_FORMAT_DOS_852
|
|
|
|
MENUITEM "Windows-1250", IDM_FORMAT_WIN_1250
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Chinese"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Big5 (Traditional)", IDM_FORMAT_BIG5
|
2009-12-04 02:14:33 +00:00
|
|
|
MENUITEM "GB2312 (Simplified)", IDM_FORMAT_GB2312
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Eastern European"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-2", IDM_FORMAT_ISO_8859_2
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Greek"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-7", IDM_FORMAT_ISO_8859_7
|
|
|
|
MENUITEM "OEM 737", IDM_FORMAT_DOS_737
|
|
|
|
MENUITEM "OEM 869", IDM_FORMAT_DOS_869
|
|
|
|
MENUITEM "Windows-1253", IDM_FORMAT_WIN_1253
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Hebrew"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-8", IDM_FORMAT_ISO_8859_8
|
|
|
|
MENUITEM "OEM 862", IDM_FORMAT_DOS_862
|
|
|
|
MENUITEM "Windows-1255", IDM_FORMAT_WIN_1255
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Japanese"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Shift-JIS", IDM_FORMAT_SHIFT_JIS
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Korean"
|
|
|
|
BEGIN
|
2010-11-13 11:15:06 +00:00
|
|
|
MENUITEM "Windows 949", IDM_FORMAT_KOREAN_WIN
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "EUC-KR", IDM_FORMAT_EUC_KR
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "North European"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "OEM 861 : Icelandic", IDM_FORMAT_DOS_861
|
|
|
|
MENUITEM "OEM 865 : Nordic", IDM_FORMAT_DOS_865
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Thai"
|
|
|
|
BEGIN
|
2018-06-23 23:16:01 +00:00
|
|
|
MENUITEM "TIS-620", IDM_FORMAT_TIS_620
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Turkish"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-3", IDM_FORMAT_ISO_8859_3
|
|
|
|
MENUITEM "ISO 8859-9", IDM_FORMAT_ISO_8859_9
|
|
|
|
MENUITEM "OEM 857", IDM_FORMAT_DOS_857
|
|
|
|
MENUITEM "Windows-1254", IDM_FORMAT_WIN_1254
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Western European"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "ISO 8859-1", IDM_FORMAT_ISO_8859_1
|
2010-10-23 00:01:36 +00:00
|
|
|
//MENUITEM "ISO 8859-10", IDM_FORMAT_ISO_8859_10
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
MENUITEM "ISO 8859-15", IDM_FORMAT_ISO_8859_15
|
|
|
|
MENUITEM "OEM 850", IDM_FORMAT_DOS_850
|
|
|
|
MENUITEM "OEM 858", IDM_FORMAT_DOS_858
|
|
|
|
MENUITEM "OEM 860 : Portuguese", IDM_FORMAT_DOS_860
|
|
|
|
MENUITEM "OEM 863 : French", IDM_FORMAT_DOS_863
|
|
|
|
MENUITEM "OEM-US", IDM_FORMAT_DOS_437
|
|
|
|
MENUITEM "Windows-1252", IDM_FORMAT_WIN_1252
|
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
[NEW] Add find result commands in the menu.
[NEW] Add DOS CodePage : CP437, CP737, CP850, CP852, CP855, CP857, CP858, CP860, CP861, CP863, CP865, CP866 and CP869.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@580 f5eea248-9336-0410-98b8-ebc06183d4e3
2009-12-03 02:11:05 +00:00
|
|
|
POPUP "Vietnamese"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Windows-1258", IDM_FORMAT_WIN_1258
|
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
MENUITEM SEPARATOR
|
2015-07-29 11:45:35 +00:00
|
|
|
MENUITEM "Convert to ANSI", IDM_FORMAT_CONV2_ANSI
|
|
|
|
MENUITEM "Convert to UTF-8", IDM_FORMAT_CONV2_AS_UTF_8
|
|
|
|
MENUITEM "Convert to UTF-8-BOM", IDM_FORMAT_CONV2_UTF_8
|
|
|
|
MENUITEM "Convert to UCS-2 BE BOM", IDM_FORMAT_CONV2_UCS_2BE
|
|
|
|
MENUITEM "Convert to UCS-2 LE BOM", IDM_FORMAT_CONV2_UCS_2LE
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&Language"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "ActionScript", IDM_LANG_FLASH
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Ada", IDM_LANG_ADA
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "ASN.1", IDM_LANG_ASN1
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "ASP", IDM_LANG_ASP
|
|
|
|
MENUITEM "Assembly", IDM_LANG_ASM
|
|
|
|
MENUITEM "AutoIt", IDM_LANG_AU3
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "AviSynth", IDM_LANG_AVS
|
|
|
|
MENUITEM "BaanC", IDM_LANG_BAANC
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Batch", IDM_LANG_BATCH
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Blitzbasic", IDM_LANG_BLITZBASIC
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "C", IDM_LANG_C
|
|
|
|
MENUITEM "C#", IDM_LANG_CS
|
|
|
|
MENUITEM "C++", IDM_LANG_CPP
|
|
|
|
MENUITEM "Caml", IDM_LANG_CAML
|
2015-11-22 09:23:42 +00:00
|
|
|
MENUITEM "CMake", IDM_LANG_CMAKE
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "COBOL", IDM_LANG_COBOL
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "CSound", IDM_LANG_CSOUND
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "CoffeeScript", IDM_LANG_COFFEESCRIPT
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "CSS", IDM_LANG_CSS
|
|
|
|
MENUITEM "D", IDM_LANG_D
|
|
|
|
MENUITEM "Diff", IDM_LANG_DIFF
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Erlang", IDM_LANG_ERLANG
|
|
|
|
MENUITEM "ESCRIPT", IDM_LANG_ESCRIPT
|
|
|
|
MENUITEM "Forth", IDM_LANG_FORTH
|
2017-07-26 18:33:31 +00:00
|
|
|
MENUITEM "Fortran (free form)", IDM_LANG_FORTRAN
|
|
|
|
MENUITEM "Fortran (fixed form)", IDM_LANG_FORTRAN_77
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Freebasic", IDM_LANG_FREEBASIC
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Gui4Cli", IDM_LANG_GUI4CLI
|
|
|
|
MENUITEM "Haskell", IDM_LANG_HASKELL
|
|
|
|
MENUITEM "HTML", IDM_LANG_HTML
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "INI file", IDM_LANG_INI
|
|
|
|
MENUITEM "Inno Setup", IDM_LANG_INNO
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "Intel HEX", IDM_LANG_IHEX
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Java", IDM_LANG_JAVA
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "JavaScript", IDM_LANG_JS
|
2015-09-19 15:18:20 +00:00
|
|
|
MENUITEM "JSON", IDM_LANG_JSON
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "JSP", IDM_LANG_JSP
|
|
|
|
MENUITEM "KIXtart", IDM_LANG_KIX
|
|
|
|
MENUITEM "LISP", IDM_LANG_LISP
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "LaTeX", IDM_LANG_LATEX
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Lua", IDM_LANG_LUA
|
|
|
|
MENUITEM "Makefile", IDM_LANG_MAKEFILE
|
|
|
|
MENUITEM "Matlab", IDM_LANG_MATLAB
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "MMIXAL", IDM_LANG_MMIXAL
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "MS-DOS Style", IDM_LANG_ASCII
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Nimrod", IDM_LANG_NIMROD
|
|
|
|
MENUITEM "Nncrontab", IDM_LANG_NNCRONTAB
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Normal Text", IDM_LANG_TEXT
|
|
|
|
MENUITEM "NSIS", IDM_LANG_NSIS
|
|
|
|
MENUITEM "Objective-C", IDM_LANG_OBJC
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "OScript", IDM_LANG_OSCRIPT
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Pascal", IDM_LANG_PASCAL
|
|
|
|
MENUITEM "Perl", IDM_LANG_PERL
|
|
|
|
MENUITEM "PHP", IDM_LANG_PHP
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "PostScript", IDM_LANG_PS
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "PowerShell", IDM_LANG_POWERSHELL
|
|
|
|
MENUITEM "Properties", IDM_LANG_PROPS
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Purebasic", IDM_LANG_PUREBASIC
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Python", IDM_LANG_PYTHON
|
|
|
|
MENUITEM "R", IDM_LANG_R
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "REBOL", IDM_LANG_REBOL
|
|
|
|
MENUITEM "Registry", IDM_LANG_REGISTRY
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Resource file", IDM_LANG_RC
|
|
|
|
MENUITEM "Ruby", IDM_LANG_RUBY
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Rust", IDM_LANG_RUST
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Shell", IDM_LANG_BASH
|
|
|
|
MENUITEM "Scheme", IDM_LANG_SCHEME
|
|
|
|
MENUITEM "Smalltalk", IDM_LANG_SMALLTALK
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Spice", IDM_LANG_SPICE
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "SQL", IDM_LANG_SQL
|
2017-06-18 21:40:46 +00:00
|
|
|
MENUITEM "Swift", IDM_LANG_SWIFT
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "S-Record", IDM_LANG_SREC
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "TCL", IDM_LANG_TCL
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "Tektronix extended HEX", IDM_LANG_TEHEX
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "TeX", IDM_LANG_TEX
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "txt2tags", IDM_LANG_TXT2TAGS
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Verilog", IDM_LANG_VERILOG
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "VHDL", IDM_LANG_VHDL
|
|
|
|
MENUITEM "Visual Basic", IDM_LANG_VB
|
2016-02-02 21:43:06 +00:00
|
|
|
MENUITEM "Visual Prolog", IDM_LANG_VISUALPROLOG
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "XML", IDM_LANG_XML
|
|
|
|
MENUITEM "YAML", IDM_LANG_YAML
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
2012-09-28 21:04:16 +00:00
|
|
|
MENUITEM "Define your language...", IDM_LANG_USER_DLG
|
|
|
|
MENUITEM "User-Defined", IDM_LANG_USER
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
2012-08-25 19:23:16 +00:00
|
|
|
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "&Language"
|
|
|
|
BEGIN
|
|
|
|
POPUP "A"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "ActionScript", IDM_LANG_FLASH
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Ada", IDM_LANG_ADA
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "ASN.1", IDM_LANG_ASN1
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "ASP", IDM_LANG_ASP
|
|
|
|
MENUITEM "Assembly", IDM_LANG_ASM
|
|
|
|
MENUITEM "AutoIt", IDM_LANG_AU3
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "AviSynth", IDM_LANG_AVS
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
2016-12-15 12:22:54 +00:00
|
|
|
POPUP "B"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "BaanC", IDM_LANG_BAANC
|
|
|
|
MENUITEM "Batch", IDM_LANG_BATCH
|
|
|
|
MENUITEM "Blitzbasic", IDM_LANG_BLITZBASIC
|
2016-12-15 12:22:54 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "C"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "C", IDM_LANG_C
|
|
|
|
MENUITEM "C#", IDM_LANG_CS
|
|
|
|
MENUITEM "C++", IDM_LANG_CPP
|
|
|
|
MENUITEM "Caml", IDM_LANG_CAML
|
2015-11-22 09:23:42 +00:00
|
|
|
MENUITEM "CMake", IDM_LANG_CMAKE
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "COBOL", IDM_LANG_COBOL
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "CSound", IDM_LANG_CSOUND
|
2015-11-22 09:23:42 +00:00
|
|
|
MENUITEM "CoffeeScript", IDM_LANG_COFFEESCRIPT
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "CSS", IDM_LANG_CSS
|
|
|
|
END
|
|
|
|
POPUP "D"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "D", IDM_LANG_D
|
|
|
|
MENUITEM "Diff", IDM_LANG_DIFF
|
|
|
|
END
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
POPUP "E"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Erlang", IDM_LANG_ERLANG
|
|
|
|
MENUITEM "ESCRIPT", IDM_LANG_ESCRIPT
|
|
|
|
END
|
2015-08-08 16:00:00 +00:00
|
|
|
POPUP "F"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Forth", IDM_LANG_FORTH
|
2015-08-08 16:00:00 +00:00
|
|
|
MENUITEM "Fortran (free form)", IDM_LANG_FORTRAN
|
|
|
|
MENUITEM "Fortran (fixed form)", IDM_LANG_FORTRAN_77
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Freebasic", IDM_LANG_FREEBASIC
|
2015-08-08 16:00:00 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Gui4Cli", IDM_LANG_GUI4CLI
|
|
|
|
POPUP "H"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Haskell", IDM_LANG_HASKELL
|
|
|
|
MENUITEM "HTML", IDM_LANG_HTML
|
|
|
|
END
|
2015-11-21 23:13:08 +00:00
|
|
|
POPUP "I"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "INI file", IDM_LANG_INI
|
|
|
|
MENUITEM "Inno Setup", IDM_LANG_INNO
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "Intel HEX", IDM_LANG_IHEX
|
2015-11-21 23:13:08 +00:00
|
|
|
END
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "J"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Java", IDM_LANG_JAVA
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "JavaScript", IDM_LANG_JS
|
2015-09-19 15:18:20 +00:00
|
|
|
MENUITEM "JSON", IDM_LANG_JSON
|
2010-01-23 18:07:32 +00:00
|
|
|
MENUITEM "JSP", IDM_LANG_JSP
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
MENUITEM "KIXtart", IDM_LANG_KIX
|
|
|
|
POPUP "L"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "LaTeX", IDM_LANG_LATEX
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "LISP", IDM_LANG_LISP
|
|
|
|
MENUITEM "Lua", IDM_LANG_LUA
|
|
|
|
END
|
|
|
|
POPUP "M"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Makefile", IDM_LANG_MAKEFILE
|
|
|
|
MENUITEM "Matlab", IDM_LANG_MATLAB
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "MMIXAL", IDM_LANG_MMIXAL
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "MS-DOS Style", IDM_LANG_ASCII
|
|
|
|
END
|
|
|
|
POPUP "N"
|
|
|
|
BEGIN
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Nimrod", IDM_LANG_NIMROD
|
|
|
|
MENUITEM "Nncrontab", IDM_LANG_NNCRONTAB
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Normal Text", IDM_LANG_TEXT
|
|
|
|
MENUITEM "NSIS", IDM_LANG_NSIS
|
|
|
|
END
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
POPUP "O"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Objective-C", IDM_LANG_OBJC
|
|
|
|
MENUITEM "OScript", IDM_LANG_OSCRIPT
|
|
|
|
END
|
|
|
|
POPUP "P"
|
2009-12-02 19:58:37 +00:00
|
|
|
BEGIN
|
|
|
|
MENUITEM "Pascal", IDM_LANG_PASCAL
|
|
|
|
MENUITEM "Perl", IDM_LANG_PERL
|
|
|
|
MENUITEM "PHP", IDM_LANG_PHP
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "PostScript", IDM_LANG_PS
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "PowerShell", IDM_LANG_POWERSHELL
|
|
|
|
MENUITEM "Properties", IDM_LANG_PROPS
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Purebasic", IDM_LANG_PUREBASIC
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Python", IDM_LANG_PYTHON
|
|
|
|
END
|
|
|
|
POPUP "R"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "R", IDM_LANG_R
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "REBOL", IDM_LANG_REBOL
|
|
|
|
MENUITEM "Registry", IDM_LANG_REGISTRY
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Resource file", IDM_LANG_RC
|
|
|
|
MENUITEM "Ruby", IDM_LANG_RUBY
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Rust", IDM_LANG_RUST
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
POPUP "S"
|
|
|
|
BEGIN
|
2010-02-04 01:22:41 +00:00
|
|
|
MENUITEM "Shell", IDM_LANG_BASH
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "Scheme", IDM_LANG_SCHEME
|
|
|
|
MENUITEM "Smalltalk", IDM_LANG_SMALLTALK
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "Spice", IDM_LANG_SPICE
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "SQL", IDM_LANG_SQL
|
2017-06-18 21:40:46 +00:00
|
|
|
MENUITEM "Swift", IDM_LANG_SWIFT
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "S-Record", IDM_LANG_SREC
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
POPUP "T"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "TCL", IDM_LANG_TCL
|
2014-12-13 03:44:30 +00:00
|
|
|
MENUITEM "Tektronix extended HEX",IDM_LANG_TEHEX
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "TeX", IDM_LANG_TEX
|
Add new languages support
Connect Scintilla Lexers to npp : SCLEX_ASN1 (Abstract Syntax Notation One), SCLEX_AVS (AviSynth), SCLEX_BLITZBASIC, SCLEX_PUREBASIC, SCLEX_FREEBASIC, SCLEX_CSOUND, SCLEX_ERLANG, SCLEX_ESCRIPT, SCLEX_FORTH, SCLEX_LATEX, SCLEX_MMIXAL, SCLEX_NIMROD, SCLEX_NNCRONTAB, SCLEX_OSCRIPT, SCLEX_REBOL, SCLEX_REGISTRY, SCLEX_RUST, SCLEX_SPICE, SCLEX_TXT2TAGS
Connect Scintilla Lexers to npp :
asn1 (Abstract Syntax Notation One) : https://fr.wikipedia.org/wiki/ASN.1#Exemple
avs (AviSynth) : http://avisynth.nl/index.php/Script_examples
blitzbasic : http://www.blitzbasic.com/bmdocs/command.php?name=Mid&ref=2d_cat
http://www.blitzbasic.com/codearcs/codearcs.php?cat=8"
csound : http://www.csounds.com/manual/html/PrefaceGettingStarted.html
erlang : http://erlang.org/doc/man/file.html
http://erlang.org/documentation/doc-5.3.6.13/doc/getting_started/getting_started.html"
escript : http://erlang.org/doc/man/escript.html
forth : http://wiki.c2.com/?ExampleForthCode
freebasic : http://www.freebasic.net/
latex : http://physics.clarku.edu/sip/tutorials/TeX/intro.html (Sample LaTeX file)
mmixal : http://mmix.cs.hm.edu/examples/hello.html
nimrod : http://www.csse.monash.edu.au/~nimrod/nimrodportal/manual/planfileexamples.shtml
nncrontab : http://www.nncron.ru/help/EN/working/cron-format.htm
oscript : http://www.oscriptadventures.com/
purebasic : https://www.purebasic.com/documentation/reference/ide_form.html
rebol : http://www.rebol.net/cookbook/recipes/0031.html
registry : windows registry file
rust : http://rustbyexample.com/std_misc/file/open.html
spice : http://www.seas.upenn.edu/~jan/spice/spice.overview.html
txt2tags : https://github.com/txt2tags/txt2tags/blob/master/samples/sample.t2t
2016-11-13 18:42:23 +00:00
|
|
|
MENUITEM "txt2tags", IDM_LANG_TXT2TAGS
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
POPUP "V"
|
|
|
|
BEGIN
|
2015-11-21 23:13:08 +00:00
|
|
|
MENUITEM "Visual Basic", IDM_LANG_VB
|
2016-02-02 21:43:06 +00:00
|
|
|
MENUITEM "Visual Prolog", IDM_LANG_VISUALPROLOG
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "VHDL", IDM_LANG_VHDL
|
|
|
|
MENUITEM "Verilog", IDM_LANG_VERILOG
|
|
|
|
END
|
|
|
|
MENUITEM "XML", IDM_LANG_XML
|
|
|
|
MENUITEM "YAML", IDM_LANG_YAML
|
|
|
|
MENUITEM SEPARATOR
|
2012-09-28 21:04:16 +00:00
|
|
|
MENUITEM "Define your language...", IDM_LANG_USER_DLG
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "User-Defined", IDM_LANG_USER
|
2012-08-25 19:23:16 +00:00
|
|
|
END
|
|
|
|
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "Se&ttings"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Preferences...", IDM_SETTING_PREFERECE
|
|
|
|
MENUITEM "Style Configurator...", IDM_LANGSTYLE_CONFIG_DLG
|
|
|
|
MENUITEM "Shortcut Mapper...", IDM_SETTING_SHORTCUT_MAPPER
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
POPUP "Import"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Import plugin(s)...", IDM_SETTING_IMPORTPLUGIN
|
|
|
|
MENUITEM "Import style theme(s)...", IDM_SETTING_IMPORTSTYLETHEMS
|
|
|
|
END
|
2010-10-24 23:49:07 +00:00
|
|
|
MENUITEM SEPARATOR
|
2012-08-25 19:23:16 +00:00
|
|
|
MENUITEM "Edit Popup ContextMenu", IDM_SETTING_EDITCONTEXTMENU
|
2009-12-02 19:58:37 +00:00
|
|
|
END
|
|
|
|
|
2017-01-01 17:28:25 +00:00
|
|
|
POPUP "T&ools"
|
|
|
|
BEGIN
|
|
|
|
POPUP "MD5"
|
|
|
|
BEGIN
|
2018-10-22 07:25:00 +00:00
|
|
|
MENUITEM "Generate...", IDM_TOOL_MD5_GENERATE
|
|
|
|
MENUITEM "Generate from files...", IDM_TOOL_MD5_GENERATEFROMFILE
|
|
|
|
MENUITEM "Generate from selection into clipboard", IDM_TOOL_MD5_GENERATEINTOCLIPBOARD
|
2017-01-01 17:28:25 +00:00
|
|
|
END
|
2018-12-16 19:14:30 +00:00
|
|
|
POPUP "SHA-256"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Generate...", IDM_TOOL_SHA256_GENERATE
|
|
|
|
MENUITEM "Generate from files...", IDM_TOOL_SHA256_GENERATEFROMFILE
|
|
|
|
MENUITEM "Generate from selection into clipboard", IDM_TOOL_SHA256_GENERATEINTOCLIPBOARD
|
|
|
|
END
|
2017-01-01 17:28:25 +00:00
|
|
|
END
|
|
|
|
|
|
|
|
POPUP "&Macro"
|
2009-12-02 19:58:37 +00:00
|
|
|
BEGIN
|
|
|
|
MENUITEM "Start Re&cording", IDM_MACRO_STARTRECORDINGMACRO
|
|
|
|
MENUITEM "S&top Recording", IDM_MACRO_STOPRECORDINGMACRO
|
|
|
|
MENUITEM "&Playback", IDM_MACRO_PLAYBACKRECORDEDMACRO
|
|
|
|
MENUITEM "&Save Current Recorded Macro...", IDM_MACRO_SAVECURRENTMACRO
|
|
|
|
MENUITEM "&Run a Macro Multiple Times...", IDM_MACRO_RUNMULTIMACRODLG
|
|
|
|
END
|
|
|
|
|
2014-11-30 02:17:49 +00:00
|
|
|
POPUP "&Run"
|
2009-12-02 19:58:37 +00:00
|
|
|
BEGIN
|
|
|
|
MENUITEM "&Run...", IDM_EXECUTE
|
|
|
|
END
|
2017-04-25 07:28:24 +00:00
|
|
|
|
2009-12-02 19:58:37 +00:00
|
|
|
POPUP "&?"
|
|
|
|
BEGIN
|
2014-07-23 22:11:48 +00:00
|
|
|
MENUITEM "Command Line Arguments...", IDM_CMDLINEARGUMENTS
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Notepad++ Home", IDM_HOMESWEETHOME
|
|
|
|
MENUITEM "Notepad++ Project Page", IDM_PROJECTPAGE
|
2015-08-15 14:28:43 +00:00
|
|
|
MENUITEM "Notepad++ Community (Forum)", IDM_FORUM
|
2015-06-17 23:34:34 +00:00
|
|
|
MENUITEM "Live Support", IDM_ONLINESUPPORT
|
2019-02-20 08:46:17 +00:00
|
|
|
//MENUITEM "Get More Plugins", IDM_PLUGINSHOME
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Update Notepad++", IDM_UPDATE_NPP
|
2013-07-07 18:27:03 +00:00
|
|
|
MENUITEM "Set Updater Proxy...", IDM_CONFUPDATERPROXY
|
2013-02-17 18:02:14 +00:00
|
|
|
MENUITEM SEPARATOR
|
2016-08-19 11:39:31 +00:00
|
|
|
MENUITEM "Debug Info...", IDM_DEBUGINFO
|
2009-12-02 19:58:37 +00:00
|
|
|
MENUITEM "About Notepad++", IDM_ABOUT
|
|
|
|
END
|
|
|
|
|
|
|
|
MENUITEM "X", IDM_FILE_CLOSE, HELP
|
|
|
|
END
|
|
|
|
|
|
|
|
IDR_SYSTRAYPOPUP_MENU MENU
|
|
|
|
BEGIN
|
|
|
|
POPUP "Popup"
|
|
|
|
BEGIN
|
|
|
|
MENUITEM "Activate", IDM_SYSTRAYPOPUP_ACTIVATE
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "New", IDM_SYSTRAYPOPUP_NEWDOC
|
|
|
|
MENUITEM "New and Paste", IDM_SYSTRAYPOPUP_NEW_AND_PASTE
|
|
|
|
MENUITEM "Open...", IDM_SYSTRAYPOPUP_OPENFILE
|
|
|
|
MENUITEM "Find in Files...", IDM_SEARCH_FINDINFILES
|
|
|
|
MENUITEM SEPARATOR
|
|
|
|
MENUITEM "Close Tray Icon", IDM_SYSTRAYPOPUP_CLOSE
|
|
|
|
END
|
|
|
|
END
|
|
|
|
|
|
|
|
IDD_ABOUTBOX DIALOGEX 0, 0, 271, 240
|
|
|
|
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_BORDER | WS_SYSMENU
|
|
|
|
FONT 8, TEXT("MS Shell Dlg"), 0, 0, 0x1
|
|
|
|
BEGIN
|
|
|
|
EDITTEXT IDC_BUILD_DATETIME,150,2,150,10, ES_READONLY | NOT WS_BORDER
|
2019-01-27 22:13:30 +00:00
|
|
|
CONTROL "",IDI_CHAMELEON,"Static",SS_OWNERDRAW,20,5,64,64
|
2015-02-01 16:41:08 +00:00
|
|
|
//CONTROL "",IDI_JESUISCHARLIE,"Static",SS_OWNERDRAW,20,5,64,64
|
2019-01-27 22:13:30 +00:00
|
|
|
//CONTROL "",IDI_GILETJAUNE,"Static",SS_OWNERDRAW,20,5,64,64
|
2014-06-12 23:30:28 +00:00
|
|
|
LTEXT NOTEPAD_PLUS_VERSION, IDC_STATIC,70,20,140,11
|
2016-03-13 03:11:59 +00:00
|
|
|
LTEXT "bit",IDC_VERSION_BIT,150,20,140,11
|
2009-12-02 19:58:37 +00:00
|
|
|
LTEXT "Author :",IDC_STATIC,21,45,31,8
|
|
|
|
LTEXT "Notepad++ team",IDC_AUTHOR_NAME,78,45,70,8
|
|
|
|
LTEXT "Home Page :",IDC_STATIC,21,59,47,8
|
2015-05-22 19:11:08 +00:00
|
|
|
LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,78,59,126,8
|
2009-12-02 19:58:37 +00:00
|
|
|
GROUPBOX "GNU General Public Licence",IDC_STATIC,19,75,231,131,BS_CENTER
|
2016-08-07 16:22:10 +00:00
|
|
|
DEFPUSHBUTTON "OK",IDOK,106,215,50,14,BS_FLAT
|
2009-12-02 19:58:37 +00:00
|
|
|
// IDC_LICENCE_EDIT should be the last line, don't know why
|
|
|
|
EDITTEXT IDC_LICENCE_EDIT,31,99,209,96,ES_MULTILINE | ES_AUTOVSCROLL | ES_READONLY | NOT WS_BORDER | WS_VSCROLL
|
|
|
|
END
|
|
|
|
|
2015-12-06 22:20:14 +00:00
|
|
|
IDD_DEBUGINFOBOX DIALOGEX 0, 0, 271, 200
|
|
|
|
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
|
|
EXSTYLE WS_EX_TOOLWINDOW | WS_EX_WINDOWEDGE
|
|
|
|
CAPTION "Debug Info"
|
|
|
|
FONT 8, TEXT("MS Shell Dlg"), 0, 0, 0x1
|
|
|
|
BEGIN
|
|
|
|
EDITTEXT IDC_DEBUGINFO_EDIT,31,20,220,96,ES_MULTILINE | ES_AUTOVSCROLL | ES_READONLY | NOT WS_BORDER | WS_VSCROLL
|
|
|
|
LTEXT "Copy debug info into clipboard",IDC_DEBUGINFO_COPYLINK,31,120,126,8
|
2016-08-07 16:22:10 +00:00
|
|
|
DEFPUSHBUTTON "OK",IDOK,106,160,50,14,BS_FLAT
|
2015-12-06 22:20:14 +00:00
|
|
|
END
|
|
|
|
|
|
|
|
|
2009-12-02 19:58:37 +00:00
|
|
|
IDD_GOLINE DIALOGEX 26, 41, 261, 88
|
|
|
|
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
|
|
EXSTYLE WS_EX_TOOLWINDOW | WS_EX_WINDOWEDGE
|
|
|
|
CAPTION "Go To..."
|
|
|
|
FONT 8, TEXT("MS Shell Dlg"), 0, 0, 0x0
|
|
|
|
BEGIN
|
|
|
|
CONTROL "&Line",IDC_RADIO_GOTOLINE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,5,9,80,10
|
|
|
|
CONTROL "&Offset",IDC_RADIO_GOTOOFFSET,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,98,9,80,10
|
|
|
|
LTEXT "You are here :",ID_URHERE_STATIC,5,34,95,8,NOT WS_GROUP
|
|
|
|
LTEXT "0123456789",ID_CURRLINE,100,34,45,8,NOT WS_GROUP
|
|
|
|
LTEXT "You want to &go to :",ID_UGO_STATIC,5,51,95,8
|
|
|
|
EDITTEXT ID_GOLINE_EDIT,98,49,71,12,ES_NUMBER
|
|
|
|
LTEXT "You can't go further than :",ID_NOMORETHAN_STATIC,5,68,92,8,NOT WS_GROUP
|
|
|
|
LTEXT "0123456789",ID_LASTLINE,100,68,45,8,NOT WS_GROUP
|
|
|
|
DEFPUSHBUTTON "Go",IDOK,181,48,70,14,BS_NOTIFY
|
|
|
|
PUSHBUTTON "I'm going nowhere",IDCANCEL,181,66,70,14,BS_NOTIFY
|
|
|
|
END
|
|
|
|
|
|
|
|
IDD_VALUE_DLG DIALOGEX 0, 0, 74, 17
|
|
|
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION |
|
|
|
|
WS_SYSMENU
|
|
|
|
EXSTYLE WS_EX_TOOLWINDOW
|
|
|
|
FONT 8, TEXT("MS Shell Dlg"), 0, 0, 0x1
|
|
|
|
BEGIN
|
|
|
|
LTEXT "STATIC :",IDC_VALUE_STATIC,6,4,45,8
|
|
|
|
EDITTEXT IDC_VALUE_EDIT,49,2,18,14,ES_NUMBER,WS_EX_DLGMODALFRAME
|
|
|
|
END
|
|
|
|
|
2010-03-24 21:08:50 +00:00
|
|
|
IDD_BUTTON_DLG DIALOGEX 0, 0, 12, 10
|
2009-12-13 23:54:02 +00:00
|
|
|
STYLE DS_SETFONT | DS_FIXEDSYS | WS_POPUP
|
|
|
|
FONT 8, "MS Shell Dlg", 0, 0, 0x1
|
|
|
|
BEGIN
|
2010-03-24 21:08:50 +00:00
|
|
|
PUSHBUTTON "+",IDC_RESTORE_BUTTON,0,0,12,10
|
2009-12-13 23:54:02 +00:00
|
|
|
END
|