-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontextMenu.xml
92 lines (82 loc) · 5.15 KB
/
contextMenu.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="UTF-8" ?>
<!--
By modifying this file, you can customize your context menu popuped as right clicking on the edit zone.
It may be more convinient to access to your frequent used commands via context menu than via the top menu.
Please check "How to Customize the Context Menu" on:
http://docs.notepad-plus-plus.org/index.php/Context_Menu
https://npp-user-manual.org/
-->
<!--
Use MenuEntryName and MenuItemName to localize your commands to add.
The values should be in English but not in translated language.
(You can set Notepad++ language back to English from Preferences dialog via menu "Settings->Preferences...")
id="0" is the separator
You can use command id to add the commands you want.
Check english.xml to get commands id:
https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/installer/nativeLang/english.xml
Use FolderName (optional) to create sub-menu. FolderName can be used in any type of item.
FolderName value can be in any language.
To add plugin commands, you have to use PluginEntryName and PluginCommandItemName to localize the plugin commands
Use ItemNameAs (optional) to rename the menu item name in the context menu
ItemNameAs can be used in any type of item. ItemNameAs value can be in any language.
-->
<NotepadPlus>
<ScintillaContextMenu>
<Item MenuEntryName="Edit" MenuItemName="UPPERCASE" />
<Item MenuEntryName="Edit" MenuItemName="lowercase" />
<Item MenuEntryName="Edit" MenuItemName="Proper Case" />
<Item MenuEntryName="Edit" MenuItemName="Proper Case (blend)" />
<Item MenuEntryName="Edit" MenuItemName="Sentence case" />
<Item MenuEntryName="Edit" MenuItemName="Sentence case (blend)" />
<Item MenuEntryName="Edit" MenuItemName="iNVERT cASE" />
<Item MenuEntryName="Edit" MenuItemName="ranDOm CasE" />
<Item id="0" />
<Item FolderName="Sort" id="42059" name="Sort Lines Lexicographically Ascending"/>
<Item FolderName="Sort" id="42060" name="Sort Lines Lexicographically Descending"/>
<Item FolderName="Sort" id="42061" name="Sort Lines As Integers Ascending"/>
<Item FolderName="Sort" id="42062" name="Sort Lines As Integers Descending"/>
<Item FolderName="Sort" id="42063" name="Sort Lines As Decimals (Comma) Ascending"/>
<Item FolderName="Sort" id="42064" name="Sort Lines As Decimals (Comma) Descending"/>
<Item FolderName="Sort" id="42065" name="Sort Lines As Decimals (Dot) Ascending"/>
<Item FolderName="Sort" id="42066" name="Sort Lines As Decimals (Dot) Descending"/>
<Item id="0" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Encode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Encode with padding" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Encode with Unix EOL" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Encode by line" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Decode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Decode strict" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Decode by line" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Quoted-printable Encode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Quoted-printable Decode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="URL Encode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="Full URL Encode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="URL Decode" />
<Item FolderName="MIME Tools" PluginEntryName="MIME Tools" PluginCommandItemName="SAML Decode" />
<Item id="0" />
<Item id="44034" name="Always on Top"/>
<Item id="48018" name="Edit Popup ContextMenu"/>
<Item id="0" />
<Item id="44025" name="Show White Space and TAB"/>
<Item id="44019" name="Show All Characters"/>
<Item id="0" />
<Item id="44023" name="Zoom &In (Ctrl+Mouse Wheel Up)"/>
<Item id="44024" name="Zoom &Out (Ctrl+Mouse Wheel Down)"/>
<Item id="44033" name="Restore Default Zoom"/>
<Item id="0" />
<!-- Exempel C:\Users\tcips\OneDrive\Desktop\hello.ahk -->
<Item id="42029" name="Current File Path to Clipboard"/>
<!-- Exempel hello.ahk -->
<Item id="42030" name="Current Filename to Clipboard"/>
<!-- Exempel C:\Users\tcips\OneDrive\Desktop -->
<Item id="42031" name="Current Dir. Path to Clipboard"/>
<Item id="0" />
<Item MenuEntryName="Edit" MenuItemName="Cut" />
<Item MenuEntryName="Edit" MenuItemName="Copy" />
<Item MenuEntryName="Edit" MenuItemName="Paste" />
<Item MenuEntryName="Edit" MenuItemName="Delete" />
<Item MenuEntryName="Edit" MenuItemName="Select all" />
<Item id="0" />
<Item MenuEntryName="Edit" MenuItemName="Open File" />
</ScintillaContextMenu>
</NotepadPlus>