This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const currentPath = api.GetDisplayNameOf(FV, SHGDN_FORPARSING); | |
| InputDialog("New Folder", "", function (r) { | |
| if (r) { | |
| let path = r.replace(/^\s+/, ""); | |
| if (!/^[A-Z]:\\|^\\/i.test(path)) { | |
| path = BuildPath(currentPath, path); | |
| } | |
| fso.CreateFolder(path); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ToggleFullscreen(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| clipboardData.setData("text", (FV.FocusedItem || FV.FolderItem).Path); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const nFocused = FV.GetFocusedItem; | |
| const bSelected = api.SendMessage(FV.hwndList, LVM_GETITEMSTATE, nFocused, LVIS_SELECTED); | |
| FV.SelectItem(nFocused, bSelected ? SVSI_DESELECT : SVSI_SELECT); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setTimeout(function () { | |
| Exec(te, ["cmigemo,0", "filterlist,1"].join("\n"), "Addon switcher"); | |
| }, 500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const hEdit = api.SendMessage(FV.hwndList, LVM_GETEDITCONTROL, 0, 0); | |
| const fn = api.GetWindowText(hEdit); | |
| let start = api.SendMessage(hEdit, 0xB0, 0, 0);//EM_GETSEL | |
| const end = Math.floor(start >> 16); | |
| start &= 0xffff; | |
| if (fn.indexOf(".") >= 0) { | |
| if (start) { | |
| api.SendMessage(hEdit, 0xB1, 0, fn.length);//EM_SETSEL | |
| } else { | |
| if (end == fn.length) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Selected = FV.SelectedItems(); | |
| if (Selected.Count != 1) { | |
| return; | |
| } | |
| wsh.run('"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe "' + Selected.Item(0).ExtendedProperty("linktarget")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sync.Tabgroups.Add(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const TC = [await te.Ctrl(CTRL_TC)]; | |
| await Addons.Split.Exec2(3, TC); | |
| TC[0].Left = 0; | |
| TC[0].Top = 0; | |
| TC[0].Width = "100%"; | |
| TC[0].Height = "50%"; | |
| TC[1].Left = 0; | |
| TC[1].Top = "50%"; | |
| TC[1].Width = "50%"; | |
| TC[1].Height = "50%"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const TC = [await te.Ctrl(CTRL_TC)]; | |
| await Addons.Split.Exec2(3, TC); | |
| TC[0].Left = 0; | |
| TC[0].Top = 0; | |
| TC[0].Width = "50%"; | |
| TC[0].Height = "50%"; | |
| TC[1].Left = 0; | |
| TC[1].Top = "50%"; | |
| TC[1].Width = "50%"; | |
| TC[1].Height = "50%"; |